    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --green: #00a865;
      --green-dim: rgba(0, 168, 101, 0.1);
      --green-border: rgba(0, 168, 101, 0.2);
      --green-glow: rgba(0, 168, 101, 0.06);
      --bg: #f4f5f9;
      --bg-2: #eef0f4;
      --surface: #ffffff;
      --surface-2: #f0f2f6;
      --border: rgba(0,0,0,0.08);
      --border-hi: rgba(0,0,0,0.14);
      --text: #0f1117;
      --text-mid: rgba(15,17,23,0.62);
      --text-muted: rgba(15,17,23,0.4);
      --nav-bg: rgba(247,248,250,0.88);
      --nav-border: rgba(0,0,0,0.08);
      --radius-card: 18px;
      --radius-btn: 100px;
      --nav-h: 64px;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
      --shadow-md: 0 6px 20px rgba(0,0,0,0.08);
      --shadow-lg: 0 8px 32px rgba(0,0,0,0.09);
    }

    @media (prefers-color-scheme: dark) {
      :root {
        --green: #10d87a;
        --green-dim: rgba(16, 216, 122, 0.1);
        --green-border: rgba(16, 216, 122, 0.2);
        --green-glow: rgba(16, 216, 122, 0.08);
        --bg: #080a0e;
        --bg-2: #0f1117;
        --surface: #14161e;
        --surface-2: #1c1f2a;
        --border: rgba(255,255,255,0.07);
        --border-hi: rgba(255,255,255,0.13);
        --text: #e4e7ed;
        --text-mid: rgba(228,231,237,0.62);
        --text-muted: rgba(228,231,237,0.4);
        --nav-bg: rgba(8,10,14,0.90);
        --nav-border: rgba(255,255,255,0.07);
        --shadow-sm: 0 1px 3px rgba(0,0,0,0.25);
        --shadow-md: 0 6px 20px rgba(0,0,0,0.35);
        --shadow-lg: 0 8px 32px rgba(0,0,0,0.40);
      }
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 400;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* BG radial mesh - fixed, pointer-events-none, no layout impact */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 45% at 15% 8%, var(--green-glow) 0%, transparent 65%),
        radial-gradient(ellipse 45% 38% at 85% 78%, var(--green-glow) 0%, transparent 65%);
      pointer-events: none;
      z-index: 0;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes floatShield {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-10px); }
    }
    @keyframes orbit {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    @keyframes pulseRing {
      0%   { transform: scale(0.82); opacity: 0.5; }
      70%  { transform: scale(1.18); opacity: 0; }
      100% { transform: scale(0.82); opacity: 0; }
    }
    @keyframes blink {
      0%,100% { opacity: 0.3; }
      50%      { opacity: 1; }
    }
    @keyframes gradShift {
      0%   { background-position: 0% center; }
      100% { background-position: 200% center; }
    }
    @keyframes revealUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* ── LAYOUT ── */
    .container {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 28px;
      position: relative;
      z-index: 1;
    }

    section { position: relative; z-index: 1; }

    /* ── NAV ── */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      height: var(--nav-h);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(22px) saturate(160%);
      -webkit-backdrop-filter: blur(22px) saturate(160%);
      background: var(--nav-bg);
      border-bottom: 1px solid var(--nav-border);
    }

    .site-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 28px;
    }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 28px;
      height: 28px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 110;
      position: relative;
    }

    .nav-hamburger span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), opacity 0.2s;
      transform-origin: center;
    }

    .nav-hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .nav-hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .nav-hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .nav-logo {
      font-family: 'Outfit', sans-serif;
      font-size: 19px;
      font-weight: 800;
      text-decoration: none;
      color: var(--text);
      letter-spacing: -0.02em;
      flex-shrink: 0;
    }

    .nav-logo .accent {
      color: #00a865;
      -webkit-text-fill-color: #00a865;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      list-style: none;
    }

    .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 13.5px;
      font-weight: 400;
      transition: color 0.18s;
    }

    .nav-links a:hover { color: var(--text); }

    .nav-cta {
      background: var(--green) !important;
      color: #ffffff !important;
      font-weight: 600 !important;
      padding: 8px 20px;
      border-radius: var(--radius-btn);
      font-size: 13.5px !important;
      transition: opacity 0.18s !important;
    }

    .nav-cta:hover { opacity: 0.82 !important; }

    /* ── MOBILE MENU OVERLAY ── */
    .mobile-overlay {
      position: fixed;
      inset: 0;
      z-index: 105;
      background: var(--bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s cubic-bezier(0.16,1,0.3,1), visibility 0.3s;
      list-style: none;
    }

    .mobile-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .mobile-overlay a {
      font-family: 'Outfit', sans-serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--text);
      text-decoration: none;
      letter-spacing: -0.02em;
      transition: color 0.18s;
    }

    .mobile-overlay a:hover { color: var(--green); }

    .mobile-overlay .nav-cta {
      font-size: 16px !important;
      padding: 12px 28px !important;
    }
    .hero {
      padding-top: 80px;
      padding-bottom: 70px;
      min-height: calc(100dvh - var(--nav-h));
      display: flex;
      align-items: center;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 64px;
      align-items: center;
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 28px;
    }

    .hero-left { max-width: 560px; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green-dim);
      border: 1px solid var(--green-border);
      border-radius: var(--radius-btn);
      padding: 5px 14px 5px 10px;
      margin-bottom: 28px;
      animation: fadeUp 0.5s ease both;
    }

    .badge-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 7px var(--green);
      animation: blink 2.4s ease-in-out infinite;
    }

    .hero-badge-text {
      font-size: 11px;
      color: var(--green);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
    }

    .discount-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green-dim);
      border: 1px dashed var(--green-border);
      border-radius: var(--radius-btn);
      padding: 6px 14px;
      margin-top: 18px;
      animation: fadeUp 0.5s ease 0.3s both;
    }

    .discount-badge-text {
      font-size: 11px;
      color: var(--green);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      white-space: nowrap;
    }

    .plan-discount {
      margin-top: 10px;
      text-align: center;
      font-size: 11px;
      font-weight: 600;
      color: var(--green);
      font-family: 'Outfit', sans-serif;
      letter-spacing: 0.03em;
    }

    .hero h1 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(38px, 4.5vw, 60px);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.06;
      margin-bottom: 22px;
      animation: fadeUp 0.55s ease 0.08s both;
    }

    .grad-text {
      color: var(--green);
      -webkit-text-fill-color: var(--green);
    }

    .hero-sub {
      font-size: 16px;
      color: var(--text-mid);
      max-width: 480px;
      margin-bottom: 36px;
      line-height: 1.78;
      font-weight: 300;
      animation: fadeUp 0.55s ease 0.16s both;
    }

    .hero-sub strong { color: var(--text); font-weight: 500; }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      animation: fadeUp 0.55s ease 0.24s both;
    }

    /* ── BUTTONS ── */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green);
      color: #ffffff;
      font-weight: 700;
      font-size: 15px;
      padding: 13px 26px;
      border-radius: var(--radius-btn);
      text-decoration: none;
      transition: transform 0.2s cubic-bezier(0.16,1,0.3,1), box-shadow 0.2s;
      box-shadow: 0 4px 18px rgba(0,168,101,0.22);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0,168,101,0.32);
    }

    .btn-primary:active { transform: translateY(0) scale(0.98); }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--text);
      font-weight: 500;
      font-size: 15px;
      padding: 13px 26px;
      border-radius: var(--radius-btn);
      border: 1px solid var(--border-hi);
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
    }

    .btn-secondary:hover {
      border-color: rgba(0,0,0,0.22);
      background: var(--surface-2);
    }

    .btn-secondary:active { transform: scale(0.98); }

    /* ── HERO VISUAL ── */
    .hero-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      animation: fadeUp 0.65s ease 0.32s both;
    }

    .shield-stage {
      position: relative;
      width: 300px;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .orbit-ring {
      position: absolute;
      width: 260px; height: 260px;
      border-radius: 50%;
      border: 1px dashed rgba(0,168,101,0.22);
      animation: orbit 22s linear infinite;
    }

    .orbit-dot {
      position: absolute;
      top: -5px; left: 50%;
      transform: translateX(-50%);
      width: 9px; height: 9px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 10px var(--green);
    }

    .pulse-ring {
      position: absolute;
      width: 190px; height: 190px;
      border-radius: 50%;
      border: 1.5px solid rgba(0,168,101,0.22);
    }

    .pulse-ring-1 { animation: pulseRing 3s ease-out infinite; }
    .pulse-ring-2 { animation: pulseRing 3s ease-out 1s infinite; }

    .shield-icon { animation: floatShield 5.5s ease-in-out infinite; }

    /* ── TRUST STRIP ── */
    .trust-strip {
      display: flex;
      justify-content: center;
      gap: 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .trust-item {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      padding: 22px 16px;
      border-right: 1px solid var(--border);
      text-align: center;
    }

    .trust-item:last-child { border-right: none; }

    .trust-value {
      font-family: 'Outfit', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.02em;
    }

    .trust-label {
      font-size: 11.5px;
      color: var(--text-muted);
      font-weight: 400;
      line-height: 1.4;
    }

    /* ── SECTION SHARED ── */
    .section-tag {
      display: inline-block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 14px;
    }

    .section-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(26px, 4vw, 42px);
      font-weight: 800;
      letter-spacing: -0.025em;
      line-height: 1.1;
      margin-bottom: 14px;
    }

    .section-sub {
      color: var(--text-mid);
      font-size: 15.5px;
      max-width: 520px;
      line-height: 1.78;
      font-weight: 300;
    }

    /* ── FEATURES — bento-style asymmetric grid ── */
    .features-section { padding: 96px 0; }

    .features-header {
      margin-bottom: 56px;
    }

    /* Asymmetric bento: 2 large + 4 small */
    .features-bento {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 14px;
    }

    .fcard {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      padding: 30px;
      transition: border-color 0.22s, transform 0.22s cubic-bezier(0.16,1,0.3,1);
      position: relative;
      overflow: hidden;
      box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }

    .fcard:hover {
      border-color: var(--green-border);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    /* Large card spans 2 cols */
    .fcard--wide {
      grid-column: span 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: center;
    }

    .fcard-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      background: var(--green-dim);
      border: 1px solid var(--green-border);
    }

    .fcard-icon svg { display: block; }

    .fcard h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 9px;
      letter-spacing: -0.01em;
    }

    .fcard p {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.72;
      font-weight: 300;
    }

    .fcard--wide .fcard-body { display: flex; flex-direction: column; gap: 0; }

    .fcard-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 120px;
      border-radius: 12px;
      background: rgba(0,168,101,0.06);
      border: 1px solid var(--green-border);
      position: relative;
      overflow: hidden;
    }

    .traffic-bars {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      height: 60px;
      padding: 0 12px;
    }

    .bar {
      width: 10px;
      border-radius: 4px 4px 0 0;
      background: linear-gradient(180deg, var(--green), rgba(0,168,101,0.3));
      transition: height 0.3s ease;
    }

    /* ── PROTOCOLS ── */
    .protocols-section {
      padding: 80px 0;
      background: linear-gradient(180deg, transparent, var(--green-glow), transparent);
    }

    .protocols-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 52px;
    }

    .proto-card {
      border: 1px solid var(--green-border);
      border-radius: var(--radius-card);
      padding: 30px;
      position: relative;
      overflow: hidden;
      transition: transform 0.22s cubic-bezier(0.16,1,0.3,1);
    }

    .proto-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--green);
    }

    .proto-card:hover { transform: translateY(-2px); }

    .proto-badge {
      display: inline-block;
      background: var(--green-dim);
      border: 1px solid var(--green-border);
      color: var(--green);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 6px;
      margin-bottom: 14px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .proto-card h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 19px;
      font-weight: 800;
      margin-bottom: 10px;
      letter-spacing: -0.02em;
    }

    .proto-card p {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.74;
      font-weight: 300;
    }

    /* ── SERVERS ── */
    .servers-section { padding: 80px 0; }

    .servers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
      gap: 10px;
      margin-top: 52px;
    }

    .server-item {
      display: flex;
      align-items: center;
      gap: 9px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 11px;
      padding: 11px 14px;
      font-size: 13px;
      font-weight: 400;
      transition: border-color 0.18s, box-shadow 0.18s;
      list-style: none;
      box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }

    .server-item:hover {
      border-color: var(--green-border);
      box-shadow: 0 4px 12px rgba(0,0,0,0.07);
    }

    .server-flag { font-size: 18px; flex-shrink: 0; }

    .server-name { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

    .server-ping {
      font-size: 11px;
      color: var(--green);
      font-weight: 600;
      flex-shrink: 0;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    /* ── PRICING ── */
    .pricing-section { padding: 96px 0; }

    .pricing-header { margin-bottom: 56px; }

    /* 4-column grid on desktop */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      align-items: start;
    }

    .pricing-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      padding: 32px 28px;
      position: relative;
      transition: transform 0.22s cubic-bezier(0.16,1,0.3,1), box-shadow 0.22s;
      box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }

    .pricing-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    .pricing-card.featured {
      border-color: var(--green-border);
      background: rgba(0,168,101,0.03);
    }

    .popular-badge {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--green);
      color: #ffffff;
      font-family: 'Outfit', sans-serif;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 14px;
      border-radius: var(--radius-btn);
      white-space: nowrap;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .plan-name {
      font-family: 'Outfit', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .plan-price {
      font-family: 'Outfit', sans-serif;
      font-size: 40px;
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 4px;
    }

    .plan-price sup {
      font-size: 18px;
      font-weight: 600;
      vertical-align: super;
    }

    .plan-period {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .plan-save {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      color: var(--green);
      background: var(--green-dim);
      border: 1px solid var(--green-border);
      border-radius: 6px;
      padding: 2px 8px;
      margin-bottom: 20px;
    }

    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }

    .plan-features li {
      font-size: 13px;
      display: flex;
      align-items: flex-start;
      gap: 9px;
      line-height: 1.5;
      color: var(--text-mid);
    }

    .plan-features li .check {
      color: var(--green);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .plan-features li.off { color: var(--text-muted); }
    .plan-features li.off .check { color: rgba(0,0,0,0.15); }

    .btn-plan {
      display: block;
      width: 100%;
      text-align: center;
      padding: 12px;
      border-radius: var(--radius-btn);
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-plan-primary {
      background: var(--green);
      color: #ffffff;
      box-shadow: 0 4px 14px rgba(0,168,101,0.2);
    }

    .btn-plan-primary:hover {
      box-shadow: 0 6px 22px rgba(0,168,101,0.32);
      transform: translateY(-1px);
    }

    .btn-plan-primary:active { transform: scale(0.98); }

    .btn-plan-outline {
      border: 1px solid var(--border-hi);
      color: var(--text);
    }

    .btn-plan-outline:hover {
      border-color: var(--green-border);
      background: var(--green-dim);
    }

    /* ── FAQ ── */
    .faq-section { padding: 96px 0; }

    .faq-list {
      max-width: 700px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    details.faq-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color 0.18s, box-shadow 0.18s;
      box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }

    details.faq-item[open] {
      border-color: var(--green-border);
      box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    }

    summary {
      padding: 20px 24px;
      font-family: 'Outfit', sans-serif;
      font-size: 14.5px;
      font-weight: 700;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      user-select: none;
    }

    summary::-webkit-details-marker { display: none; }

    summary::after {
      content: '+';
      font-size: 20px;
      font-weight: 300;
      color: var(--green);
      flex-shrink: 0;
      transition: transform 0.2s;
    }

    details[open] summary::after { transform: rotate(45deg); }

    .faq-body {
      padding: 0 24px 20px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.8;
      font-weight: 300;
    }

    /* ── TESTIMONIALS ── */
    .testimonials-section { padding: 80px 0; }

    .testimonials-marquee {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-bottom: 8px;
      margin-top: 48px;
    }

    .testimonials-marquee::-webkit-scrollbar { display: none; }

    .testi-card {
      flex: 0 0 340px;
      scroll-snap-align: start;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      padding: 28px 24px;
      transition: border-color 0.22s, box-shadow 0.22s;
      box-shadow: var(--shadow-sm);
    }

    .testi-card:hover {
      border-color: var(--green-border);
      box-shadow: var(--shadow-md);
    }

    .testi-stars {
      color: var(--green);
      font-size: 14px;
      letter-spacing: 3px;
      margin-bottom: 14px;
    }

    .testi-quote {
      font-size: 14px;
      line-height: 1.72;
      color: var(--text-mid);
      margin-bottom: 18px;
      font-weight: 300;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .testi-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--green-glow);
      border: 1px solid var(--green-border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Outfit', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--green);
      flex-shrink: 0;
    }

    .testi-name {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
    }

    .testi-role {
      font-size: 11.5px;
      color: var(--text-muted);
    }

    /* ── CTA SECTION ── */
    .cta-section {
      padding: 80px 28px;
      position: relative;
      z-index: 1;
    }

    .cta-card {
      background: linear-gradient(135deg, rgba(0,168,101,0.06), rgba(0,102,221,0.04));
      border: 1px solid var(--green-border);
      border-radius: 28px;
      padding: 72px 48px;
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 2px 32px rgba(0,168,101,0.08);
    }

    .cta-card::before {
      content: '';
      position: absolute;
      top: -100px; left: 50%;
      transform: translateX(-50%);
      width: 320px; height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,168,101,0.07), transparent 68%);
      pointer-events: none;
    }

    .cta-card h2 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(26px, 4.5vw, 44px);
      font-weight: 800;
      letter-spacing: -0.025em;
      line-height: 1.1;
      margin-bottom: 14px;
    }

    .cta-card p {
      color: var(--text-mid);
      font-size: 15px;
      margin-bottom: 36px;
      font-weight: 300;
      max-width: 440px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--border);
      padding: 44px 28px;
      position: relative;
      z-index: 1;
    }

    .footer-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px;
    }

    .footer-logo {
      font-family: 'Outfit', sans-serif;
      font-size: 17px;
      font-weight: 800;
      text-decoration: none;
      color: var(--text);
      letter-spacing: -0.02em;
    }

    .footer-logo .accent {
      color: #00a865;
      -webkit-text-fill-color: #00a865;
    }

    .footer-links {
      display: flex;
      gap: 22px;
      list-style: none;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 13px;
      transition: color 0.18s;
    }

    .footer-links a:hover { color: var(--text); }

    .footer-copy {
      color: var(--text-muted);
      font-size: 12px;
      width: 100%;
      text-align: center;
      border-top: 1px solid var(--border);
      padding-top: 22px;
      margin-top: 8px;
    }

    /* ── SCROLL REVEAL (CSS-driven, no JS) ── */
    @media (prefers-reduced-motion: no-preference) {
      .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
      }
      .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
      }
      /* Scroll-driven animation for browsers that support it */
      @supports (animation-timeline: view()) {
        .reveal-auto {
          opacity: 0;
          transform: translateY(24px);
          animation: revealUp 0.7s cubic-bezier(0.16,1,0.3,1) both;
          animation-timeline: view();
          animation-range: entry 0% entry 85%;
        }
      }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 860px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
      }
      .hero-left { max-width: 100%; }
      .hero-actions { justify-content: center; }
      .hero-sub { margin-left: auto; margin-right: auto; }
      .hero-visual { order: -1; }
      .features-bento { grid-template-columns: 1fr; }
      .fcard--wide { grid-column: span 1; grid-template-columns: 1fr; }
      .protocols-grid { grid-template-columns: 1fr; }
      .trust-strip { flex-wrap: wrap; }
      .trust-item { border-right: none; border-bottom: 1px solid var(--border); flex: 0 0 50%; }
      .trust-item:last-child { border-bottom: none; }
    }

    @media (max-width: 640px) {
      .hero { padding-top: 52px; padding-bottom: 52px; }
      .pricing-grid { grid-template-columns: 1fr; }
      .servers-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
      .cta-card { padding: 48px 24px; }
    }

