:root {
      --ink: #0e0d0c;
      --paper: #f3ece1;
      --paper-2: #e7dccb;
      --rule: #c9bba6;
      --muted: #6d6458;
      --orange: #e8710a;
      --orange-ink: #7a3a04;
      --green: #188038;
      --card: #fffaf3;
      --shadow: 0 24px 60px rgba(14, 13, 12, 0.18);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background:
        radial-gradient(1200px 600px at 80% -10%, rgba(232, 113, 10, 0.12), transparent 50%),
        var(--paper);
      font-family: "IBM Plex Sans", system-ui, sans-serif;
      font-size: 17px;
      line-height: 1.5;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.18;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
      z-index: 0;
    }
    .wrap { position: relative; z-index: 1; }

    a { color: inherit; }
    img { max-width: 100%; }

    .skip {
      position: absolute;
      left: -999px;
      top: 12px;
      z-index: 20;
      background: var(--ink);
      color: var(--paper);
      padding: 8px 12px;
      border-radius: 8px;
      text-decoration: none;
    }
    .skip:focus, .skip:focus-visible { left: 12px; }

    :focus-visible {
      outline: 2px solid var(--orange);
      outline-offset: 3px;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 28px;
      position: sticky;
      top: 0;
      z-index: 10;
      background: color-mix(in srgb, var(--paper) 88%, transparent);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid color-mix(in srgb, var(--rule) 60%, transparent);
    }
    .wordmark {
      font-family: "IBM Plex Mono", monospace;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 22px;
      align-items: center;
      font-size: 14px;
    }
    .nav-links a { text-decoration: none; color: var(--muted); }
    .nav-links a:hover { color: var(--ink); }
    .nav-links a[aria-current="page"] { color: var(--ink); font-weight: 600; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 0;
      cursor: pointer;
      text-decoration: none;
      font-family: inherit;
      font-weight: 600;
      font-size: 15px;
      padding: 12px 18px;
      border-radius: 999px;
      transition: transform .15s ease, background .15s ease;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary { background: var(--orange); color: #140b03; }
    .btn-ghost {
      background: transparent;
      color: var(--ink);
      border: 1px solid var(--rule);
    }
    .btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    .hero {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 48px;
      align-items: center;
      padding: 56px 28px 72px;
      max-width: 1180px;
      margin: 0 auto;
    }
    h1 {
      font-family: Fraunces, Georgia, serif;
      font-optical-sizing: auto;
      font-weight: 560;
      font-size: clamp(40px, 6vw, 76px);
      line-height: 0.95;
      letter-spacing: -0.03em;
      margin: 0 0 18px;
    }
    .lede {
      font-size: 19px;
      color: #3c362e;
      max-width: 42ch;
      margin: 0 0 28px;
    }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .fine {
      margin-top: 14px;
      font-size: 13px;
      color: var(--muted);
    }

    .stage {
      position: relative;
      min-height: 520px;
    }
    .phone {
      width: min(320px, 100%);
      margin-left: auto;
      background: #111;
      border-radius: 36px;
      padding: 12px;
      box-shadow: var(--shadow);
      border: 1px solid #2a2a2a;
    }
    .screen {
      position: relative;
      aspect-ratio: 9 / 17.4;
      border-radius: 26px;
      overflow: hidden;
      background: #1a1612;
    }
    .screen-bg {
      position: absolute;
      inset: -14%;
      width: 128%;
      height: 128%;
      object-fit: cover;
      object-position: 50% 62%;
      filter: blur(1.5px) saturate(0.98) brightness(0.92);
      transform: scale(1.02);
      pointer-events: none;
    }
    .screen-dim {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(12, 10, 8, 0.12) 0%, rgba(12, 10, 8, 0.04) 42%, rgba(12, 10, 8, 0.42) 100%);
      pointer-events: none;
    }
    .reticle {
      position: absolute;
      left: 50%;
      top: 46%;
      width: 56px;
      height: 56px;
      margin: -28px 0 0 -28px;
      border: 2px solid #fff;
      border-radius: 50%;
      z-index: 2;
    }
    .dot {
      position: absolute;
      left: 50%;
      top: 46%;
      width: 26px;
      height: 26px;
      margin: -13px 0 0 -13px;
      background: var(--orange);
      border-radius: 50%;
      box-shadow: 0 0 0 10px rgba(232, 113, 10, 0.28);
      animation: settle 2.8s ease-in-out infinite;
      z-index: 2;
    }
    .arrow {
      position: absolute;
      left: 50%;
      top: 46%;
      width: 0;
      height: 0;
      margin: -52px 0 0 -8px;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-bottom: 14px solid var(--orange);
      filter: drop-shadow(0 1px 4px rgba(0,0,0,.45));
      animation: nudge 2.8s ease-in-out infinite;
      z-index: 3;
    }
    @keyframes settle {
      0%, 100% { transform: translate(18px, -22px); }
      55% { transform: translate(0, 0); }
    }
    @keyframes nudge {
      0%, 100% { transform: translate(18px, -22px) rotate(-28deg); }
      55% { transform: translate(0, 0) rotate(0deg); }
    }
    .coach {
      position: absolute;
      left: 0; right: 0; bottom: 108px;
      text-align: center;
      color: #fff;
      font-size: 13px;
      font-weight: 500;
      z-index: 2;
      text-shadow: 0 1px 8px rgba(0,0,0,.45);
    }
    .chrome {
      position: absolute;
      left: 18px; right: 18px; bottom: 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #fff;
      font-size: 18px;
      z-index: 2;
    }
    .check {
      position: relative;
      width: 52px; height: 52px;
      display: grid;
      place-items: center;
      color: var(--orange);
      font-size: 18px;
      font-weight: 700;
    }
    .check::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 3px solid var(--orange);
      background: conic-gradient(var(--orange) 0 62%, transparent 0);
      mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
      -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
    }

    .link-card {
      position: absolute;
      left: -12px;
      bottom: 18px;
      width: min(300px, 86%);
      background: var(--card);
      border: 1px solid var(--rule);
      border-radius: 16px;
      padding: 16px 16px 14px;
      box-shadow: var(--shadow);
      z-index: 4;
    }
    .link-card small {
      display: block;
      font-family: "IBM Plex Mono", monospace;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }
    .url {
      font-family: "IBM Plex Mono", monospace;
      font-size: 14px;
      background: #f6efe4;
      padding: 10px 12px;
      border-radius: 8px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .views { margin-top: 8px; font-size: 13px; color: var(--muted); }

    .band {
      border-top: 1px solid var(--rule);
      padding: 72px 28px;
    }
    .inner { max-width: 1080px; margin: 0 auto; }
    h2 {
      font-family: Fraunces, Georgia, serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 560;
      letter-spacing: -0.02em;
      margin: 0 0 12px;
    }
    .section-kicker {
      font-family: "IBM Plex Mono", monospace;
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--orange-ink);
      margin: 0 0 10px;
    }

    .pain {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    .pain p { margin: 0 0 12px; color: #3c362e; }
    blockquote {
      margin: 0;
      font-family: Fraunces, serif;
      font-size: 26px;
      line-height: 1.25;
      font-weight: 400;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 28px;
    }
    .step {
      background: var(--card);
      border: 1px solid var(--rule);
      border-radius: 18px;
      padding: 22px;
    }
    .num {
      font-family: Fraunces, serif;
      font-size: 32px;
      color: var(--orange);
      line-height: 1;
      margin-bottom: 10px;
    }
    .step h3 { margin: 0 0 8px; font-size: 18px; }
    .step p { margin: 0; color: var(--muted); font-size: 15px; }

    .caps {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px 48px;
      margin-top: 32px;
    }
    .cap h3 {
      margin: 0 0 6px;
      font-size: 18px;
    }
    .cap p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }
    .cap-index {
      font-family: "IBM Plex Mono", monospace;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--orange-ink);
      display: block;
      margin-bottom: 6px;
    }

    .surfaces {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-top: 28px;
    }
    .surface {
      background: var(--card);
      border: 1px solid var(--rule);
      border-radius: 18px;
      padding: 24px;
    }
    .surface h3 { margin: 0 0 10px; font-size: 20px; }
    .surface ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .surface li {
      padding: 8px 0 8px 18px;
      position: relative;
      color: #3c362e;
      font-size: 15px;
      border-bottom: 1px solid color-mix(in srgb, var(--rule) 55%, transparent);
    }
    .surface li:last-child { border-bottom: 0; }
    .surface li::before {
      content: "";
      width: 7px; height: 7px;
      background: var(--orange);
      border-radius: 50%;
      position: absolute;
      left: 0; top: 15px;
    }

    .compare {
      width: 100%;
      border-collapse: collapse;
      font-size: 15px;
      background: var(--card);
      border-radius: 16px;
      overflow: hidden;
    }
    .compare th, .compare td {
      text-align: left;
      padding: 14px 16px;
      border-bottom: 1px solid var(--rule);
    }
    .compare th:first-child, .compare td:first-child { width: 28%; }
    .compare thead { background: #1b1916; color: var(--paper); }
    .us { font-weight: 600; }

    .pricing {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 28px;
      align-items: stretch;
    }
    .plan {
      background: var(--card);
      border: 1px solid var(--rule);
      border-radius: 20px;
      padding: 24px 22px 22px;
      display: flex;
      flex-direction: column;
    }
    .plan.featured {
      border-color: var(--orange);
      box-shadow: 0 0 0 3px rgba(232, 113, 10, 0.18);
      transform: translateY(-8px);
    }
    .badge {
      align-self: flex-start;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: var(--orange);
      color: #140b03;
      padding: 4px 8px;
      border-radius: 999px;
      margin-bottom: 12px;
    }
    .price {
      font-family: Fraunces, serif;
      font-size: 44px;
      letter-spacing: -0.03em;
      line-height: 1;
    }
    .price span { font-size: 16px; color: var(--muted); font-family: "IBM Plex Sans", sans-serif; }
    .plan h3 { margin: 8px 0 12px; }
    .plan ul {
      margin: 0 0 22px;
      padding: 0;
      list-style: none;
      flex: 1;
    }
    .plan li {
      padding: 7px 0 7px 18px;
      position: relative;
      font-size: 15px;
    }
    .plan li::before {
      content: "";
      width: 7px; height: 7px;
      background: var(--orange);
      border-radius: 50%;
      position: absolute;
      left: 0; top: 14px;
    }

    .faq { display: grid; gap: 0; margin-top: 20px; }
    details {
      border-top: 1px solid var(--rule);
      padding: 16px 0;
    }
    summary {
      cursor: pointer;
      font-weight: 600;
      list-style: none;
    }
    summary::-webkit-details-marker { display: none; }
    details p { color: var(--muted); margin: 10px 0 0; }

    .final {
      text-align: center;
      padding: 80px 28px 96px;
    }
    .final h2 { max-width: 16ch; margin: 0 auto 14px; }
    form.waitlist {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 22px;
    }
    input[type="email"] {
      font: inherit;
      padding: 12px 14px;
      border-radius: 999px;
      border: 1px solid var(--rule);
      background: var(--card);
      min-width: 260px;
    }
    .note { font-size: 13px; color: var(--muted); margin-top: 10px; }
    .success { color: var(--green); font-weight: 600; margin-top: 16px; }
    .form-error { color: #9b1c1c; font-weight: 600; margin-top: 16px; }

    footer {
      padding: 28px;
      font-size: 12px;
      color: var(--muted);
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      border-top: 1px solid var(--rule);
    }

    .niches {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 28px;
    }
    .niche {
      display: flex;
      flex-direction: column;
      background: var(--card);
      border: 1px solid var(--rule);
      border-radius: 18px;
      padding: 24px;
      text-decoration: none;
      min-height: 100%;
      transition: transform .15s ease, border-color .15s ease;
    }
    .niche:hover { transform: translateY(-2px); border-color: var(--orange); }
    .niche h3 { margin: 0 0 8px; font-size: 20px; }
    .niche p { margin: 0 0 18px; color: var(--muted); font-size: 15px; flex: 1; }
    .niche .go {
      font-family: "IBM Plex Mono", monospace;
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange-ink);
    }

    .also {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }
    .also a {
      text-decoration: none;
      font-size: 14px;
      padding: 8px 12px;
      border: 1px solid var(--rule);
      border-radius: 999px;
      background: var(--card);
    }
    .also a:hover { border-color: var(--ink); }

    .lede.wide { max-width: 52ch; }

    .look-frame-wrap {
      position: relative;
      margin-top: 28px;
      aspect-ratio: 16 / 10;
      border-radius: 18px;
      overflow: hidden;
      background: #0e0d0c;
      border: 1px solid #2a2a2a;
      box-shadow: var(--shadow);
    }
    .look-frame {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }
    .look-meta {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 16px;
      flex-wrap: wrap;
      margin: 14px 0 0;
      font-size: 14px;
      color: var(--muted);
    }
    .look-meta a {
      font-family: "IBM Plex Mono", monospace;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--orange-ink);
    }
    .look-meta a:hover { color: var(--ink); }

    @media (max-width: 880px) {
      .hero, .pain, .steps, .pricing, .caps, .surfaces, .niches { grid-template-columns: 1fr; }
      .plan.featured { transform: none; }
      .nav-links a:not(.btn) { display: none; }
      .link-card { position: relative; left: auto; bottom: auto; margin-top: -40px; width: min(340px, 92%); }
      .stage { min-height: 0; }
      .look-frame-wrap { aspect-ratio: 4 / 5; }
      .compare { font-size: 13px; display: block; overflow-x: auto; }
    }

