:root {
      --bg0: #010806;
      --bg1: #05140f;
      --bg2: #0a251c;
      --surface: rgba(6, 45, 34, 0.45);
      --surface2: rgba(15, 60, 45, 0.35);
      --accent: #10b981;
      --accent-bright: #34d399;
      --accent-dim: #047857;
      --gold: #c9a227;
      --gold-soft: rgba(201, 162, 39, 0.35);
      --text: #ecfdf5;
      --muted: #9ca3af;
      --muted2: #6b7280;
      --border: rgba(52, 211, 153, 0.14);
      --glow: rgba(16, 185, 129, 0.25);
      --shadow: 0 32px 100px rgba(0, 0, 0, 0.55);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "DM Sans", system-ui, sans-serif;
      background: var(--bg0);
      color: var(--text);
      line-height: 1.55;
      min-height: 100vh;
      overflow-x: hidden;
    }
    .bg-mesh {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background:
        radial-gradient(ellipse 100% 60% at 10% -10%, rgba(16, 185, 129, 0.22), transparent 50%),
        radial-gradient(ellipse 80% 50% at 90% 20%, rgba(5, 120, 87, 0.2), transparent 55%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201, 162, 39, 0.06), transparent 45%),
        linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 40%, #020f0b 100%);
    }
    .noise {
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.035;
      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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      z-index: 0;
    }
    .wrap {
      position: relative;
      z-index: 1;
      max-width: 1160px;
      margin: 0 auto;
      padding: 1.75rem 1.25rem 4rem;
    }
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }
    .logo-img { height: 44px; width: auto; display: block; }
    .nav-links { display: flex; align-items: center; gap: 0.25rem; flex-wrap: wrap; }
    .nav-a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 500;
      padding: 0.5rem 0.9rem;
      border-radius: 999px;
      transition: color 0.2s, background 0.2s;
    }
    .nav-a:hover { color: var(--text); background: rgba(16, 185, 129, 0.08); }
    .nav-cta {
      background: linear-gradient(135deg, var(--accent-dim), var(--accent)) !important;
      color: #fff !important;
      box-shadow: 0 8px 32px var(--glow);
    }
    .nav-cta:hover { filter: brightness(1.06); }

    .hero {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      align-items: center;
      margin-bottom: 4rem;
    }
    @media (min-width: 960px) {
      .hero { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .eyebrow::before {
      content: "";
      width: 28px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      border-radius: 2px;
    }
    h1 {
      font-family: "Syne", sans-serif;
      font-weight: 800;
      font-size: clamp(2.15rem, 4.8vw, 3.5rem);
      line-height: 1.06;
      letter-spacing: -0.035em;
      margin-bottom: 1.25rem;
    }
    h1 .grad {
      background: linear-gradient(105deg, #fff 0%, var(--accent-bright) 45%, var(--gold) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .hero-lead {
      color: var(--muted);
      font-size: 1.125rem;
      max-width: 34rem;
      margin-bottom: 1.75rem;
    }
    .pill-row { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.75rem; }
    .pill {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.4rem 0.85rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: var(--surface2);
      color: var(--accent-bright);
    }
    .pill.gold { border-color: var(--gold-soft); color: var(--gold); background: rgba(201, 162, 39, 0.06); }
    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
      max-width: 26rem;
    }
    .stat {
      padding: 1rem 0.85rem;
      border-radius: 16px;
      background: var(--surface);
      border: 1px solid var(--border);
      backdrop-filter: blur(14px);
    }
    .stat b {
      font-family: "Syne", sans-serif;
      font-size: 1.45rem;
      display: block;
      background: linear-gradient(90deg, var(--accent-bright), #a3e635);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .stat span { font-size: 0.72rem; color: var(--muted2); }

    .hero-visual {
      position: relative;
      border-radius: 22px;
      padding: 1.25rem;
      background: linear-gradient(145deg, rgba(16, 185, 129, 0.08), rgba(1, 8, 6, 0.9));
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }
    .mock-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
      padding-bottom: 0.75rem;
      border-bottom: 1px solid var(--border);
    }
    .mock-dots { display: flex; gap: 6px; }
    .mock-dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--muted2); opacity: 0.5; }
    .mock-dots span:first-child { background: #f87171; opacity: 1; }
    .mock-dots span:nth-child(2) { background: #fbbf24; opacity: 1; }
    .mock-dots span:nth-child(3) { background: #4ade80; opacity: 1; }
    .mock-title { font-size: 0.7rem; color: var(--muted2); letter-spacing: 0.08em; text-transform: uppercase; }
    .mock-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 0.65rem;
    }
    .mock-panel {
      border-radius: 12px;
      background: rgba(0, 0, 0, 0.35);
      border: 1px solid rgba(52, 211, 153, 0.1);
      min-height: 120px;
      position: relative;
      overflow: hidden;
    }
    .mock-panel::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 48%;
      background: linear-gradient(180deg, transparent, rgba(16, 185, 129, 0.12));
    }
    .mock-bars { padding: 0.85rem; display: flex; align-items: flex-end; gap: 6px; height: 110px; }
    .mock-bars i {
      flex: 1;
      border-radius: 4px 4px 0 0;
      background: linear-gradient(180deg, var(--accent-bright), var(--accent-dim));
      opacity: 0.85;
    }
    .mock-bars i:nth-child(2) { height: 72%; }
    .mock-bars i:nth-child(3) { height: 48%; }
    .mock-bars i:nth-child(4) { height: 90%; }
    .mock-bars i:nth-child(5) { height: 58%; }
    .mock-side { padding: 0.75rem; font-size: 0.7rem; color: var(--muted); line-height: 1.5; }
    .mock-side strong { color: var(--accent-bright); display: block; margin-bottom: 0.35rem; font-size: 0.65rem; letter-spacing: 0.1em; }

    .card-form {
      border-radius: 22px;
      background: linear-gradient(165deg, rgba(6, 45, 34, 0.55), rgba(2, 12, 9, 0.85));
      border: 1px solid var(--border);
      backdrop-filter: blur(18px);
      padding: 2rem 2rem 1.75rem;
      box-shadow: var(--shadow), 0 0 0 1px rgba(52, 211, 153, 0.05) inset;
    }
    .card-form h2 {
      font-family: "Syne", sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.35rem;
    }
    .card-form p.sub {
      color: var(--muted);
      font-size: 0.88rem;
      margin-bottom: 1.4rem;
      line-height: 1.45;
    }
    label {
      display: block;
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--muted2);
      margin-bottom: 0.35rem;
    }
    input, textarea {
      width: 100%;
      padding: 0.78rem 1rem;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: rgba(1, 10, 8, 0.65);
      color: var(--text);
      font-family: inherit;
      font-size: 0.98rem;
      margin-bottom: 0.95rem;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    input:focus, textarea:focus {
      outline: none;
      border-color: rgba(16, 185, 129, 0.55);
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
    }
    textarea { min-height: 100px; resize: vertical; }
    button[type="submit"] {
      width: 100%;
      padding: 1rem 1.25rem;
      border: none;
      border-radius: 12px;
      font-family: "Syne", sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.02em;
      cursor: pointer;
      color: #04140f;
      background: linear-gradient(135deg, #a3e635, var(--accent));
      box-shadow: 0 16px 48px rgba(16, 185, 129, 0.32);
      transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
    }
    button[type="submit"]:hover {
      transform: translateY(-2px);
      filter: brightness(1.05);
      box-shadow: 0 22px 56px rgba(16, 185, 129, 0.38);
    }
    button[type="submit"]:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
    .form-msg { margin-top: 0.9rem; font-size: 0.88rem; min-height: 1.4em; }
    .form-msg.ok { color: var(--accent-bright); }
    .form-msg.err { color: #f87171; }

    section { margin-top: 4rem; }
    section h3 {
      font-family: "Syne", sans-serif;
      font-size: clamp(1.35rem, 3vw, 1.75rem);
      font-weight: 700;
      text-align: center;
      margin-bottom: 0.5rem;
      letter-spacing: -0.02em;
    }
    .section-lead {
      text-align: center;
      color: var(--muted);
      max-width: 36rem;
      margin: 0 auto 2.25rem;
      font-size: 0.95rem;
    }
    .feat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1rem;
    }
    .feat {
      padding: 1.5rem 1.35rem;
      border-radius: 18px;
      background: var(--surface);
      border: 1px solid var(--border);
      transition: border-color 0.2s, transform 0.2s;
    }
    .feat:hover {
      border-color: rgba(52, 211, 153, 0.28);
      transform: translateY(-2px);
    }
    .feat-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(5, 120, 87, 0.35));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.9rem;
      font-size: 1.15rem;
    }
    .feat h4 { font-family: "Syne", sans-serif; font-size: 1.05rem; margin-bottom: 0.45rem; font-weight: 700; }
    .feat p { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      counter-reset: step;
    }
    .step {
      padding: 1.35rem;
      border-radius: 16px;
      border: 1px solid var(--border);
      background: rgba(2, 20, 15, 0.5);
      position: relative;
      padding-left: 3.25rem;
    }
    .step::before {
      counter-increment: step;
      content: counter(step);
      position: absolute;
      left: 1rem;
      top: 1.2rem;
      width: 1.75rem;
      height: 1.75rem;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--accent), var(--accent-dim));
      color: #02120d;
      font-family: "Syne", sans-serif;
      font-weight: 800;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .step h4 { font-family: "Syne", sans-serif; font-size: 0.95rem; margin-bottom: 0.35rem; }
    .step p { font-size: 0.82rem; color: var(--muted); line-height: 1.45; }

    .quote {
      margin-top: 3rem;
      padding: 2rem 2rem 2rem 2.25rem;
      border-left: 3px solid var(--accent);
      border-radius: 0 16px 16px 0;
      background: rgba(6, 45, 34, 0.25);
      font-size: 1.05rem;
      font-style: italic;
      color: var(--muted);
      max-width: 42rem;
      margin-left: auto;
      margin-right: auto;
    }
    .quote footer { margin-top: 1rem; font-style: normal; font-size: 0.8rem; color: var(--accent-bright); font-weight: 600; }

    footer.site-footer {
      margin-top: 4rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      text-align: center;
      color: var(--muted2);
      font-size: 0.82rem;
      line-height: 1.65;
    }

    .inner-hero {
      margin-bottom: 2.5rem;
    }
    .inner-hero h1 {
      font-family: "Syne", sans-serif;
      font-weight: 800;
      font-size: clamp(1.75rem, 3.5vw, 2.4rem);
      letter-spacing: -0.03em;
      margin-bottom: 0.65rem;
    }
    .inner-hero p.lead {
      color: var(--muted);
      max-width: 40rem;
      font-size: 1.05rem;
    }
    .nav-a.nav-active {
      color: var(--accent-bright);
      background: rgba(16, 185, 129, 0.1);
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1rem;
      margin-bottom: 2.5rem;
    }
    .price-card {
      padding: 1.5rem 1.35rem;
      border-radius: 18px;
      border: 1px solid var(--border);
      background: var(--surface);
      display: flex;
      flex-direction: column;
    }
    .price-card.featured {
      border-color: rgba(52, 211, 153, 0.45);
      box-shadow: 0 0 40px rgba(16, 185, 129, 0.12);
    }
    .price-card h2 {
      font-family: "Syne", sans-serif;
      font-size: 1.15rem;
      margin-bottom: 0.35rem;
    }
    .price-card .tag {
      font-size: 0.72rem;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.75rem;
    }
    .price-amount {
      font-family: "Syne", sans-serif;
      font-size: 1.85rem;
      font-weight: 800;
      margin-bottom: 1rem;
      background: linear-gradient(90deg, var(--accent-bright), #a3e635);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .price-card ul {
      list-style: none;
      margin: 0 0 1rem;
      padding: 0;
      flex: 1;
    }
    .price-card li {
      position: relative;
      padding-left: 1.1rem;
      margin-bottom: 0.5rem;
      font-size: 0.88rem;
      color: var(--muted);
    }
    .price-card li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--accent-bright);
      font-size: 0.75rem;
    }
    .calc-box {
      padding: 1.5rem;
      border-radius: 18px;
      border: 1px solid var(--border);
      background: rgba(2, 20, 15, 0.65);
      margin-bottom: 2rem;
    }
    .calc-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    .calc-row label {
      display: inline-block;
      margin-bottom: 0;
      min-width: 180px;
    }
    .calc-row input[type="range"] {
      flex: 1;
      min-width: 120px;
      accent-color: var(--accent);
    }
    #calc-result {
      font-size: 1rem;
      color: var(--accent-bright);
      font-weight: 600;
    }
    .checklist {
      max-width: 40rem;
      margin: 0 auto;
    }
    .checklist li {
      margin-bottom: 0.85rem;
      padding-left: 0.25rem;
    }
    .prose {
      max-width: 44rem;
      margin: 0 auto;
    }
    .prose h2 {
      font-family: "Syne", sans-serif;
      font-size: 1.25rem;
      margin: 2rem 0 0.75rem;
    }
    .prose p,
    .prose ul {
      color: var(--muted);
      margin-bottom: 0.85rem;
      font-size: 0.95rem;
    }
    .prose ul {
      padding-left: 1.25rem;
    }
    .prose li {
      margin-bottom: 0.4rem;
    }
    .footer-links {
      margin-top: 0.75rem;
    }
    .footer-links a {
      color: var(--muted);
      margin: 0 0.5rem;
    }