/* ── PLATFORM PAGES (new) ── */
.page-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 28px 96px;
}

.page-header {
  margin-bottom: 40px;
}

.page-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.page-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 12px;
  line-height: 1.6;
}

.page-content {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text);
}

.page-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 44px 0 16px;
  letter-spacing: -0.01em;
}

.page-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin: 32px 0 12px;
}

.page-content p { margin-bottom: 16px; }
.page-content ul, .page-content ol { margin: 0 0 18px 22px; }
.page-content li { margin-bottom: 8px; }
.page-content a { color: var(--green); text-decoration: none; }
.page-content a:hover { text-decoration: underline; }
.page-content code {
  background: var(--green-dim);
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 13.5px;
}
.page-content pre {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  overflow-x: auto;
  margin-bottom: 18px;
}
.page-content pre code { background: none; padding: 0; }

/* ── BREADCRUMBS ── */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--green); }

/* ── FOOTER GRID (new) ── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  width: 100%;
  margin-bottom: 36px;
}
.footer-brand .footer-desc {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 14px 0 18px;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-social a {
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-social a:hover { color: var(--green); }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text);
}
.footer-col .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}
.footer-lang a {
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none;
}
.footer-lang a:hover { color: var(--green); }

/* ── POST / BLOG ── */
.post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 14px;
}
.post-meta time { color: var(--text-muted); }
.post-author { font-weight: 600; color: var(--text); }
.post-tags { display: flex; gap: 8px; }
.post-tags .tag {
  background: var(--green-dim);
  color: var(--green);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 12px;
}

