:root {
      --ink: #101114;
      --ink-soft: #25262b;
      --cream: #f7f2e9;
      --paper: #fffdf8;
      --orange: #f58231;
      --orange-dark: #e06d1c;
      --purple: #6547e9;
      --yellow: #f2c35b;
      --line: rgba(16, 17, 20, .14);
      --muted: #66656a;
      --radius: 22px;
      --shadow: 0 18px 50px rgba(17, 17, 20, .12);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
    body {
      margin: 0;
      background: var(--cream);
      color: var(--ink);
      font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
      line-height: 1.5;
      overflow-x: hidden;
      overflow-x: clip;
      max-width: 100%;
    }

    a { color: inherit; text-decoration: none; }
    button { font: inherit; }
    .wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
    .section { padding: 104px 0; }
    .eyebrow {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      margin: 0 0 18px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--orange); border-radius: 4px; }
    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3 { letter-spacing: -.04em; line-height: 1.02; }
    h1 { font-size: clamp(48px, 7vw, 88px); margin-bottom: 24px; }
    h2 { font-size: clamp(38px, 5vw, 64px); margin-bottom: 22px; }
    h3 { font-size: 26px; margin-bottom: 12px; }
    .lede { font-size: clamp(18px, 2vw, 22px); color: var(--muted); max-width: 670px; }
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 22px;
      border: 2px solid var(--ink);
      border-radius: 999px;
      background: var(--orange);
      color: #fff;
      box-shadow: 4px 4px 0 var(--ink);
      font-weight: 800;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); background: #f58b4f; }
    .button.secondary { background: transparent; box-shadow: none; color: var(--ink); }
    .button.dark { color: white; background: var(--ink); border-color: var(--ink); box-shadow: 4px 4px 0 var(--orange); }

    .topline {
      background: var(--ink);
      color: white;
      padding: 9px 20px;
      text-align: center;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .topline span { color: var(--yellow); }

    .nav-shell { position: sticky; top: 0; z-index: 20; padding: 14px 0; background: rgba(247, 242, 233, .88); backdrop-filter: blur(14px); border-bottom: 1px solid transparent; }
    nav {
      min-height: 68px;
      padding: 0 10px 0 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: 2px solid var(--ink);
      border-radius: 18px;
      background: var(--paper);
      box-shadow: 5px 5px 0 var(--ink);
    }
    .logo { display: flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 900; letter-spacing: -.04em; }
    .logo-mark {
      width: 36px;
      height: 36px;
      display: block;
      border: 0;
      border-radius: 0;
      background: transparent;
      object-fit: contain;
      flex-shrink: 0;
    }
    .nav-links { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 750; }
    .nav-links a:not(.button):hover { color: var(--orange-dark); }
    .menu-button { display: none; border: 0; background: transparent; font-weight: 900; font-size: 22px; cursor: pointer; color: var(--ink); }

    .nav-dropdown { position: relative; }
    .nav-dropdown__toggle {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 0;
      border: 0;
      background: transparent;
      color: inherit;
      font: inherit;
      font-weight: 750;
      cursor: pointer;
    }
    .nav-dropdown__toggle:hover,
    .nav-dropdown:hover .nav-dropdown__toggle,
    .nav-dropdown.is-open .nav-dropdown__toggle,
    .nav-dropdown:focus-within .nav-dropdown__toggle {
      color: var(--orange-dark);
    }
    .nav-dropdown__toggle [data-lucide] {
      width: 16px;
      height: 16px;
      transition: transform .2s ease;
    }
    .nav-dropdown.is-open .nav-dropdown__toggle [data-lucide],
    .nav-dropdown:hover .nav-dropdown__toggle [data-lucide],
    .nav-dropdown:focus-within .nav-dropdown__toggle [data-lucide] {
      transform: rotate(180deg);
    }
    .nav-dropdown__menu {
      display: none;
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%);
      min-width: 190px;
      padding: 10px;
      border: 2px solid var(--ink);
      border-radius: 14px;
      background: var(--paper);
      box-shadow: 4px 4px 0 var(--ink);
      z-index: 30;
    }
    .nav-dropdown__menu::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: -14px;
      height: 14px;
    }
    .nav-dropdown__menu a {
      display: block;
      padding: 10px 12px;
      border-radius: 10px;
      font-weight: 750;
    }
    .nav-dropdown__menu a:hover {
      background: rgba(239, 124, 61, .12);
      color: var(--orange-dark);
    }
    .nav-dropdown.is-open .nav-dropdown__menu,
    .nav-dropdown:hover .nav-dropdown__menu,
    .nav-dropdown:focus-within .nav-dropdown__menu {
      display: grid;
      gap: 2px;
    }


    .hero { position: relative; padding: 82px 0 52px; }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0 0 8% 44%;
      background-image: radial-gradient(rgba(16,17,20,.14) 1.1px, transparent 1.1px);
      background-size: 22px 22px;
      mask-image: linear-gradient(to right, transparent, #000 20%, #000 75%, transparent);
      pointer-events: none;
    }
    .hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 56px; align-items: center; }
    .hero-copy { position: relative; z-index: 2; }
    .hero h1 span { color: var(--orange-dark); }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 30px; }
    .micro-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; color: var(--muted); font-size: 14px; font-weight: 650; }
    .faces { display: flex; padding-left: 8px; }
    .face { width: 34px; height: 34px; margin-left: -8px; border: 2px solid var(--cream); border-radius: 50%; display: grid; place-items: center; background: var(--yellow); font-size: 12px; font-weight: 900; }
    .face:nth-child(2) { background: var(--purple); color: white; }
    .face:nth-child(3) { background: var(--orange); }
    .stars { color: #df9e1c; letter-spacing: 2px; }

    .mission-control { position: relative; min-height: 520px; overflow: hidden; }
    .orbit { position: absolute; width: 500px; height: 500px; right: -52px; top: 10px; border: 1px dashed rgba(16,17,20,.25); border-radius: 50%; pointer-events: none; }
    .orbit::before, .orbit::after { content: ""; position: absolute; border: 2px solid var(--ink); border-radius: 50%; }
    .orbit::before { width: 26px; height: 26px; background: var(--orange); top: 70px; left: 44px; }
    .orbit::after { width: 17px; height: 17px; background: var(--yellow); right: 28px; bottom: 120px; }
    @keyframes rotate { to { transform: rotate(360deg); } }
    .dashboard {
      position: absolute;
      inset: 48px 10px auto 12px;
      z-index: 2;
      padding: 16px;
      border: 3px solid var(--ink);
      border-radius: 24px;
      background: var(--paper);
      box-shadow: 12px 14px 0 var(--ink);
      transform: rotate(-2deg);
    }
    .browser-bar { display: flex; align-items: center; gap: 7px; height: 34px; padding: 0 4px 12px; border-bottom: 1px solid var(--line); }
    .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); }
    .dot:nth-child(2) { background: var(--yellow); }
    .dot:nth-child(3) { background: var(--purple); }
    .url { width: 56%; height: 12px; margin-left: 8px; border-radius: 10px; background: #e9e5dd; }
    .dash-body { padding: 22px 6px 6px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .dash-card { min-height: 125px; padding: 18px; border: 2px solid var(--ink); border-radius: 17px; background: white; }
    .dash-card.dark { grid-row: span 2; color: white; background: var(--ink); }
    .dash-card.orange { background: var(--orange); }
    .metric-label { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; opacity: .68; }
    .metric { margin: 4px 0 12px; font-size: 40px; line-height: 1; font-weight: 900; letter-spacing: -.06em; }
    .chart { display: flex; align-items: flex-end; gap: 6px; height: 82px; margin-top: 28px; }
    .chart i { display: block; flex: 1; min-width: 8px; border-radius: 5px 5px 2px 2px; background: var(--orange); }
    .chart i:nth-child(1) { height: 28%; } .chart i:nth-child(2) { height: 48%; } .chart i:nth-child(3) { height: 42%; } .chart i:nth-child(4) { height: 76%; } .chart i:nth-child(5) { height: 100%; background: var(--yellow); }
    .lead-pill { display: flex; align-items: center; gap: 10px; margin-top: 13px; padding: 9px 10px; border-radius: 10px; background: rgba(255,255,255,.1); font-size: 12px; font-weight: 700; }
    .lead-pill b { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; color: var(--ink); background: var(--yellow); }
    .rank {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-weight: 850;
      white-space: nowrap;
    }
    .rank span:last-child { color: #24955d; }
    .floating-note { position: absolute; z-index: 3; padding: 13px 16px; border: 2px solid var(--ink); border-radius: 15px; background: var(--yellow); box-shadow: 4px 4px 0 var(--ink); font-size: 13px; font-weight: 850; }
    .floating-note.one { right: -8px; top: 8px; transform: rotate(4deg); }
    .floating-note.two { left: -18px; bottom: 25px; background: var(--purple); color: white; transform: rotate(-5deg); }

    .signal-strip { padding: 22px 0; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); background: var(--ink); color: white; overflow: hidden; }
    .signal-row { display: flex; width: max-content; gap: 44px; animation: ticker 24s linear infinite; font-size: 15px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
    .signal-row span::before { content: "✦"; margin-right: 44px; color: var(--orange); }
    @keyframes ticker { to { transform: translateX(-50%); } }

    .work-reel {
      padding: 36px 0 28px;
      border-top: 2px solid var(--ink);
      border-bottom: 2px solid var(--ink);
      background: var(--paper);
      overflow: hidden;
    }
    .work-reel__track {
      display: flex;
      width: max-content;
      gap: 28px;
      padding-inline: 28px;
      animation: work-reel 70s linear infinite;
    }
    .work-reel:hover .work-reel__track {
      animation-play-state: paused;
    }
    @keyframes work-reel {
      to { transform: translateX(-50%); }
    }
    .work-reel__item {
      display: grid;
      gap: 12px;
      width: 280px;
      flex-shrink: 0;
      color: inherit;
    }
    .work-reel__label {
      font-size: 13px;
      font-weight: 800;
      text-align: center;
      letter-spacing: -0.02em;
    }
    .macbook {
      display: grid;
      gap: 0;
    }
    .macbook__lid {
      position: relative;
      padding: 10px 10px 8px;
      border: 2px solid var(--ink);
      border-radius: 14px 14px 0 0;
      background: #1a1b1f;
      box-shadow: 4px 0 0 var(--ink);
    }
    .macbook__camera {
      width: 5px;
      height: 5px;
      margin: 0 auto 7px;
      border-radius: 50%;
      background: #3a3b40;
    }
    .macbook__screen {
      overflow: hidden;
      aspect-ratio: 16 / 10;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 4px;
      background: #0b0c0f;
    }
    .macbook__screen img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }
    .macbook__base {
      position: relative;
      height: 12px;
      margin: 0 -10px;
      border: 2px solid var(--ink);
      border-top: 0;
      border-radius: 0 0 12px 12px;
      background: linear-gradient(180deg, #d8d4cc 0%, #bdb8ae 100%);
      box-shadow: 4px 4px 0 var(--ink);
    }
    .macbook__notch {
      position: absolute;
      left: 50%;
      top: 0;
      width: 56px;
      height: 5px;
      transform: translateX(-50%);
      border-radius: 0 0 6px 6px;
      background: #9e998f;
    }

    .problem-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 72px; align-items: start; }
    .problem-copy { position: sticky; top: 120px; }
    .problem-list { display: grid; gap: 16px; }
    .problem-card { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 26px; border: 2px solid var(--ink); border-radius: var(--radius); background: var(--paper); box-shadow: 5px 5px 0 var(--ink); }
    .problem-icon { width: 54px; height: 54px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 15px; background: var(--orange); font-size: 22px; }
    .problem-card:nth-child(2) .problem-icon { background: var(--purple); color: white; }
    .problem-card:nth-child(3) .problem-icon { background: var(--yellow); }
    .problem-card p { margin: 0; color: var(--muted); }

    .proof { background: var(--ink); color: white; }
    .proof .eyebrow::before { background: var(--yellow); }
    .proof-head { display: flex; justify-content: space-between; gap: 40px; align-items: flex-start; margin-bottom: 46px; }
    .proof-head p { max-width: 470px; margin: 0; color: #c8c6cb; }
    .work-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
    .work-card { position: relative; min-height: 390px; padding: 26px; border: 1px solid rgba(255,255,255,.2); border-radius: 24px; overflow: hidden; background: #212228; display: block; color: inherit; }
    .work-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,17,20,.08) 0%, rgba(16,17,20,.25) 40%, rgba(16,17,20,.88) 100%); z-index: 1; pointer-events: none; }
    .work-card.orange { background: var(--orange); color: var(--ink); border-color: transparent; }
    .work-card.orange::after { background: linear-gradient(180deg, rgba(245,130,49,.15) 0%, rgba(245,130,49,.35) 35%, rgba(16,17,20,.82) 100%); }
    .work-card.orange .work-stat { color: white; }
    .work-card.purple { background: var(--purple); }
    .work-card.purple::after { background: linear-gradient(180deg, rgba(101,71,233,.2) 0%, rgba(101,71,233,.35) 35%, rgba(16,17,20,.85) 100%); }
    .work-card--shot { padding: 0; }
    .work-card__media {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .work-card .tag {
      position: absolute;
      left: 22px;
      top: 22px;
      z-index: 2;
      background: rgba(16,17,20,.55);
      border-color: rgba(255,255,255,.55);
      color: white;
      backdrop-filter: blur(6px);
    }
    .work-card.orange .tag,
    .work-card.purple .tag {
      background: rgba(255,255,255,.16);
    }
    .tag { display: inline-flex; padding: 7px 10px; border: 1px solid currentColor; border-radius: 999px; font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
    .work-stat { position: absolute; left: 26px; bottom: 22px; z-index: 2; color: white; }
    .work-stat strong { display: block; font-size: clamp(46px, 6vw, 78px); line-height: 1; letter-spacing: -.07em; }
    .work-stat span { display: block; max-width: 270px; margin-top: 10px; font-weight: 700; }

    .offer-intro { display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; margin-bottom: 40px; }
    .offer-intro .lede { margin: 0; max-width: 420px; }
    .pricing-group { margin-bottom: 34px; }
    .pricing-service {
      margin-bottom: 72px;
      padding-bottom: 72px;
      border-bottom: 2px solid var(--line);
    }
    .pricing-service:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: 0;
    }
    .pricing-service__intro {
      max-width: 720px;
      margin-bottom: 28px;
    }
    .pricing-service__intro h2 {
      font-size: clamp(32px, 4vw, 48px);
      margin-bottom: 14px;
    }
    .pricing-grid--pair {
      grid-template-columns: 1.15fr 0.85fr;
    }
    .pricing-grid--growth {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .price-card__outcome {
      margin: -4px 0 14px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 650;
      line-height: 1.4;
    }
    .price-card.featured .price-card__outcome {
      color: #d7d5dc;
    }
    .pricing-label { display: flex; align-items: center; gap: 12px; margin: 0 0 16px; font-size: 13px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
    .pricing-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .price-card { position: relative; display: flex; flex-direction: column; padding: 30px; border: 2px solid var(--ink); border-radius: 24px; background: var(--paper); box-shadow: 5px 5px 0 var(--ink); }
    .price-card.featured { background: var(--ink); color: white; box-shadow: 7px 7px 0 var(--orange); }
    .price-card small { font-weight: 850; color: var(--orange-dark); text-transform: uppercase; letter-spacing: .09em; }
    .price-card.featured small { color: var(--yellow); }
    .price { margin: 12px 0 16px; font-size: 42px; font-weight: 900; letter-spacing: -.06em; }
    .price span { font-size: 15px; font-weight: 650; letter-spacing: 0; color: var(--muted); }
    .featured .price span { color: #bbb9c0; }
    .price-card ul { margin: 10px 0 28px; padding: 0; list-style: none; color: var(--muted); }
    .featured ul { color: #d7d5dc; }
    .price-card li { position: relative; padding: 8px 0 8px 26px; border-bottom: 1px solid rgba(128,128,128,.18); }
    .price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--orange-dark); font-weight: 900; }
    .featured li::before { color: var(--yellow); }
    .price-card .button { margin-top: auto; }
    .mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .mini-offer { padding: 24px; border: 1.5px solid var(--ink); border-radius: 20px; background: rgba(255,255,255,.48); }
    .mini-offer .price { font-size: 31px; margin: 8px 0; }
    .mini-offer p { margin: 0; color: var(--muted); font-size: 14px; }
    .care-line { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 18px; padding: 22px 26px; border: 2px dashed var(--ink); border-radius: 20px; background: var(--yellow); }
    .care-line strong { font-size: 20px; }
    .care-line p { margin: 4px 0 0; font-size: 14px; }
    .care-price { font-size: 30px; font-weight: 900; white-space: nowrap; }

    .process { background: var(--purple); color: white; }
    .process .eyebrow::before { background: var(--yellow); }
    .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 42px; }
    .step { min-height: 260px; padding: 24px; border: 2px solid var(--ink); border-radius: 22px; background: var(--paper); color: var(--ink); box-shadow: 5px 5px 0 var(--ink); }
    .step-num { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 45px; border: 2px solid var(--ink); border-radius: 50%; background: var(--orange); font-weight: 900; }
    .step p { margin: 0; color: var(--muted); }

    .founder-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
    .founder-card {
      position: relative;
      min-height: 480px;
      border: 3px solid var(--ink);
      border-radius: 30px;
      background: var(--orange) center / cover no-repeat;
      box-shadow: 12px 12px 0 var(--ink);
      overflow: hidden;
    }
    .founder-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(16,17,20,.08) 0%, rgba(16,17,20,.15) 45%, rgba(16,17,20,.78) 100%);
      pointer-events: none;
    }
    .founder-card.has-photo {
      background-color: #1a1b1f;
    }
    .founder-badge { position: absolute; left: 28px; top: 28px; z-index: 1; padding: 9px 12px; border: 2px solid var(--ink); border-radius: 99px; background: var(--paper); font-size: 12px; font-weight: 850; }
    .founder-name { position: absolute; left: 30px; bottom: 26px; z-index: 1; color: white; }
    .founder-name strong { display: block; font-size: 36px; line-height: 1; letter-spacing: -.05em; }
    .founder-name span { display: block; font-weight: 750; color: rgba(255,255,255,.88); }
    .founder-socials {
      display: flex;
      gap: 10px;
      margin-top: 14px;
    }
    .founder-socials a {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border: 2px solid rgba(255,255,255,.85);
      border-radius: 12px;
      background: rgba(16,17,20,.35);
      color: white;
      transition: background .2s ease, transform .2s ease, border-color .2s ease;
    }
    .founder-socials a:hover {
      background: var(--orange);
      border-color: var(--ink);
      color: var(--ink);
      transform: translate(1px, 1px);
    }
    .founder-socials [data-lucide] {
      width: 18px;
      height: 18px;
    }
    .quote { font-size: clamp(27px, 3vw, 42px); line-height: 1.15; font-weight: 800; letter-spacing: -.04em; }
    .founder-copy .eyebrow {
      color: var(--orange-dark);
    }
    .founder-copy > p { color: var(--muted); font-size: 17px; }
    .checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 0; }
    .check { padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); font-size: 14px; font-weight: 750; }

    .faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
    details { border-top: 1px solid var(--line); }
    details:last-child { border-bottom: 1px solid var(--line); }
    summary { position: relative; padding: 25px 44px 25px 0; cursor: pointer; list-style: none; font-size: 19px; font-weight: 850; }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: "+"; position: absolute; right: 5px; top: 19px; font-size: 29px; font-weight: 500; }
    details[open] summary::after { content: "−"; }
    details p { padding: 0 40px 24px 0; margin: 0; color: var(--muted); }

    .cta { padding: 0 0 90px; }
    .cta-card { position: relative; padding: 74px; border: 3px solid var(--ink); border-radius: 34px; background: var(--orange); box-shadow: 10px 10px 0 var(--ink); overflow: hidden; }
    .cta-card::before { content: ""; position: absolute; width: 380px; height: 380px; right: -110px; top: -150px; border: 80px solid rgba(255,255,255,.16); border-radius: 50%; }
    .cta-card h2 { max-width: 800px; margin-bottom: 18px; }
    .cta-card p { max-width: 620px; font-size: 18px; }
    .cta-card .button { position: relative; z-index: 1; margin-top: 14px; background: var(--paper); color: var(--ink); }

    footer { padding: 44px 0 26px; background: var(--ink); color: white; }
    .footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr; gap: 40px; }
    .footer-grid p, .footer-grid a { color: #bbb9c0; }
    .footer-links { display: grid; gap: 9px; }
    .footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); color: #8f8e93; font-size: 12px; }

    @media (max-width: 960px) {
      .nav-links { display: none; position: absolute; left: 20px; right: 20px; top: 94px; padding: 22px; flex-direction: column; align-items: stretch; border: 2px solid var(--ink); border-radius: 18px; background: var(--paper); box-shadow: 5px 5px 0 var(--ink); }
      .nav-links.open { display: flex; }
      .menu-button { display: block; }
      .nav-dropdown { width: 100%; }
      .nav-dropdown__toggle {
        width: 100%;
        justify-content: space-between;
        padding: 8px 0;
      }
      .nav-dropdown__menu {
        position: static;
        transform: none;
        display: none;
        margin-top: 6px;
        box-shadow: 3px 3px 0 var(--ink);
      }
      .nav-dropdown.is-open .nav-dropdown__menu {
        display: grid;
      }
      .nav-dropdown:hover .nav-dropdown__menu,
      .nav-dropdown:focus-within .nav-dropdown__menu {
        display: none;
      }
      .nav-dropdown.is-open:hover .nav-dropdown__menu,
      .nav-dropdown.is-open:focus-within .nav-dropdown__menu,
      .nav-dropdown.is-open .nav-dropdown__menu {
        display: grid;
      }
      .hero-grid, .problem-grid, .founder-grid, .faq-grid { grid-template-columns: 1fr; }
      .hero { padding-top: 56px; overflow: hidden; }
      .mission-control { min-height: 490px; overflow: hidden; max-width: 100%; }
      .floating-note.one { right: 4px; }
      .floating-note.two { left: 0; }
      .orbit { right: -36px; }
      .work-grid { grid-template-columns: 1fr 1fr; }
      .work-card:first-child { grid-column: span 2; }
      .pricing-grid { grid-template-columns: 1fr 1fr; }
      .pricing-grid--pair { grid-template-columns: 1fr; }
      .pricing-grid .price-card:last-child { grid-column: span 2; }
      .pricing-grid--pair .price-card:last-child { grid-column: auto; }
      .process-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 650px) {
      .wrap { width: min(100% - 28px, 1180px); }
      .section { padding: 76px 0; }
      .topline { font-size: 10px; }
      nav { min-height: 60px; }
      h1 { font-size: clamp(43px, 14vw, 62px); }
      h2 { font-size: 39px; }
      .hero-grid { gap: 20px; }
      .hero { overflow: hidden; }
      .hero-actions .button { width: 100%; }
      .mission-control {
        min-height: 410px;
        margin-top: 8px;
        overflow: hidden;
        max-width: 100%;
      }
      .orbit { width: 320px; height: 320px; right: -40px; top: 40px; opacity: .55; }
      .dashboard { inset: 42px 2px auto 2px; padding: 10px; border-width: 2px; box-shadow: 7px 8px 0 var(--ink); }
      .dash-body { padding-top: 14px; gap: 8px; }
      .dash-card { min-height: 105px; padding: 12px; }
      .metric { font-size: 29px; }
      .chart { height: 55px; }
      .floating-note { font-size: 11px; padding: 10px 12px; max-width: calc(100% - 24px); }
      .floating-note.one { right: 6px; top: 4px; }
      .floating-note.two { left: 6px; bottom: 12px; }
      .problem-grid { gap: 30px; }
      .problem-card { grid-template-columns: 45px 1fr; padding: 20px; }
      .problem-icon { width: 44px; height: 44px; }
      .proof-head, .offer-intro { display: block; }
      .work-grid, .pricing-grid, .mini-grid, .process-grid, .checks, .footer-grid { grid-template-columns: 1fr; }
      .work-card:first-child, .pricing-grid .price-card:last-child { grid-column: auto; }
      .work-card { min-height: 310px; }
      .care-line { align-items: start; flex-direction: column; }
      .founder-card { min-height: 380px; }
      .faq-grid { gap: 26px; }
      .cta-card { padding: 48px 26px; }
      .footer-bottom { flex-direction: column; }
      .work-reel { padding: 28px 0 22px; }
      .work-reel__item { width: 220px; }
      .work-reel__track { gap: 18px; padding-inline: 18px; animation-duration: 55s; }
    }

    /* Lucide icons */
    .icon,
    [data-lucide] {
      display: inline-block;
      width: 1.15em;
      height: 1.15em;
      stroke: currentColor;
      vertical-align: -0.15em;
      flex-shrink: 0;
    }
    .button [data-lucide] {
      width: 1em;
      height: 1em;
      margin-left: 2px;
    }
    .problem-icon [data-lucide],
    .step-num [data-lucide] {
      width: 22px;
      height: 22px;
      stroke-width: 2.25;
    }
    .menu-button [data-lucide] {
      width: 24px;
      height: 24px;
      display: block;
    }
    .floating-note {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .floating-note [data-lucide] {
      width: 14px;
      height: 14px;
    }
    .lead-pill b {
      display: grid;
      place-items: center;
    }
    .check [data-lucide] {
      width: 16px;
      height: 16px;
      margin-right: 6px;
      vertical-align: -0.2em;
      color: var(--orange-dark);
    }
    .price-card li:has([data-lucide]) {
      padding-left: 30px;
    }
    .price-card li:has([data-lucide])::before {
      display: none;
    }
    .price-card li [data-lucide] {
      position: absolute;
      left: 0;
      top: 10px;
      width: 16px;
      height: 16px;
      color: var(--orange-dark);
    }
    .featured li [data-lucide] {
      color: var(--yellow);
    }

    @media (max-width: 960px) {
      .pricing-grid[style] {
        grid-template-columns: 1fr !important;
      }
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px;
    }

    .showcase-hero {
      margin: 0;
      overflow: hidden;
      border: 3px solid var(--ink);
      border-radius: 28px;
      background: #ebe6dc;
      box-shadow: 8px 8px 0 var(--ink);
    }
    .showcase-hero img {
      width: 100%;
      height: auto;
      display: block;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      object-position: center;
    }
    .showcase-hero figcaption {
      margin: 0;
      padding: 14px 18px 16px;
      border-top: 1px solid rgba(16, 17, 20, 0.1);
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      text-align: center;
      background: rgba(255, 253, 248, 0.72);
    }

    .industry-panels {
      display: grid;
      gap: 22px;
      margin-top: 48px;
    }
    .industries-intro .lede {
      max-width: 420px;
      margin: 0;
    }

    .audit-page {
      padding-top: 48px;
      padding-bottom: 72px;
    }
    .audit-page__intro {
      max-width: 820px;
      margin-bottom: 28px;
    }
    .audit-page__intro h1 {
      font-size: clamp(36px, 5.5vw, 56px);
      margin-bottom: 14px;
    }
    .audit-page__intro .lede {
      margin-bottom: 0;
    }
    .audit-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-bottom: 28px;
    }
    .audit-card {
      padding: 20px;
      border: 2px solid var(--ink);
      border-radius: 20px;
      background: var(--paper);
      box-shadow: 4px 4px 0 var(--ink);
    }
    .audit-card .problem-icon {
      margin-bottom: 16px;
    }
    .audit-card:nth-child(2) .problem-icon {
      background: var(--purple);
      color: white;
    }
    .audit-card:nth-child(3) .problem-icon {
      background: var(--yellow);
    }
    .audit-card:nth-child(4) .problem-icon {
      background: var(--cream);
    }
    .audit-card h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }
    .audit-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }
    .audit-form-panel {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 40px;
      align-items: start;
      padding: 28px;
      border: 2px solid var(--ink);
      border-radius: 24px;
      background: var(--paper);
      box-shadow: 5px 5px 0 var(--ink);
    }
    .audit-form-panel h2 {
      font-size: clamp(28px, 3.5vw, 40px);
      margin-bottom: 10px;
    }
    .audit-form-panel .lede {
      font-size: 17px;
      margin-bottom: 16px;
    }
    .audit-form-panel__contact {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }
    .audit-form-panel__contact a {
      font-weight: 800;
      color: var(--ink);
    }
    .audit-form {
      display: grid;
      gap: 12px;
    }
    .audit-form__row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .audit-form label {
      display: grid;
      gap: 6px;
      font-weight: 750;
      font-size: 14px;
    }
    .audit-form input,
    .audit-form textarea {
      width: 100%;
      min-height: 48px;
      padding: 0 14px;
      border: 2px solid var(--ink);
      border-radius: 12px;
      background: var(--cream);
      font: inherit;
    }
    .audit-form textarea {
      min-height: 96px;
      padding: 12px 14px;
      resize: vertical;
    }
    .audit-form__error {
      margin: 0;
      color: #b42318;
      font-size: 14px;
    }
    .audit-form__check {
      display: flex !important;
      align-items: flex-start;
      gap: 10px;
      font-weight: 650 !important;
      line-height: 1.4;
      cursor: pointer;
    }
    .audit-form__check input {
      width: 18px;
      min-height: 18px;
      margin-top: 2px;
      flex-shrink: 0;
      accent-color: var(--orange);
      cursor: pointer;
    }
    .audit-form__fieldset {
      margin: 4px 0 0;
      padding: 14px 16px;
      border: 2px solid var(--ink);
      border-radius: 14px;
      background: var(--cream);
    }
    .audit-form__fieldset legend {
      padding: 0 6px;
      font-weight: 800;
      font-size: 14px;
    }
    .audit-form__options {
      display: grid;
      gap: 10px;
      margin-top: 4px;
    }
    .audit-form .button {
      justify-self: start;
      cursor: pointer;
      margin-top: 4px;
    }

    @media (max-width: 960px) {
      .audit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .audit-form-panel {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }

    @media (max-width: 650px) {
      .audit-page {
        padding-top: 36px;
      }
      .audit-grid {
        grid-template-columns: 1fr;
      }
      .audit-form__row {
        grid-template-columns: 1fr;
      }
      .audit-form-panel {
        padding: 20px;
      }
    }
    .industry-panel {
      padding: 28px;
      border: 2px solid var(--ink);
      border-radius: 24px;
      background: var(--paper);
      box-shadow: 5px 5px 0 var(--ink);
    }
    .industry-panel__head {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 22px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--line);
    }
    .industry-panel__icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border: 2px solid var(--ink);
      border-radius: 15px;
      background: var(--orange);
      flex-shrink: 0;
    }
    .industry-panel.accent-1 .industry-panel__icon {
      background: var(--purple);
      color: white;
    }
    .industry-panel.accent-2 .industry-panel__icon {
      background: var(--yellow);
    }
    .industry-panel__label {
      margin: 0;
      font-size: 22px;
      font-weight: 850;
      letter-spacing: -0.03em;
      line-height: 1.1;
      text-transform: capitalize;
    }
    .industry-panel__count {
      margin: 4px 0 0;
      color: var(--muted);
      font-size: 14px;
      font-weight: 650;
    }
    .industry-panel__grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }
    .industry-chip {
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 58px;
      padding: 12px 14px;
      border: 2px solid var(--ink);
      border-radius: 16px;
      background: var(--cream);
      font-size: 15px;
      font-weight: 800;
      letter-spacing: -0.02em;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .industry-chip:hover {
      transform: translate(2px, 2px);
      background: #fff;
      box-shadow: 3px 3px 0 var(--ink);
    }
    .industry-chip__icon {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      border: 2px solid var(--ink);
      border-radius: 11px;
      background: rgba(245, 130, 49, 0.16);
      color: var(--orange-dark);
      flex-shrink: 0;
    }
    .industry-chip__icon [data-lucide] {
      width: 18px;
      height: 18px;
    }

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

    @media (max-width: 650px) {
      .industry-panel {
        padding: 20px;
      }
      .industry-panel__grid {
        grid-template-columns: 1fr;
      }
    }

    .project-overview {
      padding-top: 48px;
      padding-bottom: 24px;
    }
    .project-overview__grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 40px;
      align-items: start;
      padding: 34px;
      border: 2px solid var(--ink);
      border-radius: 24px;
      background: var(--paper);
      box-shadow: 5px 5px 0 var(--ink);
    }
    .project-overview__copy h2 {
      max-width: 14ch;
    }
    .project-overview__copy .lede {
      margin-bottom: 0;
    }
    .project-overview__meta {
      display: grid;
      gap: 16px;
      margin: 0;
      padding: 0;
    }
    .project-overview__meta > div {
      padding-bottom: 14px;
      border-bottom: 1px solid var(--line);
    }
    .project-overview__meta > div:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }
    .project-overview__meta dt {
      margin: 0 0 4px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 850;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .project-overview__meta dd {
      margin: 0;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    @media (max-width: 960px) {
      .project-overview__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 26px;
      }
    }

    .mockup-hero {
      display: grid;
      gap: 16px;
      padding: 18px;
      border: 3px solid var(--ink);
      border-radius: 28px;
      background:
        radial-gradient(ellipse at 15% 0%, rgba(239, 124, 61, 0.12), transparent 42%),
        #ebe6dc;
      box-shadow: 8px 8px 0 var(--ink);
    }
    .mockup-hero--quad {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items: stretch;
    }
    .mockup-hero__item {
      margin: 0;
      display: grid;
      gap: 10px;
      align-content: start;
    }
    .mockup-hero__item > img,
    .mockup-hero__item .browser-frame {
      width: 100%;
      border: 2px solid var(--ink);
      border-radius: 18px;
      background: #d9d4cb;
      box-shadow: 4px 4px 0 rgba(16, 17, 20, 0.12);
      overflow: hidden;
    }
    .mockup-hero__item > img {
      height: auto;
      display: block;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      object-position: center;
    }
    .mockup-hero__item--iphone > img {
      object-position: center top;
    }
    .browser-frame {
      display: grid;
      grid-template-rows: auto 1fr;
      aspect-ratio: 1 / 1;
      background: #fff;
    }
    .browser-frame__bar {
      display: flex;
      align-items: center;
      gap: 7px;
      min-height: 34px;
      padding: 8px 10px;
      border-bottom: 1px solid rgba(16, 17, 20, 0.12);
      background: #f3efe7;
    }
    .browser-frame__bar span {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #ef7c3d;
      flex-shrink: 0;
    }
    .browser-frame__bar span:nth-child(2) { background: #f2c35b; }
    .browser-frame__bar span:nth-child(3) { background: #6547e9; }
    .browser-frame__url {
      flex: 1;
      margin-left: 6px;
      padding: 5px 10px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(16, 17, 20, 0.1);
      color: var(--muted);
      font-size: 11px;
      font-weight: 700;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .browser-frame img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: top center;
    }
    .mockup-hero__item figcaption {
      color: var(--muted);
      font-size: 12px;
      font-weight: 850;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-align: center;
    }
    .device-hero__caption {
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      text-align: center;
    }

    @media (max-width: 650px) {
      .mockup-hero--quad {
        grid-template-columns: 1fr;
      }
      .mockup-hero {
        padding: 12px;
      }
    }

    .portfolio-detail__media {
      overflow: hidden;
      border: 3px solid var(--ink);
      border-radius: 28px;
      background: #e9e5dd;
      box-shadow: 8px 8px 0 var(--ink);
    }
    .portfolio-detail__media img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      object-position: top center;
      aspect-ratio: 16 / 10;
    }

    .portfolio-card {
      display: block;
      color: inherit;
      transition: transform .2s ease;
    }
    .portfolio-card:hover {
      transform: translateY(-3px);
    }
    .portfolio-card__media {
      overflow: hidden;
      border: 2px solid var(--ink);
      border-radius: 22px;
      background: #e9e5dd;
      box-shadow: 5px 5px 0 var(--ink);
      aspect-ratio: 16 / 10;
    }
    .portfolio-card__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      transition: transform .35s ease;
    }
    .portfolio-card:hover .portfolio-card__media img {
      transform: scale(1.03);
    }
    .portfolio-card__tags {
      margin: 16px 0 6px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 750;
    }
    .portfolio-card__title {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0;
      font-size: clamp(22px, 3vw, 30px);
      letter-spacing: -.04em;
    }
    .portfolio-card__title [data-lucide] {
      width: 18px;
      height: 18px;
      opacity: .55;
    }
    .portfolio-card:hover .portfolio-card__title [data-lucide] {
      opacity: 1;
      color: var(--orange-dark);
    }

    @media (max-width: 650px) {
      .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 22px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .orbit, .signal-row, .work-reel__track { animation: none; }
      .portfolio-card,
      .portfolio-card__media img {
        transition: none;
      }
    }


