  :root {
    --crimson: #c0160e;
    --crimson-dark: #8b0f09;
    --crimson-glow: #e8201a;
    --gold: #ffb3ae;
    --gold-light: #ffd5d3;
    --obsidian: #0a0a0b;
    --dark: #111113;
    --mid: #1a1a1e;
    --surface: #222228;
    --surface2: #2a2a32;
    --text: #f0ede8;
    --text-muted: #8a8790;
    --text-dim: #5a5760;
    --border: rgba(255,255,255,0.06);
    --border-gold: rgba(212,168,67,0.3);
    --font-display: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--obsidian);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
    cursor: auto;
  }



  /* Scrollbar */
  ::-webkit-scrollbar { width: 3px; }
  ::-webkit-scrollbar-track { background: var(--obsidian); }
  ::-webkit-scrollbar-thumb { background: var(--crimson); border-radius: 2px; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 60px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    background: linear-gradient(180deg, rgba(10,10,11,0.95) 0%, transparent 100%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none;
  }
  .nav-logo-icon {
    width: 38px;
    position: relative;
  }
  .nav-logo-icon svg { width: 100%; height: 100%; }
  .nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text);
  }
  .nav-logo-text span { color: var(--crimson-glow); }
  .nav-links {
    display: flex; gap: 40px;
    list-style: none;
  }
  .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--crimson-glow);
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-cta {
    display: flex; gap: 12px;
  }
  .btn-nav {
    padding: 9px 22px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
  }
  .btn-ghost {
    border: 1px solid var(--border-gold);
    color: var(--gold);
    background: transparent;
  }
  .btn-ghost:hover {
    background: rgba(212,168,67,0.1);
    border-color: var(--gold);
  }
  .btn-primary-nav {
    background: var(--crimson);
    color: #fff;
    border: 1px solid transparent;
  }
  .btn-primary-nav:hover {
    background: var(--crimson-glow);
    box-shadow: 0 0 20px rgba(232,32,26,0.4);
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 60px 100px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
  }
  .hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(192,22,14,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(192,22,14,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }
  .hero-bg-glow {
    position: absolute;
    top: 20%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse, rgba(192,22,14,0.12) 0%, transparent 70%);
  }
  .hero-noise {
    position: absolute; inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
  }
  .hero-content {
    position: relative; z-index: 1;
    max-width: 680px;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--crimson-glow);
    margin-bottom: 28px;
    padding: 8px 16px;
    border: 1px solid rgba(232,32,26,0.2);
    border-radius: 2px;
    background: rgba(232,32,26,0.05);
  }
  .hero-eyebrow::before {
    content: '';
    width: 18px; height: 1px;
    background: var(--crimson-glow);
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
    animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .hero-title .line { display: block; overflow: hidden; }
  .hero-title .line-inner {
    display: block;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .hero-title .line:nth-child(2) .line-inner { animation-delay: 0.1s; }
  .hero-title .line:nth-child(3) .line-inner { animation-delay: 0.2s; }
  .hero-title .accent { color: var(--crimson-glow); }
  @keyframes slideUp {
    from { transform: translateY(110%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  .hero-sub {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 44px;
    max-width: 460px;
    animation: fadeUp 1s 0.5s both;
  }
  @keyframes fadeUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  .hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeUp 1s 0.65s both;
  }
  .btn-hero-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px;
    background: var(--crimson);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .btn-hero-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .btn-hero-primary:hover { background: var(--crimson-glow); box-shadow: 0 8px 32px rgba(232,32,26,0.4), 0 0 0 1px rgba(232,32,26,0.3); }
  .btn-hero-primary:hover::before { opacity: 1; }
  .btn-hero-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s;
  }
  .btn-hero-secondary:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }

  /* Dragon */
  .hero-dragon {
    position: absolute; right: 60px; top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    animation: dragonFloat 6s ease-in-out infinite;
  }
  @keyframes dragonFloat {
    0%, 100% { transform: translateY(-50%) rotate(-2deg); }
    50% { transform: translateY(calc(-50% - 20px)) rotate(2deg); }
  }
  .hero-dragon svg {
    width: 340px; height: 340px;
    opacity: 0.15;
    filter: drop-shadow(0 0 60px rgba(192,22,14,0.5));
  }

  /* Stats */
  .hero-stats {
    display: flex; gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    animation: fadeUp 1s 0.8s both;
  }
  .stat-item {}
  .stat-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
  }
  .stat-value span { color: var(--crimson-glow); }
  .stat-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 6px;
  }

  /* TRUST BAR */
  .trust-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--dark);
    padding: 20px 60px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px;
  }
  .trust-item {
    display: flex; align-items: center; gap: 12px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .trust-item svg { color: var(--crimson-glow); flex-shrink: 0; }
  .trust-divider {
    width: 1px; height: 24px;
    background: var(--border);
    flex-shrink: 0;
  }

  /* SECTION COMMON */
  section { position: relative; }
  .section-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
  .section-label {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--crimson-glow);
    margin-bottom: 20px;
  }
  .section-label::before, .section-label::after {
    content: '';
    width: 30px; height: 1px;
    background: currentColor;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
  }
  .text-gold { color: var(--gold); }
  .text-crimson { color: var(--crimson-glow); }

  /* FEATURES */
  .features { padding: 120px 0; }
  .features-header { text-align: center; margin-bottom: 80px; }
  .features-header .section-sub { margin: 0 auto; }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
  }
  .feature-card {
    background: var(--dark);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
    group: true;
  }
  .feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--crimson), transparent);
    transform: scaleX(0);
    transition: transform 0.5s;
  }
  .feature-card:hover { background: var(--mid); }
  .feature-card:hover::before { transform: scaleX(1); }
  .feature-icon {
    width: 52px; height: 52px;
    border-radius: 8px;
    background: rgba(192,22,14,0.1);
    border: 1px solid rgba(192,22,14,0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
    transition: all 0.3s;
  }
  .feature-card:hover .feature-icon {
    background: rgba(192,22,14,0.2);
    box-shadow: 0 0 20px rgba(192,22,14,0.2);
  }
  .feature-icon svg { color: var(--crimson-glow); }
  .feature-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
  }
  .feature-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
  }
  .feature-num {
    position: absolute; bottom: 28px; right: 32px;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(192,22,14,0.06);
    line-height: 1;
    transition: color 0.3s;
  }
  .feature-card:hover .feature-num { color: rgba(192,22,14,0.1); }

  /* DOMAIN BANNER */
  .domain-banner {
    background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 50%, #a01208 100%);
    padding: 60px;
    position: relative;
    overflow: hidden;
  }
  .domain-banner::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .domain-banner-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; position: relative;
  }
  .domain-banner h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
  }
  .domain-banner h2 span {
    color: var(--gold-light);
    display: block;
  }
  .domain-banner p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-top: 8px; }
  .domain-search {
    display: flex; gap: 0;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    overflow: hidden;
    min-width: 440px;
  }
  .domain-search input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 20px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
  }
  .domain-search input::placeholder { color: rgba(255,255,255,0.4); }
  .domain-search button {
    padding: 16px 28px;
    background: var(--gold);
    color: var(--obsidian);
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
  }
  .domain-search button:hover { background: var(--gold-light); }
  .domain-tlds {
    display: flex; gap: 8px; margin-top: 12px;
  }
  .tld-badge {
    padding: 4px 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.06em;
  }

  /* PRICING */
  .pricing { padding: 120px 0; background: var(--dark); }
  .pricing-header { text-align: center; margin-bottom: 64px; }
  .pricing-tabs {
    display: flex; justify-content: center; gap: 0;
    margin-bottom: 56px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .tab-btn {
    padding: 10px 28px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .tab-btn.active {
    background: var(--crimson);
    color: #fff;
  }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .pricing-card {
    background: var(--mid);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 36px;
    position: relative;
    transition: all 0.4s;
    overflow: hidden;
  }
  .pricing-card:hover {
    border-color: rgba(192,22,14,0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  }
  .pricing-card.featured {
    background: linear-gradient(160deg, rgba(192,22,14,0.15) 0%, var(--mid) 60%);
    border-color: rgba(192,22,14,0.4);
  }
  .pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute; top: 0; right: 0;
    background: var(--crimson);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-bottom-left-radius: 8px;
  }
  .plan-type {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--crimson-glow);
    margin-bottom: 12px;
  }
  .plan-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .plan-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.6; }
  .plan-price {
    display: flex; align-items: flex-start; gap: 4px;
    margin-bottom: 32px;
  }
  .price-currency {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 8px;
  }
  .price-amount {
    font-family: var(--font-display);
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text);
  }
  .price-period {
    font-size: 0.82rem;
    color: var(--text-dim);
    align-self: flex-end;
    margin-bottom: 8px;
  }
  .plan-features {
    list-style: none;
    display: flex; flex-direction: column; gap: 14px;
    margin-bottom: 36px;
  }
  .plan-features li {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.88rem;
    color: var(--text-muted);
  }
  .plan-features li::before {
    content: '';
    width: 16px; height: 16px;
    border-radius: 50%;
    background: rgba(192,22,14,0.15);
    border: 1px solid rgba(192,22,14,0.3);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23e8201a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
  }
  .btn-plan {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: transparent;
  }
  .btn-plan:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
  .btn-plan.featured-btn {
    background: var(--crimson);
    border-color: transparent;
    color: #fff;
  }
  .btn-plan.featured-btn:hover {
    background: var(--crimson-glow);
    box-shadow: 0 8px 24px rgba(232,32,26,0.35);
  }

  /* RESELLER */
  .reseller {
    padding: 80px 0;
    background: var(--obsidian);
  }
  .reseller-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .reseller-visual {
    position: relative;
    height: 400px;
  }
  .reseller-card-stack {
    position: absolute; inset: 0;
  }
  .stack-card {
    position: absolute;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 24px;
  }
  .stack-card:nth-child(1) {
    width: 260px; bottom: 20px; left: 20px;
    background: var(--mid);
    animation: cardFloat1 5s ease-in-out infinite;
  }
  .stack-card:nth-child(2) {
    width: 220px; top: 30px; right: 20px;
    background: var(--surface2);
    animation: cardFloat2 5s ease-in-out infinite;
  }
  .stack-card:nth-child(3) {
    width: 200px; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(192,22,14,0.15), var(--surface));
    border-color: rgba(192,22,14,0.3);
    animation: cardFloat3 5s ease-in-out infinite;
  }
  @keyframes cardFloat1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
  }
  @keyframes cardFloat2 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
  }
  @keyframes cardFloat3 {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, calc(-50% - 8px)) rotate(1deg); }
  }
  .stack-label {
    font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--crimson-glow); margin-bottom: 10px;
  }
  .stack-value {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 700;
  }
  .stack-sub { font-size: 0.78rem; color: var(--text-dim); margin-top: 4px; }
  .stack-bar {
    height: 4px; background: var(--border);
    border-radius: 2px; margin-top: 14px;
    overflow: hidden;
  }
  .stack-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--crimson), var(--crimson-glow));
    border-radius: 2px;
    animation: barGrow 2s ease-out both;
  }
  @keyframes barGrow {
    from { width: 0; }
  }
  .reseller-features { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
  .reseller-feature {
    display: flex; gap: 16px; align-items: flex-start;
  }
  .rf-icon {
    width: 36px; height: 36px;
    background: rgba(192,22,14,0.1);
    border: 1px solid rgba(192,22,14,0.2);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .rf-icon svg { color: var(--crimson-glow); }
  .rf-title { font-size: 0.92rem; font-weight: 500; margin-bottom: 4px; }
  .rf-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

  /* TESTIMONIALS */
  .testimonials { padding: 120px 0; background: var(--dark); }
  .testimonials-header { text-align: center; margin-bottom: 64px; }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .testi-card {
    background: var(--mid);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px;
    position: relative;
    transition: border-color 0.3s;
  }
  .testi-card:hover { border-color: rgba(192,22,14,0.2); }
  .testi-stars {
    display: flex; gap: 4px; margin-bottom: 20px;
  }
  .testi-stars span { color: var(--gold); font-size: 0.9rem; }
  .testi-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
  }
  .testi-author {
    display: flex; align-items: center; gap: 14px;
  }
  .testi-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--crimson-dark), var(--crimson));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    flex-shrink: 0;
  }
  .testi-name { font-weight: 500; font-size: 0.9rem; }
  .testi-role { font-size: 0.78rem; color: var(--text-dim); }
  .quote-mark {
    position: absolute; top: 24px; right: 28px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(192,22,14,0.08);
    line-height: 1;
  }

  /* FAQ */
  .faq { padding: 120px 0; }
  .faq-inner { display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px; align-items: start; }
  .faq-list { display: flex; flex-direction: column; gap: 2px; }
  .faq-item {
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    background: var(--dark);
    transition: border-color 0.3s;
  }
  .faq-item.open { border-color: rgba(192,22,14,0.25); }
  .faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 400;
    transition: color 0.3s;
  }
  .faq-item.open .faq-question { color: var(--text); }
  .faq-question:hover { color: var(--text); }
  .faq-toggle {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(192,22,14,0.1);
    border: 1px solid rgba(192,22,14,0.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--crimson-glow);
    transition: transform 0.3s, background 0.3s;
  }
  .faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: rgba(192,22,14,0.2);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.7;
  }
  .faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
  }

  /* CTA SECTION */
  .cta-section {
    padding: 120px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
  }
  .cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(192,22,14,0.08) 0%, transparent 70%);
  }
  .cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
  }
  .cta-section p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 44px;
    position: relative;
  }
  .cta-actions { display: flex; gap: 16px; justify-content: center; position: relative; }

  /* FOOTER */
  footer {
    background: var(--obsidian);
    border-top: 1px solid var(--border);
    padding: 64px 60px 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand {}
  .footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
  }
  .footer-logo-text span { color: var(--crimson-glow); }
  .footer-tagline {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 260px;
  }
  .footer-location {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.78rem;
    color: var(--text-dim);
  }
  .footer-location svg { color: var(--crimson-glow); }
  .footer-col-title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--crimson-glow); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-dim);
  }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a { color: var(--text-dim); text-decoration: none; transition: color 0.3s; }
  .footer-legal a:hover { color: var(--text-muted); }
  .footer-social { display: flex; gap: 12px; }
  .social-btn {
    width: 34px; height: 34px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s;
  }
  .social-btn:hover { border-color: var(--crimson-glow); color: var(--crimson-glow); }
  .welsh-flag-stripe {
    height: 3px;
    background: linear-gradient(90deg, #fff 50%, var(--crimson) 50%);
    margin-bottom: 0;
  }

  /* ANIMATED ENTRANCE */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* MOBILE RESPONSIVE BASIC */
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hero { padding: 120px 24px 80px; }
    .hero-dragon { display: none; }
    .section-inner { padding: 0 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .reseller-inner { grid-template-columns: 1fr; }
    .reseller-visual { height: 250px; }
    .faq-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .domain-banner { padding: 40px 24px; }
    .domain-banner-inner { flex-direction: column; }
    .domain-search { min-width: unset; width: 100%; }
    .trust-bar { flex-wrap: wrap; padding: 20px 24px; }
    .trust-divider { display: none; }
    .hero-stats { gap: 28px; flex-wrap: wrap; }
    .cta-section { padding: 80px 24px; }
    footer { padding: 48px 24px 24px; }
.nav-cta {
  display: none;
}

.cta-actions .btn-hero-secondary {
  display: none;
}
.pricing-tabs {
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  font-size: 0.72rem;
}
                @media (max-width: 900px) {
                  .hero-stats {
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    gap: 24px;
                    text-align: center;
                    justify-items: center;
                  }
                }
  }
/* ================================================
   LIGHT MODE
   ================================================ */

[data-theme="light"] {
  --crimson: #da4b4b;
  --crimson-dark: #da4b4b;
  --crimson-glow: #da4b4b;
    --gold: #ffb3ae;
      --gold-light: #ffd5d3;
  --obsidian: #f5f4f0;
  --dark: #ffffff;
  --mid: #f0eeea;
  --surface: #e8e5e0;
  --surface2: #dedad4;
  --text: #1a1a1e;
  --text-muted: #4a4850;
  --text-dim: #8a8790;
  --border: rgba(0, 0, 0, 0.08);
  --border-gold: rgba(184, 134, 11, 0.4);
}

/* NAV — red background, white text */
[data-theme="light"] nav {
  background: #da4b4b !important;
  border-bottom-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .nav-links a {
  color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .nav-links a:hover {
  color: #ffffff;
}

[data-theme="light"] .nav-links a::after {
  background: #ffffff;
}

[data-theme="light"] .nav-logo-text {
  color: #ffffff;
}

[data-theme="light"] .nav-logo-text span {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

[data-theme="light"] .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

[data-theme="light"] .btn-primary-nav {
  background: #ffffff;
  color: var(--crimson);
  border-color: transparent;
}

[data-theme="light"] .btn-primary-nav:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .theme-toggle {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

[data-theme="light"] .theme-toggle:hover {
  border-color: #ffffff;
  color: #ffffff;
}

[data-theme="light"] .nav-burger span {
  background: #ffffff;
}

[data-theme="light"] .nav-mobile {
  background: rgb(217 76 76);
  border-bottom-color: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .nav-mobile ul li a {
  color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .nav-mobile ul li a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

/* HERO — red background like original */
[data-theme="light"] .hero {
  background: #da4b4b;
}

[data-theme="light"] .hero-title,
[data-theme="light"] .hero-eyebrow,
[data-theme="light"] .hero-sub {
  color: #ffffff;
}

[data-theme="light"] .hero-eyebrow {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

[data-theme="light"] .hero-eyebrow::before {
  background: #ffffff;
}

[data-theme="light"] .hero-title .accent {
  color: var(--gold-light);
}

[data-theme="light"] .hero-sub {
  color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .hero-bg-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
}

[data-theme="light"] .hero-bg-glow {
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
}

[data-theme="light"] .btn-hero-primary {
  background: #ffffff;
  color: var(--crimson);
}

[data-theme="light"] .btn-hero-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .btn-hero-secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

[data-theme="light"] .btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

[data-theme="light"] .hero-stats {
  border-top-color: rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .stat-value {
  color: #ffffff;
}

[data-theme="light"] .stat-value span {
  color: var(--gold-light);
}

[data-theme="light"] .stat-label {
  color: rgba(255, 255, 255, 0.6);
}

/* TRUST BAR */
[data-theme="light"] .trust-bar {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}

/* FEATURES */
[data-theme="light"] .feature-card {
  background: #ffffff;
}

[data-theme="light"] .feature-card:hover {
  background: #f5f4f0;
}

/* PRICING */
[data-theme="light"] .pricing-card {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .pricing-card.featured {
  background: linear-gradient(160deg, rgba(192, 22, 14, 0.08) 0%, #ffffff 60%);
}

/* FAQ */
[data-theme="light"] .faq-item {
  background: #ffffff;
}

/* TESTIMONIALS */
[data-theme="light"] .testi-card {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* RESELLER */
[data-theme="light"] .stack-card {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* FOOTER — keep dark like original */
[data-theme="light"] footer {
  background: #1a1a1e;
}

[data-theme="light"] .footer-logo-text {
  color: #f0ede8;
}

[data-theme="light"] .footer-logo-text span {
  color: var(--crimson-glow);
}

[data-theme="light"] .footer-tagline,
[data-theme="light"] .footer-location,
[data-theme="light"] .footer-copy,
[data-theme="light"] .footer-col-title {
  color: #8a8790;
}

[data-theme="light"] .footer-links a {
  color: #8a8790;
}

[data-theme="light"] .footer-links a:hover {
  color: var(--crimson-glow);
}

[data-theme="light"] .social-btn {
  background: #2a2a32;
  border-color: rgba(255, 255, 255, 0.1);
  color: #8a8790;
}

/* SCROLLBAR */
[data-theme="light"] ::-webkit-scrollbar-track {
  background: #f5f4f0;
}

/* THEME TOGGLE BUTTON */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--mid);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--crimson-glow);
  color: var(--crimson-glow);
}

.theme-toggle .icon-moon {
  display: block;
}

.theme-toggle .icon-sun {
  display: none;
}

[data-theme="light"] .theme-toggle .icon-moon {
  display: none;
}

[data-theme="light"] .theme-toggle .icon-sun {
  display: block;
}

.logo-light { display: none; }
.logo-dark { display: block; }

[data-theme="light"] .logo-light { display: block; }
[data-theme="light"] .logo-dark { display: none; }

[data-theme="light"] .cta-section .btn-hero-primary {
  background: var(--crimson);
  color: #ffffff;
}

[data-theme="light"] .cta-section .btn-hero-primary:hover {
  background: var(--crimson-glow);
  box-shadow: 0 8px 32px rgba(192, 22, 14, 0.3);
}

[data-theme="light"] .cta-section .btn-hero-secondary {
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--text);
}

[data-theme="light"] .cta-section .btn-hero-secondary:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.25);
}
[data-theme="light"] .about-hero {
  background: #da4b4b!important;
}
[data-theme="light"] .about-hero-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
}
[data-theme="light"] .about-hero-glow {
  background: radial-gradient(ellipse, rgba(0,0,0,0.15) 0%, transparent 70%);
}
[data-theme="light"] .about-hero-title { color: #ffffff; }
[data-theme="light"] .about-hero-title span { color: var(--gold-light) !important; }
[data-theme="light"] .about-hero-sub { color: rgba(255,255,255,0.8); }
[data-theme="light"] .page-breadcrumb a { color: rgba(255,255,255,0.6); }
[data-theme="light"] .page-breadcrumb span { color: #ffffff; }
[data-theme="light"] .page-tag {
  color: #ffffff;
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
}
[data-theme="light"] .page-hero {
  background: #da4b4b!important;
}
[data-theme="light"] .page-hero-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
}
[data-theme="light"] .page-hero-glow {
  background: radial-gradient(ellipse, rgba(0,0,0,0.15) 0%, transparent 70%);
}
[data-theme="light"] .page-title { color: #ffffff; }
[data-theme="light"] .page-meta { color: rgba(255,255,255,0.7); }
[data-theme="light"] .page-meta span { color: #ffffff; }

[data-theme="light"] .about-cta .btn-hero-primary {
  background: var(--crimson);
  color: #ffffff;
}
[data-theme="light"] .about-cta .btn-hero-primary:hover {
  background: var(--crimson-glow);
  box-shadow: 0 8px 32px rgba(192,22,14,0.3);
}
[data-theme="light"] .about-cta .btn-hero-secondary {
  border-color: rgba(0,0,0,0.15);
  color: var(--text);
}
[data-theme="light"] .about-cta .btn-hero-secondary:hover {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.25);
}

[data-theme="light"] .aff-cta .btn-hero-primary,
[data-theme="light"] .about-cta .btn-hero-primary,
[data-theme="light"] .cta-section .btn-hero-primary {
  background: var(--crimson);
  color: #ffffff;
}
[data-theme="light"] .aff-cta .btn-hero-primary:hover,
[data-theme="light"] .about-cta .btn-hero-primary:hover,
[data-theme="light"] .cta-section .btn-hero-primary:hover {
  background: var(--crimson-glow);
  box-shadow: 0 8px 32px rgba(192,22,14,0.3);
}
[data-theme="light"] .aff-cta .btn-hero-secondary,
[data-theme="light"] .about-cta .btn-hero-secondary,
[data-theme="light"] .cta-section .btn-hero-secondary {
  border-color: rgba(0,0,0,0.15);
  color: var(--text);
}
[data-theme="light"] .aff-cta .btn-hero-secondary:hover,
[data-theme="light"] .about-cta .btn-hero-secondary:hover,
[data-theme="light"] .cta-section .btn-hero-secondary:hover {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.25);
}
[data-theme="light"] .content-wrapper {
  background: var(--obsidian);
}
[data-theme="light"] .toc-list a {
  color: var(--text-dim);
}
[data-theme="light"] .toc-list a:hover {
  background: var(--surface);
  color: var(--text);
}
[data-theme="light"] .toc-title {
  border-bottom-color: var(--border);
}
[data-theme="light"] .policy-section {
  border-bottom-color: var(--border);
}
[data-theme="light"] .policy-section h2 {
  color: var(--text);
}
[data-theme="light"] .policy-section h3 {
  color: var(--text);
}
[data-theme="light"] .policy-section p,
[data-theme="light"] .policy-section ul li {
  color: var(--text-muted);
}
[data-theme="light"] .highlight-box {
  background: rgba(192,22,14,0.05);
  border-color: rgba(192,22,14,0.2);
  color: var(--text-muted);
}
[data-theme="light"] .highlight-box strong { color: var(--text); }
[data-theme="light"] .info-box {
  background: rgba(192,22,14,0.04);
  border-color: rgba(192,22,14,0.2);
  color: var(--text-muted);
}
[data-theme="light"] .info-box strong { color: var(--crimson); }
[data-theme="light"] a.inline-link { color: var(--crimson); }


/* PAGE HERO */
.page-hero {
    padding: 140px 60px 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(192, 22, 14, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192, 22, 14, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 20% 50%, black 20%, transparent 80%);
}

.page-hero-glow {
    position: absolute;
    top: 0;
    left: -100px;
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(192, 22, 14, 0.08) 0%, transparent 70%);
}

.page-hero-inner {
    position: relative;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}

.page-breadcrumb a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.page-breadcrumb a:hover {
    color: var(--crimson-glow);
}

.page-breadcrumb span {
    color: var(--crimson-glow);
}

.page-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--crimson-glow);
    margin-bottom: 20px;
    padding: 6px 14px;
    border: 1px solid rgba(232, 32, 26, 0.2);
    border-radius: 2px;
    background: rgba(232, 32, 26, 0.05);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.page-meta {
    font-size: 0.82rem;
    color: var(--text-dim);
    letter-spacing: 0.04em;
}

.page-meta span {
    color: var(--gold);
}

/* CONTENT LAYOUT */
.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
    align-items: start;
}

/* SIDEBAR TOC */
.toc {
    position: sticky;
    top: 96px;
}

.toc-title {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toc-list a {
    display: block;
    padding: 8px 12px;
    font-size: 0.8rem;
    color: var(--text-dim);
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.2s;
    border-left: 2px solid transparent;
    line-height: 1.4;
}

.toc-list a:hover {
    color: var(--text);
    background: var(--mid);
    border-left-color: var(--crimson-glow);
}

/* POLICY CONTENT */
.policy-content {
    min-width: 0;
}

.policy-section {
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-num {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--crimson-glow);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-num::before {
    content: '';
    width: 20px;
    height: 1px;
    background: currentColor;
}

.policy-section h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--text);
}

.policy-section p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
}

.policy-section ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.policy-section ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--crimson-glow);
    flex-shrink: 0;
    margin-top: 9px;
}

.highlight-box {
    background: rgba(192, 22, 14, 0.06);
    border: 1px solid rgba(192, 22, 14, 0.2);
    border-left: 3px solid var(--crimson-glow);
    border-radius: 4px;
    padding: 18px 20px;
    margin: 20px 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.highlight-box strong {
    color: var(--text);
    font-weight: 500;
}

a.inline-link {
    color: var(--crimson-glow);
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 32, 26, 0.3);
    transition: border-color 0.3s;
}

a.inline-link:hover {
    border-color: var(--crimson-glow);
}



@media (max-width: 900px) {
    nav {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    .page-hero {
        padding: 120px 24px 60px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        padding: 48px 24px;
        gap: 40px;
    }

    .toc {
        position: static;
    }


}
[data-theme="light"] .aff-hero {
  background:#da4b4b !important;
}
[data-theme="light"] .aff-hero-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
}
[data-theme="light"] .aff-hero-glow {
  background: radial-gradient(ellipse, rgba(0,0,0,0.15) 0%, transparent 70%);
}
[data-theme="light"] .aff-hero-title { color: #ffffff; }
[data-theme="light"] .aff-hero-title span { color: var(--gold-light) !important; }
[data-theme="light"] .aff-hero-sub { color: rgba(255,255,255,0.8); }
[data-theme="light"] .aff-hero .page-breadcrumb a { color: rgba(255,255,255,0.6); }
[data-theme="light"] .aff-hero .page-breadcrumb span { color: #ffffff; }
[data-theme="light"] .aff-hero .page-tag {
  color: #ffffff;
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
}
[data-theme="light"] .aff-hero .btn-hero-primary {
  background: #ffffff;
  color: var(--crimson);
}
[data-theme="light"] .aff-hero .btn-hero-primary:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
[data-theme="light"] .aff-hero .btn-hero-secondary {
  border-color: rgba(255,255,255,0.4);
  color: #ffffff;
}
[data-theme="light"] .aff-hero .btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #ffffff;
}

.page-hero-inner {
    text-align: center;
}

.page-breadcrumb {
    justify-content: center;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10,10,11,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 99;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.nav-mobile ul li a {
  display: block;
  padding: 12px 16px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.2s;
}
.nav-mobile ul li a:hover { color: var(--text); background: var(--mid); }
.nav-mobile-cta { display: flex; flex-direction: column; gap: 10px; }
.nav-mobile-cta .btn-nav { text-align: center; }

/* Light mode mobile nav */
[data-theme="light"] .nav-mobile {
background: rgb(217 76 76);
  border-bottom-color: rgba(0,0,0,0.2);
}
[data-theme="light"] .nav-mobile ul li a { color: rgba(255,255,255,0.8); }
[data-theme="light"] .nav-mobile ul li a:hover { color: #ffffff; background: rgba(255,255,255,0.1); }
[data-theme="light"] .nav-burger span { background: #ffffff; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn-nav { display: none; }
    .nav-burger {
      display: flex !important;
    }}