:root {
    --bg: #F5FBF7;
    --surface: #FFFFFF;
    --surface-soft: #ECFDF5;
    --surface-softer: #F4FBF7;
    --text: #0E1F18;
    --text-2: #294238;
    --muted: #5C7568;
    --muted-2: #94B0A2;
    --border: #C8EBD5;
    --border-soft: #DDF2E5;
    --primary: #10B981;
    --primary-hover: #059669;
    --primary-dark: #064E3B;
    --primary-soft: #D1FAE5;
    --primary-softer: #ECFDF5;
    --accent: #F59E0B;
    --accent-soft: #FEF3C7;
    --success: #059669;
    --success-soft: #D1FAE5;
    --danger: #DC2626;
    --danger-soft: #FEE2E2;
    --shadow-sm: 0 1px 2px rgba(16, 185, 129, 0.06);
    --shadow: 0 1px 3px rgba(16, 185, 129, 0.08), 0 4px 12px rgba(16, 185, 129, 0.04);
    --shadow-lg: 0 4px 16px rgba(16, 185, 129, 0.10), 0 12px 40px rgba(16, 185, 129, 0.06);
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 10px;
    --radius-xl: 14px;
    --serif: 'Bricolage Grotesque', -apple-system, system-ui, sans-serif;
    --sans: 'Bricolage Grotesque', -apple-system, system-ui, sans-serif;
    --mono: 'Geist Mono', ui-monospace, monospace;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    overflow-x: hidden;
  }

  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  input, select, textarea { font: inherit; color: inherit; }

  /* Typography */
  .serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
  .mono { font-family: var(--mono); }

  h1, h2, h3, h4 { font-weight: 500; line-height: 1.15; letter-spacing: -0.02em; }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 500; font-size: 14px;
    transition: all 0.15s ease;
    border: 1px solid transparent;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--primary); color: white;
    box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 1px 2px rgba(6,78,59,0.3);
  }
  .btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
  .btn-secondary {
    background: var(--surface); color: var(--text);
    border-color: var(--border);
  }
  .btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
  .btn-ghost { color: var(--text-2); }
  .btn-ghost:hover { color: var(--primary); }
  .btn-lg { padding: 14px 24px; font-size: 15px; border-radius: var(--radius-lg); }
  .btn-sm { padding: 6px 12px; font-size: 13px; }

  /* Top nav */
  .top-nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250, 248, 255, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border-soft);
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 14px 32px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px;
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--sans); font-size: 22px; font-weight: 600; letter-spacing: -0.035em;
    color: var(--text);
  }
  .logo-mark {
    width: 32px; height: 32px;
    flex-shrink: 0;
    border-radius: 9px;
    box-shadow: 0 2px 8px rgba(16,185,129,0.32), 0 0 0 1px rgba(6,78,59,0.04);
  }
  .nav-links { display: flex; gap: 4px; align-items: center; }
  .nav-links a {
    padding: 8px 14px; border-radius: var(--radius);
    font-size: 14px; color: var(--text-2);
    transition: all 0.15s;
  }
  .nav-links a:hover { background: var(--primary-softer); color: var(--text); }
  .nav-cta { display: flex; gap: 8px; align-items: center; }

  /* Hero */
  .hero {
    position: relative;
    padding: 88px 32px 72px;
    text-align: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
      radial-gradient(circle at 20% 10%, rgba(16, 185, 129, 0.06), transparent 40%),
      radial-gradient(circle at 80% 30%, rgba(245, 158, 11, 0.05), transparent 35%);
  }
  .hero-grid {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
      linear-gradient(to right, rgba(16, 185, 129, 0.06) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(16, 185, 129, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  }
  .hero-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
  .kicker {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-family: var(--mono);
    font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--text-2); font-weight: 500;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
  }
  .kicker-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(245,158,11,0.2);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse { 50% { opacity: 0.5; } }
  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(56px, 9vw, 112px);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.045em;
    margin-bottom: 22px;
  }
  .hero h1 em {
    font-style: normal;
    font-weight: 800;
    color: var(--primary);
  }
  .hero p.lede {
    font-size: 19px;
    color: var(--text-2);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.55;
  }

  /* Domain search */
  .search-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 620px;
    margin: 0 auto;
    display: flex; gap: 8px;
    transition: box-shadow 0.2s;
  }
  .search-card:focus-within {
    box-shadow: 0 0 0 4px rgba(16,185,129,0.12), var(--shadow-lg);
    border-color: var(--primary);
  }
  .search-input {
    flex: 1;
    padding: 14px 18px;
    border: none; outline: none;
    font-size: 17px;
    background: transparent;
    color: var(--text);
  }
  .search-input::placeholder { color: var(--muted-2); }

  .tld-chips {
    display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
    margin-top: 24px;
    font-size: 13px;
    color: var(--muted);
  }
  .tld-chips span:first-child { color: var(--muted); }
  .tld-chip {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    font-family: var(--mono); font-size: 12px;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.15s;
  }
  .tld-chip:hover { border-color: var(--primary); color: var(--primary); }

  /* Search results (demo) */
  .search-results {
    max-width: 620px; margin: 24px auto 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: none;
    text-align: left;
    box-shadow: var(--shadow);
  }
  .search-results.visible { display: block; }
  .result-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-soft);
  }
  .result-row:last-child { border-bottom: none; }
  .result-domain { font-family: var(--mono); font-size: 15px; }
  .result-domain.taken { color: var(--muted); text-decoration: line-through; }
  .result-meta { display: flex; align-items: center; gap: 12px; }
  .result-price { font-family: var(--mono); font-size: 14px; color: var(--text); }
  .result-price.promo { color: var(--success); }
  .badge {
    font-size: 11px; padding: 2px 8px; border-radius: 999px;
    font-weight: 500; letter-spacing: 0.02em;
  }
  .badge-success { background: var(--success-soft); color: var(--success); }
  .badge-muted { background: var(--surface-soft); color: var(--muted); }
  .badge-accent { background: var(--accent-soft); color: #92400E; }

  /* Sections */
  section.block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 32px;
  }
  .section-head {
    text-align: center;
    margin-bottom: 48px;
  }
  .section-eyebrow {
    font-family: var(--mono);
    font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--primary); font-weight: 500;
    margin-bottom: 14px;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .section-eyebrow::before {
    content: '//'; opacity: 0.5;
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.035em;
    line-height: 1.05;
  }
  .section-subtitle {
    color: var(--muted);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
  }

  /* TLD pricing strip */
  .tld-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1px;
    background: var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .tld-card {
    background: var(--surface);
    padding: 24px 20px;
    text-align: center;
    transition: background 0.15s;
    cursor: pointer;
    position: relative;
  }
  .tld-card:hover { background: var(--surface-softer); }
  .tld-card .tld {
    font-family: var(--mono); font-size: 22px; font-weight: 500;
    color: var(--primary);
    margin-bottom: 4px;
  }
  .tld-card .tld-old {
    font-size: 11px; color: var(--muted-2);
    text-decoration: line-through;
    margin-bottom: 2px;
  }
  .tld-card .tld-price {
    font-family: var(--mono); font-size: 13px; color: var(--text);
    font-weight: 500;
  }
  .tld-card .tld-price small { color: var(--muted); font-weight: 400; }
  .tld-card.featured {
    background: linear-gradient(180deg, var(--primary-softer), var(--surface));
  }
  .tld-card.featured::before {
    content: 'POPULAR';
    position: absolute; top: 8px; right: 8px;
    font-size: 9px; letter-spacing: 0.08em;
    color: var(--primary); font-weight: 600;
    padding: 2px 6px;
    background: var(--primary-soft);
    border-radius: 4px;
  }

  /* Hosting plans */
  .plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .plan {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    transition: all 0.2s;
    position: relative;
  }
  .plan:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
  .plan.highlighted {
    background: var(--text);
    color: var(--surface);
    border-color: var(--text);
  }
  .plan.highlighted .plan-name { color: var(--accent); }
  .plan.highlighted .plan-desc, .plan.highlighted .plan-price-cycle { color: rgba(255,255,255,0.7); }
  .plan.highlighted .plan-features li { color: rgba(255,255,255,0.85); }
  .plan.highlighted .plan-features svg { color: var(--accent); }
  .plan.highlighted .btn-primary { background: var(--accent); color: var(--text); }
  .plan.highlighted .btn-primary:hover { background: #FCD34D; }
  .plan-tag {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: var(--text);
    font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
    padding: 4px 12px; border-radius: 999px;
  }
  .plan-name {
    font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--primary); font-weight: 500;
    margin-bottom: 16px;
  }
  .plan-desc { color: var(--muted); font-size: 14px; margin-bottom: 24px; min-height: 42px; }
  .plan-price {
    display: flex; align-items: baseline; gap: 4px;
    margin-bottom: 6px;
    font-family: var(--serif);
    font-weight: 700; letter-spacing: -0.025em;
  }
  .plan-price-currency { font-size: 22px; }
  .plan-price-amount { font-size: 56px; line-height: 1; letter-spacing: -0.04em; }
  .plan-price-cycle { color: var(--muted); font-size: 14px; margin-bottom: 28px; font-family: var(--sans); }
  .plan-features { list-style: none; margin-bottom: 28px; }
  .plan-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 0;
    font-size: 14px;
    color: var(--text-2);
  }
  .plan-features svg { color: var(--success); flex-shrink: 0; }
  .plan .btn { width: 100%; }

  /* Features grid */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border-soft);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .feature {
    background: var(--surface);
    padding: 36px 32px;
  }
  .feature-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius);
    background: var(--primary-soft);
    color: var(--primary);
    display: grid; place-items: center;
    margin-bottom: 20px;
  }
  .feature h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }
  .feature p { color: var(--muted); font-size: 15px; }

  /* CTA strip */
  .cta-strip {
    max-width: 1200px;
    margin: 0 auto 64px;
    padding: 0 32px;
  }
  .cta-card {
    background: var(--text);
    color: var(--surface);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-card::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.4), transparent 40%),
      radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.25), transparent 40%);
    pointer-events: none;
  }
  .cta-card > * { position: relative; z-index: 1; }
  .cta-card h2 {
    font-family: var(--serif);
    font-size: clamp(36px, 5.5vw, 56px);
    font-weight: 700; line-height: 1.0;
    margin-bottom: 16px; letter-spacing: -0.035em;
  }
  .cta-card h2 em { color: var(--accent); font-style: normal; font-weight: 800; }
  .cta-card p { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 28px; }

  /* Footer */
  footer {
    border-top: 1px solid var(--border-soft);
    padding: 56px 32px 32px;
    background: var(--surface-softer);
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-brand p { color: var(--muted); font-size: 14px; margin-top: 12px; max-width: 280px; }
  .footer-col h4 {
    font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--text); margin-bottom: 16px; font-weight: 500;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 8px; }
  .footer-col a { color: var(--muted); font-size: 14px; }
  .footer-col a:hover { color: var(--primary); }
  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-soft);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; color: var(--muted);
    flex-wrap: wrap; gap: 12px;
  }
  .footer-payments { display: flex; gap: 8px; align-items: center; }
  .pay-badge {
    padding: 4px 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 11px; font-weight: 500;
    color: var(--text-2);
  }

  /* ============================================ */
  /* CLIENT AREA                                  */
  /* ============================================ */
  .app-shell {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
    background: var(--bg);
  }
  .sidebar {
    background: var(--surface);
    border-right: 1px solid var(--border-soft);
    padding: 20px 16px;
    position: sticky; top: 0;
    height: 100vh;
    display: flex; flex-direction: column;
  }
  .sidebar .logo { padding: 6px 12px; margin-bottom: 32px; font-size: 19px; }
  .sidebar-section {
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted-2); font-weight: 500;
    padding: 0 12px; margin-bottom: 8px; margin-top: 8px;
  }
  .sidebar-nav { display: flex; flex-direction: column; gap: 2px; }
  .sidebar-link {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius);
    color: var(--text-2);
    font-size: 14px; font-weight: 500;
    transition: all 0.12s;
    cursor: pointer;
  }
  .sidebar-link:hover { background: var(--primary-softer); color: var(--text); }
  .sidebar-link.active {
    background: var(--primary-soft); color: var(--primary);
  }
  .sidebar-link svg { width: 16px; height: 16px; }
  .sidebar-link .count {
    margin-left: auto;
    font-size: 11px; padding: 1px 7px;
    background: var(--surface-soft); color: var(--muted);
    border-radius: 999px;
  }
  .sidebar-link.active .count { background: var(--primary); color: white; }
  .sidebar-foot {
    margin-top: auto;
    padding: 12px;
    background: var(--surface-soft);
    border-radius: var(--radius);
    display: flex; align-items: center; gap: 10px;
  }
  .avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: grid; place-items: center;
    font-weight: 500; font-size: 13px;
    flex-shrink: 0;
  }
  .sidebar-foot div { min-width: 0; flex: 1; }
  .sidebar-foot .name { font-size: 13px; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .sidebar-foot .email { font-size: 12px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  .main {
    padding: 32px 40px 64px;
    overflow-y: auto;
  }
  .topbar {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 32px;
  }
  .page-title { font-family: var(--serif); font-size: 36px; font-weight: 700; letter-spacing: -0.025em; }
  .page-sub { color: var(--muted); font-size: 14px; margin-top: 4px; }

  /* KPI cards */
  .kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
  }
  .kpi {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all 0.15s;
  }
  .kpi:hover { border-color: var(--border); box-shadow: var(--shadow-sm); }
  .kpi-label {
    font-size: 13px; color: var(--muted);
    margin-bottom: 8px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .kpi-value {
    font-family: var(--serif); font-size: 32px; font-weight: 700; letter-spacing: -0.02em; font-weight: 700;
    line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em;
  }
  .kpi-meta { font-size: 12px; color: var(--muted); }
  .kpi-meta .up { color: var(--success); }
  .kpi-meta .down { color: var(--danger); }

  /* Card */
  .card {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .card-head {
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--border-soft);
  }
  .card-title { font-size: 15px; font-weight: 500; }
  .card-body { padding: 0; }
  .card-foot {
    padding: 14px 24px;
    border-top: 1px solid var(--border-soft);
    background: var(--surface-softer);
  }

  /* Table */
  table { width: 100%; border-collapse: collapse; }
  thead th {
    text-align: left;
    padding: 12px 24px;
    font-size: 12px; font-weight: 500; letter-spacing: 0.02em;
    color: var(--muted); text-transform: uppercase;
    background: var(--surface-softer);
    border-bottom: 1px solid var(--border-soft);
  }
  tbody td {
    padding: 14px 24px;
    border-bottom: 1px solid var(--border-soft);
    font-size: 14px;
  }
  tbody tr:last-child td { border-bottom: none; }
  tbody tr:hover { background: var(--surface-softer); }
  td .domain-cell { font-family: var(--mono); font-size: 13px; }
  td .product-cell { display: flex; flex-direction: column; gap: 2px; }
  td .product-cell .product-name { font-weight: 500; }
  td .product-cell .product-meta { font-size: 12px; color: var(--muted); font-family: var(--mono); }
  td.amount { font-family: var(--mono); font-weight: 500; }

  .row-2col { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }

  .activity { padding: 8px 0; }
  .activity-item {
    display: flex; gap: 12px;
    padding: 12px 24px;
    border-bottom: 1px solid var(--border-soft);
  }
  .activity-item:last-child { border-bottom: none; }
  .activity-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    margin-top: 7px; flex-shrink: 0;
  }
  .activity-content { flex: 1; }
  .activity-title { font-size: 13px; line-height: 1.4; }
  .activity-time { font-size: 12px; color: var(--muted); margin-top: 2px; }

  /* Admin specific */
  .admin-banner {
    background: var(--text); color: var(--surface);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 12px;
    display: inline-flex; align-items: center; gap: 8px;
    margin-bottom: 12px;
  }
  .admin-banner-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

  .chart-card {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 24px;
  }
  .chart-svg { width: 100%; height: 200px; }

  /* View switcher */
  .view-switcher {
    position: fixed; bottom: 20px; right: 20px;
    background: var(--text); color: var(--surface);
    border-radius: 999px;
    padding: 6px;
    display: flex; gap: 2px;
    box-shadow: 0 8px 24px rgba(15, 31, 26, 0.25);
    z-index: 100;
    font-size: 12px;
  }
  .view-switcher button {
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 500; font-size: 12px;
    color: rgba(255,255,255,0.7);
    transition: all 0.15s;
  }
  .view-switcher button.active {
    background: var(--surface); color: var(--text);
  }
  .view-switcher button:hover:not(.active) { color: white; }
  .view-switcher::before {
    content: 'PREVIEW';
    align-self: center;
    font-size: 10px; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    padding: 0 10px 0 12px;
    border-right: 1px solid rgba(255,255,255,0.15);
    margin-right: 4px;
  }

  /* View toggling */
  .view { display: none; }
  .view.active { display: block; }

  /* Responsive */
  @media (max-width: 980px) {
    .nav-links { display: none; }
    .plans { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .kpis { grid-template-columns: repeat(2, 1fr); }
    .row-2col { grid-template-columns: 1fr; }
    .app-shell { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .main { padding: 24px 20px; }
  }
  @media (max-width: 540px) {
    .hero { padding: 56px 20px 48px; }
    .hero h1 { font-size: 44px; }
    section.block { padding: 48px 20px; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  }

  .subsection-head {
    display: flex; align-items: baseline; justify-content: space-between;
    margin: 32px 4px 20px;
    flex-wrap: wrap; gap: 8px;
  }
  .subsection-title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text);
    display: inline-flex; align-items: center; gap: 10px;
  }
  .subsection-title::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(16,185,129,0.18);
  }
  .subsection-meta {
    font-size: 13px;
    color: var(--muted);
  }
  .tld-card.promo {
    background: linear-gradient(180deg, var(--accent-soft), var(--surface));
  }
  .tld-card.promo::before {
    content: 'PROMO';
    position: absolute; top: 8px; right: 8px;
    font-size: 9px; letter-spacing: 0.08em;
    color: #92400E; font-weight: 600;
    padding: 2px 6px;
    background: white;
    border-radius: 4px;
    border: 1px solid rgba(146, 64, 14, 0.15);
  }