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

    :root {
      /* Matches the mobile app's palette (mobile/lib/theme/palette.ts).
         #FF6B35 cannot carry white text — 2.84:1 against a 4.5:1 requirement — so the
         text-bearing orange is the deeper #C2410C (5.18:1) and the original hue stays
         available as --orange-bright for fills that carry no text. */
      --orange:        #C2410C;
      --orange-hover:  #9E340A;
      --orange-bright: #FF6B35;
      --orange-glow:   rgba(194,65,12,0.35);
      --orange-pale:   #FAF0EC;
      --dark:         #1A1A2E;
      --dark-2:       #16213E;
      --dark-3:       #0F3460;
      /* Text-safe values; the vivid originals stay for fills that carry no text —
         the same split as --orange / --orange-bright above. */
      --green:         #0E7A55;
      --green-bright:  #10B981;
      --amber:         #A56100;
      --amber-bright:  #F59E0B;
      --text:         #1A1A2E;
      --muted:        #6B7280;
      --border:       #E5E7EB;
      --bg:           #F9FAFB;
      --white:        #FFFFFF;
      --cream:        #FFFAF3;
      --cream-2:      #FFF2E6;
    }

    html { scroll-behavior: smooth; }

    /* Focus was only visible on form fields, so keyboard users lost their place the
       moment they tabbed onto a link or button. */
    :focus-visible {
      outline: 3px solid var(--orange);
      outline-offset: 3px;
      border-radius: 4px;
    }
    .artisan :focus-visible,
    .statsbar :focus-visible,
    footer :focus-visible,
    .cta-section :focus-visible {
      outline-color: var(--orange-bright);
    }

    /* A keyboard user should be able to skip the nav. */
    .skip-link {
      position: absolute; left: 12px; top: -60px; z-index: 200;
      background: var(--orange); color: white;
      padding: 12px 20px; border-radius: 10px;
      font-size: 14px; font-weight: 700; text-decoration: none;
      transition: top 0.15s;
    }
    .skip-link:focus { top: 12px; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── NAV ───────────────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      height: 68px;
      padding: 0 6%;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(255,250,243,0.9);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(26,26,46,0.08);
      transition: background 0.3s;
    }

    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none;
    }
    .nav-logo-mark {
      width: 42px; height: 42px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
    }
    .nav-logo-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }
    .nav-logo-name {
      font-size: 22px; font-weight: 900;
      color: white; letter-spacing: -0.5px;
    }

    .nav .nav-logo-name { color: var(--text); }

    .nav-links {
      display: flex; align-items: center; gap: 30px; list-style: none;
    }
    .nav-links a {
      color: rgba(26,26,46,0.62); text-decoration: none;
      font-size: 14px; font-weight: 500;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--text); }

    .nav-cta {
      background: var(--orange) !important;
      color: white !important;
      padding: 9px 22px !important;
      border-radius: 8px;
      font-weight: 700 !important;
      font-size: 14px !important;
      transition: background 0.2s, transform 0.15s !important;
    }
    .nav-cta:hover { background: var(--orange-hover) !important; transform: translateY(-1px); }

    .nav-hamburger {
      display: none; background: none; border: none; cursor: pointer; padding: 4px;
    }
    .nav-hamburger svg { color: var(--text); }

    /* ─── HERO ───────────────────────────────── */
    .hero {
      min-height: 100vh;
      padding: 120px 6% 80px;
      display: flex; align-items: center;
      background:
        linear-gradient(90deg, rgba(255,250,243,0.98), rgba(255,250,243,0.9) 46%, rgba(255,242,230,0.74)),
        var(--cream-2);
      position: relative; overflow: hidden;
    }
    .hero::before {
      display: none;
    }
    .hero::after {
      display: none;
    }

    /* subtle dot grid */
    .hero-dots {
      position: absolute; inset: 0; pointer-events: none;
      background-image: radial-gradient(rgba(26,26,46,0.07) 1px, transparent 1px);
      background-size: 32px 32px;
      z-index: 1;
    }

    .hero-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0.74;
      pointer-events: none;
      z-index: 0;
    }

    .hero-inner {
      max-width: 1200px; margin: 0 auto; width: 100%;
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
      position: relative; z-index: 2;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,107,53,0.12);
      border: 1px solid rgba(255,107,53,0.28);
      color: var(--orange);
      padding: 6px 14px; border-radius: 100px;
      font-size: 12px; font-weight: 700; letter-spacing: 0.3px;
      margin-bottom: 22px;
    }
    .hero-badge-dot {
      width: 7px; height: 7px;
      background: var(--orange); border-radius: 50%;
      animation: blink 2s ease-in-out infinite;
    }
    @keyframes blink {
      0%,100% { opacity:1; transform:scale(1); }
      50%      { opacity:0.4; transform:scale(1.4); }
    }

    .hero h1 {
      font-size: clamp(38px, 5vw, 64px);
      font-weight: 900; line-height: 1.08; letter-spacing: -1.5px;
      color: var(--text); margin-bottom: 22px;
    }
    .hero h1 .accent { color: var(--orange); }

    .hero-sub {
      font-size: 18px; color: rgba(26,26,46,0.68);
      line-height: 1.75; margin-bottom: 40px; max-width: 480px;
    }

    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--orange); color: white;
      padding: 15px 30px; border-radius: 12px;
      font-size: 15px; font-weight: 700; text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 8px 28px var(--orange-glow);
    }
    .btn-primary:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 14px 36px var(--orange-glow); }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.82);
      color: var(--text); padding: 15px 28px; border-radius: 12px;
      font-size: 15px; font-weight: 600; text-decoration: none;
      border: 1px solid rgba(26,26,46,0.12);
      transition: all 0.2s;
    }
    .btn-ghost:hover { background: white; transform: translateY(-2px); }

    .hero-trust {
      display: flex; align-items: center; gap: 22px;
      margin-top: 36px; flex-wrap: wrap;
    }
    .hero-trust-item {
      display: flex; align-items: center; gap: 7px;
      font-size: 13px; color: rgba(26,26,46,0.54); font-weight: 500;
    }
    .hero-trust-item svg { color: var(--green); flex-shrink: 0; }

    /* ─── PHONE MOCKUP ───────────────────────── */
    .hero-visual {
      position: relative; height: 560px;
      display: flex; align-items: center; justify-content: center;
    }

    .phone {
      width: 252px; height: 510px;
      border-radius: 42px;
      background: #0d1117;
      border: 2px solid rgba(26,26,46,0.12);
      box-shadow:
        0 34px 90px rgba(26,26,46,0.22),
        inset 0 1px 0 rgba(255,255,255,0.08);
      position: relative; overflow: hidden;
      z-index: 2;
    }
    .phone-pill {
      position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
      width: 90px; height: 26px;
      background: rgba(255,255,255,0.08); border-radius: 13px;
      z-index: 10;
      display: flex; align-items: center; justify-content: center; gap: 6px;
    }
    .phone-camera {
      width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15);
    }
    .phone-speaker {
      width: 36px; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.1);
    }

    .phone-screen {
      position: absolute; inset: 0;
      padding: 58px 14px 16px;
      background: linear-gradient(180deg, #fffaf3 0%, #f8fafc 100%);
      display: flex; flex-direction: column; gap: 10px;
    }

    .ps-header {
      display: flex; align-items: center; justify-content: space-between;
    }
    .ps-greeting { font-size: 9px; color: rgba(26,26,46,0.46); }
    .ps-name { font-size: 13px; font-weight: 700; color: var(--text); }
    .ps-avatar {
      width: 28px; height: 28px; border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), #ff9a6c);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 700; color: white;
    }

    .ps-prompt {
      font-size: 10px; color: rgba(26,26,46,0.52);
      margin-top: 2px; margin-bottom: 2px;
    }

    .ps-cats {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 6px;
    }
    .ps-cat {
      background: white;
      border-radius: 10px; padding: 10px 4px;
      text-align: center;
      display: flex; flex-direction: column; align-items: center; gap: 4px;
      border: 1px solid var(--border);
    }
    .ps-cat-icon svg {
      width: 18px; height: 18px;
      color: var(--orange);
      fill: none; stroke: currentColor; stroke-width: 2;
      stroke-linecap: round; stroke-linejoin: round;
    }
    .ps-cat-label { font-size: 7.5px; color: rgba(26,26,46,0.58); font-weight: 500; }

    .ps-label { font-size: 9px; font-weight: 700; color: rgba(26,26,46,0.42); text-transform: uppercase; letter-spacing: 0.5px; }

    .ps-active-job {
      background: rgba(255,107,53,0.1);
      border: 1px solid rgba(255,107,53,0.22);
      border-radius: 12px; padding: 12px;
    }
    .ps-job-row { display: flex; align-items: center; justify-content: space-between; }
    .ps-job-title { font-size: 10px; font-weight: 700; color: var(--text); }
    .ps-job-status {
      font-size: 7.5px; font-weight: 700;
      background: var(--orange); color: white;
      padding: 3px 7px; border-radius: 20px;
    }
    .ps-job-addr { display: flex; align-items: center; gap: 3px; font-size: 8.5px; color: rgba(26,26,46,0.52); margin-top: 4px; }
    .ps-job-addr svg { width: 9px; height: 9px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
    .ps-job-eta { font-size: 8px; color: rgba(26,26,46,0.4); margin-top: 2px; }

    .ps-quote-pill {
      display: flex; align-items: center; gap: 8px;
      background: white;
      border-radius: 10px; padding: 9px 10px;
      border: 1px solid var(--border);
    }
    .ps-q-avatar {
      width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, #0F3460, #16213E);
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.7);
    }
    .ps-q-name { font-size: 9.5px; font-weight: 600; color: var(--text); }
    .ps-q-stars { display: flex; gap: 1.5px; margin-top: 1px; }
    .ps-q-star { width: 8px; height: 8px; fill: var(--amber-bright); color: var(--amber-bright); }
    .ps-q-price { font-size: 12px; font-weight: 900; color: var(--orange); margin-left: auto; }

    /* Floating cards */
    .fcard {
      position: absolute;
      background: white;
      border-radius: 16px;
      padding: 14px 16px;
      box-shadow: 0 20px 60px rgba(26,26,46,0.14);
    }
    .fcard-1 { top: 36px; right: -36px; width: 170px; animation: float 3.2s ease-in-out infinite; }
    .fcard-2 { bottom: 60px; left: -40px; width: 162px; animation: float 3.2s ease-in-out infinite 1.6s; }

    @keyframes float {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-10px); }
    }

    .fc-label {
      font-size: 9.5px; font-weight: 700; color: var(--muted);
      text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px;
    }
    .fc-name { font-size: 14px; font-weight: 800; color: var(--text); }
    .fc-sub { font-size: 11px; color: var(--muted); margin-top: 1px; }
    .fc-stars { display: flex; gap: 2px; margin-top: 5px; }
    .fc-star {
      width: 11px; height: 11px;
      background: var(--amber);
      clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
    }
    .fc-price { font-size: 18px; font-weight: 900; color: var(--orange); margin-top: 6px; }
    .fc-row {
      display: flex; align-items: center; gap: 5px; margin-top: 7px;
    }
    .fc-check { width: 14px; height: 14px; color: var(--green); }
    .fc-check-text { font-size: 10.5px; font-weight: 600; color: var(--green); }

    /* ─── STATS BAR ───────────────────────────── */
    .statsbar {
      background: var(--dark);
      padding: 44px 6%;
    }
    .statsbar-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4,1fr); gap: 32px;
    }
    .stat { text-align: center; }
    .stat-n {
      font-size: clamp(32px,3.5vw,44px); font-weight: 900;
      color: var(--orange-bright); line-height: 1;
    }
    .stat-l {
      font-size: 13px; color: rgba(255,255,255,0.45);
      margin-top: 6px; font-weight: 500;
    }

    /* ─── SHARED SECTION STYLES ───────────────── */
    .section-tag {
      display: inline-block;
      font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
      color: var(--orange); margin-bottom: 10px;
    }
    .section-h {
      font-size: clamp(28px,3.5vw,44px);
      font-weight: 900; letter-spacing: -0.5px; line-height: 1.13;
      color: var(--text); margin-bottom: 14px;
    }
    .section-p {
      font-size: 17px; color: var(--muted); line-height: 1.75; max-width: 540px;
    }
    .section-head { margin-bottom: 60px; }
    .center { text-align: center; }
    .section-head.center .section-p { margin-left: auto; margin-right: auto; }

    /* ─── HOW IT WORKS ───────────────────────── */
    .how {
      padding: 108px 6%;
      background: var(--white);
    }
    .how-inner { max-width: 1200px; margin: 0 auto; }

    .steps {
      display: grid; grid-template-columns: repeat(4,1fr); gap: 40px;
      position: relative;
    }
    .steps::before {
      content: '';
      position: absolute; top: 27px;
      left: calc(12.5% + 24px); right: calc(12.5% + 24px);
      height: 2px;
      background: linear-gradient(90deg, var(--orange) 0%, rgba(255,107,53,0.15) 100%);
    }

    .step-num {
      width: 54px; height: 54px;
      background: var(--orange); color: white;
      font-size: 20px; font-weight: 900;
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      box-shadow: 0 8px 24px rgba(255,107,53,0.38);
      position: relative; z-index: 1;
    }

    .step h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
    .step p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

    /* ─── SERVICES ───────────────────────────── */
    .services {
      padding: 108px 6%;
      background: var(--bg);
    }
    .services-inner { max-width: 1200px; margin: 0 auto; }

    .svc-grid {
      display: grid; grid-template-columns: repeat(5,1fr); gap: 16px;
    }
    .svc-card {
      background: var(--white);
      border-radius: 18px; padding: 28px 16px;
      text-align: center;
      border: 1.5px solid var(--border);
      cursor: pointer;
      transition: all 0.22s;
    }
    .svc-card:hover {
      border-color: var(--orange);
      transform: translateY(-5px);
      box-shadow: 0 14px 36px rgba(255,107,53,0.12);
    }
    .svc-icon {
      width: 58px; height: 58px;
      background: var(--orange-pale);
      border-radius: 17px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px;
      transition: background 0.22s;
    }
    .svc-card:hover .svc-icon { background: var(--orange); }
    .svc-icon svg { width: 28px; height: 28px; color: var(--orange); transition: color 0.22s; }
    .svc-card:hover .svc-icon svg { color: white; }
    .svc-name { font-size: 13px; font-weight: 700; color: var(--text); }

    /* ─── FEATURES ───────────────────────────── */
    .features {
      padding: 108px 6%;
      background: var(--white);
    }
    .features-inner { max-width: 1200px; margin: 0 auto; }

    .feat-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
    }
    .feat-card {
      background: var(--bg);
      border-radius: 22px; padding: 36px 30px;
      border: 1.5px solid var(--border);
      transition: all 0.22s;
    }
    .feat-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 48px rgba(0,0,0,0.07);
      border-color: var(--orange);
    }
    .feat-icon {
      width: 54px; height: 54px;
      background: var(--orange);
      border-radius: 15px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 22px;
      box-shadow: 0 6px 20px rgba(255,107,53,0.32);
    }
    .feat-icon svg { width: 26px; height: 26px; color: white; }
    .feat-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
    .feat-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

    /* ─── CUSTOMERS ───────────────────────────── */
    .customers {
      padding: 108px 6%;
      background:
        linear-gradient(135deg, rgba(255,107,53,0.08) 0%, rgba(255,255,255,0) 45%),
        var(--white);
    }
    .customers-inner { max-width: 1200px; margin: 0 auto; }

    .customer-grid {
      display: grid; grid-template-columns: 1.15fr 0.92fr 0.92fr; gap: 18px;
    }
    .customer-panel {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 22px;
      padding: 32px;
      min-height: 260px;
      box-shadow: 0 18px 48px rgba(15,52,96,0.06);
      transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
    }
    .customer-panel:first-child {
      background: var(--orange-pale);
      border-color: rgba(255,107,53,0.22);
    }
    .customer-panel:hover {
      transform: translateY(-5px);
      border-color: var(--orange);
      box-shadow: 0 22px 56px rgba(255,107,53,0.12);
    }
    .panel-kicker {
      display: inline-block;
      color: var(--orange);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.9px;
      text-transform: uppercase;
      margin-bottom: 22px;
    }
    .customer-panel h3 {
      font-size: 21px;
      line-height: 1.22;
      margin-bottom: 12px;
      color: var(--text);
    }
    .customer-panel p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.75;
    }

    /* ─── TRUST ───────────────────────────────── */
    .trust {
      padding: 108px 6%;
      background: var(--bg);
    }
    .trust-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 60px;
      align-items: start;
    }
    .trust-copy {
      position: sticky;
      top: 96px;
    }
    .trust-stack {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .trust-card {
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 18px;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 22px;
      padding: 26px;
      box-shadow: 0 16px 42px rgba(0,0,0,0.045);
    }
    .trust-num {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: var(--orange);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 900;
      box-shadow: 0 10px 24px rgba(255,107,53,0.28);
    }
    .trust-card h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }
    .trust-card p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.72;
    }

    /* ─── ARTISAN ─────────────────────────────── */
    .artisan {
      padding: 108px 6%;
      background: var(--dark);
      position: relative; overflow: hidden;
    }
    .artisan::before {
      content: '';
      position: absolute; top: -30%; right: -8%;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 65%);
      pointer-events: none;
    }
    .artisan-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
      position: relative; z-index: 1;
    }

    /* The deep orange drops to 3.3:1 on this navy, so anything orange inside the dark
     sections uses the bright hue — the same swap the app makes in dark mode. */
    .artisan .section-tag { color: var(--orange-bright); }
    .artisan .section-h { color: white; }
    .artisan .section-p { color: rgba(255,255,255,0.5); }

    .a-benefits { margin-top: 36px; display: flex; flex-direction: column; gap: 22px; }
    .a-benefit { display: flex; align-items: flex-start; gap: 14px; }
    .a-b-icon {
      width: 42px; height: 42px; flex-shrink: 0;
      background: rgba(255,107,53,0.12);
      border-radius: 11px;
      display: flex; align-items: center; justify-content: center;
    }
    .a-b-icon svg { width: 20px; height: 20px; color: var(--orange-bright); }
    .a-benefit h4 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 3px; }
    .a-benefit p  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

    .artisan-actions {
      margin-top: 36px;
    }

    .a-cards { display: flex; flex-direction: column; gap: 14px; }
    .a-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px; padding: 22px 24px;
      display: flex; align-items: center; gap: 18px;
      transition: border-color 0.2s;
    }
    .a-card:hover { border-color: rgba(255,107,53,0.3); }
    .a-card-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      background: rgba(255,107,53,0.1);
      border-radius: 13px;
      display: flex; align-items: center; justify-content: center;
    }
    .a-card-icon svg { width: 24px; height: 24px; color: var(--orange-bright); }
    .a-card-val { font-size: 26px; font-weight: 900; color: white; line-height: 1; }
    .a-card-lbl { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 4px; }

    /* ─── LAUNCH ──────────────────────────────── */
    .launch {
      padding: 108px 6%;
      background:
        linear-gradient(135deg, #fff7f2 0%, #f8fbff 100%);
    }
    .launch-inner { max-width: 1200px; margin: 0 auto; }
    .launch-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 18px;
    }
    .launch-card {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 22px;
      padding: 28px;
      min-height: 220px;
      box-shadow: 0 18px 46px rgba(15,52,96,0.055);
    }
    .launch-card span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 12px;
      background: var(--dark);
      color: var(--white);
      font-size: 12px;
      font-weight: 900;
      margin-bottom: 24px;
    }
    .launch-card h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }
    .launch-card p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.72;
    }
    .launch-metrics {
      margin-top: 24px;
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 14px;
    }
    .launch-metrics div {
      background: var(--dark);
      border-radius: 18px;
      padding: 24px;
      min-height: 132px;
    }
    .launch-metrics strong {
      display: block;
      color: var(--orange-bright);
      font-size: clamp(30px,3.2vw,42px);
      line-height: 1;
    }
    .launch-metrics span {
      display: block;
      color: rgba(255,255,255,0.5);
      font-size: 12px;
      font-weight: 600;
      margin-top: 10px;
      line-height: 1.45;
    }

    /* ─── WAITLIST ────────────────────────────── */
    .waitlist {
      padding: 108px 6%;
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }
    .waitlist::before {
      content: '';
      position: absolute;
      left: -12%;
      top: -40%;
      width: 560px;
      height: 560px;
      background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 65%);
      pointer-events: none;
    }
    .waitlist-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.82fr 1fr;
      gap: 52px;
      align-items: start;
      position: relative;
      z-index: 1;
    }
    .waitlist .section-h { color: var(--white); }
    .waitlist .section-p { color: rgba(255,255,255,0.52); }

    .waitlist-form {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 16px;
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 24px;
      padding: 28px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.28);
    }
    .waitlist-form label {
      display: flex;
      flex-direction: column;
      gap: 8px;
      color: rgba(255,255,255,0.58);
      font-size: 12px;
      font-weight: 700;
    }
    .waitlist-form input,
    .waitlist-form select {
      min-height: 48px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.11);
      background: rgba(255,255,255,0.07);
      color: var(--white);
      padding: 0 14px;
      outline: none;
    }
    .waitlist-form input::placeholder { color: rgba(255,255,255,0.28); }
    .waitlist-form select { color-scheme: dark; }
    .waitlist-form input:focus,
    .waitlist-form select:focus {
      border-color: rgba(255,107,53,0.74);
      box-shadow: 0 0 0 4px rgba(255,107,53,0.14);
    }
    .form-submit {
      border: 0;
      cursor: pointer;
      justify-content: center;
      grid-column: span 2;
    }
    .form-note {
      color: rgba(255,255,255,0.38);
      font-size: 12px;
      align-self: center;
      grid-column: span 2;
    }
    .form-note.success { color: #7de3ac; }
    /* The resting note is 38% white, which is fine for a passive "no spam"
       line but disappears when it has to carry a live status. Both states
       below raise it to something a person can actually read. */
    .form-note.error   { color: #ff9b8f; }
    .form-note.pending { color: rgba(255,255,255,0.72); }

    .form-submit:disabled { opacity: 0.62; cursor: progress; }

    /* ─── CTA ─────────────────────────────────── */
    .cta-section {
      padding: 108px 6%;
      background: linear-gradient(135deg, var(--orange) 0%, #a8380a 100%);
      text-align: center;
    }
    .cta-inner { max-width: 680px; margin: 0 auto; }
    .cta-inner h2 {
      font-size: clamp(32px,4.5vw,54px);
      font-weight: 900; letter-spacing: -0.5px; line-height: 1.1;
      color: white; margin-bottom: 16px;
    }
    .cta-inner p {
      font-size: 18px; color: rgba(255,255,255,0.95); line-height: 1.65; margin-bottom: 40px;
    }
    .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

    .btn-cta-w {
      display: inline-flex; align-items: center; gap: 8px;
      background: white; color: var(--orange);
      padding: 16px 36px; border-radius: 12px;
      font-size: 16px; font-weight: 800; text-decoration: none;
      box-shadow: 0 8px 28px rgba(0,0,0,0.18);
      transition: all 0.2s;
    }
    .btn-cta-w:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.24); }

    .btn-cta-o {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.14);
      color: white;
      padding: 16px 36px; border-radius: 12px;
      font-size: 16px; font-weight: 700; text-decoration: none;
      border: 2px solid rgba(255,255,255,0.28);
      transition: all 0.2s;
    }
    .btn-cta-o:hover { background: rgba(255,255,255,0.24); transform: translateY(-2px); }

    /* ─── FOOTER ──────────────────────────────── */
    footer {
      background: #0d0d1a;
      padding: 70px 6% 32px;
    }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-logo {
      display: inline-flex;
      align-items: center;
      width: 220px;
      max-width: 100%;
      text-decoration: none;
    }
    .footer-logo img {
      width: 100%;
      height: auto;
      display: block;
    }

    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand-text {
      font-size: 13.5px; color: rgba(255,255,255,0.56);
      line-height: 1.75; margin-top: 18px; max-width: 300px;
    }
    .footer-col h4 {
      font-size: 11.5px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.7px; color: rgba(255,255,255,0.62); margin-bottom: 16px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .footer-links a {
      font-size: 14px; color: rgba(255,255,255,0.54); text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--orange-bright); }

    .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin-bottom: 24px; }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer-copy { font-size: 13px; color: rgba(255,255,255,0.38); }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a {
      font-size: 13px; color: rgba(255,255,255,0.38);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-bottom-links a:hover { color: var(--orange-bright); }

    /* ─── RESPONSIVE ──────────────────────────── */
    @media (max-width: 1024px) {
      .steps { grid-template-columns: repeat(2,1fr); }
      .steps::before { display: none; }
      .svc-grid { grid-template-columns: repeat(4,1fr); }
      .feat-grid { grid-template-columns: repeat(2,1fr); }
      .customer-grid { grid-template-columns: 1fr 1fr; }
      .trust-inner,
      .waitlist-inner { grid-template-columns: 1fr; }
      .trust-copy { position: static; }
      .launch-metrics { grid-template-columns: repeat(2,1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 840px) {
      .nav-links {
        display: none;
        position: fixed;
        top: 68px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        background: rgba(255,250,243,0.98);
        border: 1px solid rgba(26,26,46,0.08);
        border-radius: 16px;
        box-shadow: 0 24px 70px rgba(26,26,46,0.14);
      }
      .nav-links.open { display: flex; }
      .nav-links a {
        display: block;
        padding: 13px 12px;
      }
      .nav-cta { text-align: center; margin-top: 8px; }
      .nav-hamburger { display: block; }
      .hero-inner { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .hero h1 { font-size: clamp(34px,8vw,50px); }
      .hero-btns { justify-content: flex-start; }
      .statsbar-inner { grid-template-columns: repeat(2,1fr); }
      .artisan-inner { grid-template-columns: 1fr; }
      .svc-grid { grid-template-columns: repeat(3,1fr); }
      .customer-grid,
      .launch-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 560px) {
      .nav-logo-mark { width: 38px; height: 38px; }
      .hero { padding-top: 104px; }
      .svc-grid { grid-template-columns: repeat(2,1fr); }
      .steps { grid-template-columns: 1fr; }
      .feat-grid { grid-template-columns: 1fr; }
      .statsbar-inner { gap: 20px; }
      .trust-card { grid-template-columns: 1fr; }
      .launch-metrics,
      .waitlist-form { grid-template-columns: 1fr; }
      .form-submit,
      .form-note { grid-column: auto; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    }

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

    /* ─── SCROLL FADE-IN ──────────────────────── */
    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