/* ── CARD GRID (docs/blog/guides index) ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  transition: border-color 0.22s, transform 0.22s cubic-bezier(0.16,1,0.3,1);
}
.card:hover {
  border-color: var(--green-border);
  transform: translateY(-2px);
}
.card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.card p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.card a.card-link {
  color: var(--green);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
}
.card a.card-link:hover { text-decoration: underline; }

/* ── STATUS PAGE ── */
.status-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  margin-bottom: 28px;
  font-weight: 600;
}
.status-summary .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.status-summary.ok { border-color: var(--green-border); background: var(--green-dim); }
.status-summary.degraded { border-color: rgba(240,180,41,0.4); background: rgba(240,180,41,0.08); }
.status-summary.degraded .dot { background: #f0b429; box-shadow: 0 0 8px #f0b429; }
.status-summary.down { border-color: rgba(239,68,68,0.4); background: rgba(239,68,68,0.08); }
.status-summary.down .dot { background: #ef4444; box-shadow: 0 0 8px #ef4444; }

.status-list { list-style: none; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.status-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}
.status-server { display: flex; align-items: center; gap: 10px; }
.status-server .flag { font-size: 18px; }
.status-server .name { font-weight: 600; font-size: 14px; }
.status-server .protocols { color: var(--text-muted); font-size: 12px; }
.status-pill {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.status-pill.ok { background: var(--green-dim); color: var(--green); }
.status-pill.degraded { background: rgba(240,180,41,0.12); color: #f0b429; }
.status-pill.down { background: rgba(239,68,68,0.12); color: #ef4444; }
.status-meta { color: var(--text-muted); font-size: 12px; margin-top: 20px; }
.status-refresh { color: var(--text-muted); font-size: 12px; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .page-container { padding: 40px 20px 72px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .status-list li { flex-direction: column; align-items: flex-start; }
}

/* ── CHANGELOG ── */
.changelog-list { display: flex; flex-direction: column; gap: 28px; }
.changelog-entry {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
}
.changelog-entry h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.changelog-entry .post-meta { margin-top: 0; margin-bottom: 14px; }
.changelog-entry .page-content { font-size: 14.5px; }
.changelog-entry .page-content h3 { font-size: 16px; margin: 20px 0 8px; }

/* ── FAQ page ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
}
.faq-item summary {
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
}
.faq-item summary:hover { color: var(--green); }
.faq-item .faq-a {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── STATUS PAGE ── */
.status-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  margin-bottom: 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
}
.status-summary .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-summary.ok { background: rgba(0,168,101,0.06); border-color: rgba(0,168,101,0.25); color: var(--green); }
.status-summary.ok .dot { background: var(--green); box-shadow: 0 0 0 4px rgba(0,168,101,0.15); }
.status-summary.degraded { background: rgba(240,173,78,0.08); border-color: rgba(240,173,78,0.3); color: #e0a03c; }
.status-summary.degraded .dot { background: #f0ad4e; box-shadow: 0 0 0 4px rgba(240,173,78,0.15); }
.status-summary.down { background: rgba(220,53,69,0.07); border-color: rgba(220,53,69,0.25); color: #dc3545; }
.status-summary.down .dot { background: #dc3545; box-shadow: 0 0 0 4px rgba(220,53,69,0.15); }

.status-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.status-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.status-server {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.status-server .name {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.status-server .protocols {
  font-size: 12.5px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 420px;
}
.status-pill {
  flex-shrink: 0;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}
.status-pill.ok { background: rgba(0,168,101,0.1); color: var(--green); }
.status-pill.degraded { background: rgba(240,173,78,0.12); color: #e0a03c; }
.status-pill.down { background: rgba(220,53,69,0.1); color: #dc3545; }
.status-meta {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.status-refresh { margin-top: 4px; font-size: 12.5px; color: var(--text-muted); }
.status-countdown {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--green);
  font-weight: 600;
}
@media (max-width: 640px) {
  .status-list li { flex-direction: column; align-items: flex-start; gap: 8px; }
  .status-server .protocols { max-width: 100%; }
}
