
    :root {
      --brand: #7c3aed;
      --brand-dark: #5b21b6;
      --accent-red: #d52b1e;
      --bg-soft: #f7f2e8;
      --text-main: #101013;
      --muted: #555;
      --card-bg: #ffffff;
      --radius-lg: 1.6rem;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 0;
      font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: radial-gradient(circle at top left, rgba(124,58,237,0.12), transparent 55%),
                  var(--bg-soft);
      color: var(--text-main);
    }

    a {
      color: inherit;
    }

    /* Header */

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(14px);
      background: linear-gradient(to bottom, rgba(247,242,232,0.94), rgba(247,242,232,0.88));
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .header-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0.9rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .header-left {
      display: flex;
      align-items: center;
      gap: 0.9rem;
    }

    .brand-main {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .brand-mark {
      width: 26px;
      height: 26px;
      border-radius: 9px;
      background: radial-gradient(circle at 20% 0%, #a855f7, #4f46e5);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 0.9rem;
      font-weight: 700;
    }

    .brand-title {
      font-weight: 600;
      font-size: 1.05rem;
    }

    .brand-sub {
      font-size: 0.78rem;
      color: var(--muted);
      border-left: 1px solid rgba(0,0,0,0.08);
      padding-left: 0.7rem;
    }

    .brand-sub span {
      font-weight: 600;
      color: var(--brand);
    }

    .header-nav {
      display: flex;
      gap: 1rem;
      font-size: 0.9rem;
    }

    .header-nav a {
      text-decoration: none;
      color: #333;
      padding: 0.25rem 0;
      border-bottom: 2px solid transparent;
    }

    .header-nav a:hover {
      border-bottom-color: var(--brand);
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .btn-ghost {
      font-size: 0.85rem;
      padding: 0.45rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(0,0,0,0.08);
      background: rgba(255,255,255,0.8);
      text-decoration: none;
    }

    .btn-ghost:hover {
      border-color: rgba(0,0,0,0.16);
      background: #fff;
    }

    .btn-small-purple {
      font-size: 0.85rem;
      padding: 0.45rem 0.9rem;
      border-radius: 999px;
      background: var(--brand);
      color: #fff;
      text-decoration: none;
      font-weight: 500;
    }

    .btn-small-purple:hover {
      background: var(--brand-dark);
    }

    /* Hero */

    .hero {
      max-width: 1100px;
      margin: 2.5rem auto 2rem;
      padding: 0 2rem 0.5rem;
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
      gap: 2.5rem;
      align-items: center;
    }

    .hero-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      color: var(--brand-dark);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.2rem 0.9rem;
      border-radius: 999px;
      background: rgba(124,58,237,0.1);
      margin-bottom: 0.8rem;
    }

    .hero-kicker span.badge {
      font-size: 0.7rem;
      padding: 0.1rem 0.5rem;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(0,0,0,0.04);
    }

    .hero-title {
      font-size: 2.1rem;
      line-height: 1.1;
      margin: 0 0 0.9rem;
      letter-spacing: -0.02em;
    }

    .hero-highlight {
      color: var(--brand);
    }

    .hero-subtitle {
      font-size: 0.98rem;
      color: var(--muted);
      max-width: 38rem;
      margin-bottom: 1.4rem;
    }

    .hero-ctas {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      margin-bottom: 0.7rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.9rem 1.6rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--brand), var(--brand-dark));
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      box-shadow: 0 14px 35px rgba(88,28,135,0.35);
    }

    .btn-primary:hover {
      filter: brightness(1.02);
      transform: translateY(-0.5px);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.8rem 1.3rem;
      border-radius: 999px;
      border: 1px solid rgba(0,0,0,0.08);
      background: rgba(255,255,255,0.9);
      text-decoration: none;
      font-size: 0.9rem;
      color: #333;
    }

    .hero-note {
      font-size: 0.85rem;
      color: var(--muted);
    }

    .hero-right {
      position: relative;
    }

    .hero-card {
      background: radial-gradient(circle at top left, rgba(124,58,237,0.07), transparent 60%),
                  var(--card-bg);
      border-radius: var(--radius-lg);
      padding: 1.8rem 1.7rem;
      border: 1px solid rgba(0,0,0,0.04);
      box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    }

    .hero-card-title {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .hero-card-stat-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin: 1rem 0 1.2rem;
      font-size: 0.9rem;
    }

    .hero-card-stat {
      min-width: 110px;
    }

    .hero-card-stat strong {
      display: block;
      font-size: 1.1rem;
      margin-bottom: 0.15rem;
    }

    .hero-card-foot {
      font-size: 0.78rem;
      color: var(--muted);
    }

    /* Sections */

    .section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 1rem 2rem 2.5rem;
    }

    .section-header {
      margin-bottom: 1.5rem;
    }

    .section-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--brand-dark);
      margin-bottom: 0.2rem;
    }

    .section-title {
      font-size: 1.4rem;
      margin: 0 0 0.3rem;
    }

    .section-subtitle {
      font-size: 0.95rem;
      color: var(--muted);
      max-width: 32rem;
    }

    /* Country grid */

    .countries-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.4rem;
    }

    .country-card {
      background: rgba(255,255,255,0.95);
      border-radius: 1.2rem;
      padding: 1.1rem 1.1rem 1.3rem;
      border: 1px solid rgba(0,0,0,0.04);
      box-shadow: 0 8px 18px rgba(0,0,0,0.04);
      font-size: 0.9rem;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .country-pill-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.25rem;
    }

    .country-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.18rem 0.7rem;
      border-radius: 999px;
      background: rgba(124,58,237,0.08);
      color: var(--brand-dark);
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      white-space: nowrap;
    }

    .country-status {
      font-size: 0.75rem;
      color: #047857;
      font-weight: 500;
      white-space: nowrap;
    }

    .country-status.soon {
      color: #b45309;
    }

    .country-title {
      font-weight: 600;
      margin: 0.1rem 0 0.1rem;
    }

    .country-tagline {
      font-size: 0.82rem;
      color: var(--muted);
    }

    .country-domain {
      font-size: 0.8rem;
      color: #9ca3af;
      word-break: break-all;
    }

    .country-link {
      margin-top: 0.6rem;
      font-size: 0.86rem;
      font-weight: 600;
      text-decoration: none;
      color: var(--brand);
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }

    .country-link span {
      font-size: 0.95em;
    }

    /* Footer */

    .site-footer {
      border-top: 1px solid rgba(0,0,0,0.06);
      margin-top: 1rem;
      background: rgba(255,255,255,0.85);
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 1.2rem 2rem 1.5rem;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.85rem;
      color: var(--muted);
      flex-wrap: wrap;
    }

    .footer-links a {
      text-decoration: none;
      color: var(--muted);
      margin-left: 0.6rem;
    }

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

    /* Responsive */

    @media (max-width: 960px) {
      .hero {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-right {
        order: -1;
      }
      .countries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 720px) {
      .header-inner,
      .hero,
      .section,
      .footer-inner {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
      }
      .header-nav {
        display: none;
      }
      .countries-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero {
        margin-top: 1.7rem;
      }
    }
  