/* ============================================================
   GUS — gus.autos — industrial premium
   Charcoal steel + safety orange. Barlow / Barlow Condensed.
   ============================================================ */
:root {
  --ink-0: #101012;
  --ink-1: #141416;
  --ink-2: #1c1c1e;
  --ink-3: #242428;
  --line: #2e2e33;
  --line-soft: #26262b;
  --paper: #f2efe9;
  --paper-dim: #b9b5ad;
  --paper-faint: #8b8781;
  --orange: #ff6b1a;
  --orange-hot: #ff8a47;
  --orange-deep: #cc4f0d;
  --green: #2fb344;
  --yellow: #e8b021;
  --red: #e5484d;
  --radius: 10px;
  --radius-lg: 16px;
  --cond: "Barlow Condensed", "Barlow", sans-serif;
  --body: "Barlow", system-ui, sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  background: var(--ink-1);
  color: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: var(--orange);
  text-decoration: none;
}
a:hover {
  color: var(--orange-hot);
}
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
/* ---------- texture layers ---------- */
.tex-carbon {
  background-image:
    radial-gradient(
      ellipse 1200px 600px at 70% -10%,
      rgba(255, 107, 26, 0.07),
      transparent 60%
    ),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.012) 0 2px,
      transparent 2px 4px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.012) 0 2px,
      transparent 2px 4px
    ),
    linear-gradient(180deg, var(--ink-0), var(--ink-1));
}
.tex-steel {
  background-image:
    linear-gradient(
      100deg,
      rgba(255, 255, 255, 0.02) 0%,
      transparent 30%,
      rgba(255, 255, 255, 0.03) 50%,
      transparent 70%,
      rgba(255, 255, 255, 0.02) 100%
    ),
    linear-gradient(180deg, var(--ink-2), var(--ink-1));
}
/* hazard stripe divider */
.hazard {
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    var(--orange) 0 18px,
    var(--ink-0) 18px 36px
  );
  opacity: 0.85;
}
/* ---------- typography ---------- */
h1,
h2,
h3 {
  font-family: var(--cond);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  font-weight: 800;
}
h1 {
  font-size: clamp(3rem, 7.2vw, 6rem);
}
h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  margin-bottom: 0.5em;
}
h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}
h4 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 1.1rem;
}
.tabular {
  font-variant-numeric: tabular-nums;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.price-card .roi-note {
  margin: 0 0 18px;
}
/* Job-ticket stamp: the one section label we allow. Sparingly. */
.stamp {
  display: inline-block;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--paper-dim);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 18px;
}
.stamp .tick {
  color: var(--orange);
  font-weight: 800;
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--paper-dim);
  max-width: 62ch;
}
/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  padding: 14px 30px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.25s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(
    180deg,
    var(--orange-hot),
    var(--orange) 45%,
    var(--orange-deep)
  );
  color: #16100b;
  box-shadow:
    0 4px 20px rgba(255, 107, 26, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-primary:hover {
  color: #16100b;
  transform: translateY(-2px);
  box-shadow:
    0 8px 34px rgba(255, 107, 26, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}
.btn-lg {
  padding: 18px 40px;
  font-size: 1.2rem;
}
.btn-block {
  width: 100%;
}
/* ---------- header / nav ---------- */
.skip-link {
  position: absolute;
  top: 0;
  left: -9999px;
  z-index: 200;
  background: var(--orange);
  color: #16100b;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 16, 18, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--cond);
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  color: var(--paper);
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}
.logo:hover {
  color: var(--paper);
}
.logo .dot {
  color: var(--orange);
}
.logo .tag {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--paper-faint);
  margin-left: 10px;
  text-transform: uppercase;
  transform: translateY(-2px);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-family: var(--cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  color: var(--paper-dim);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover {
  color: var(--paper);
}
.nav-links a.active {
  color: var(--paper);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--orange);
}
.nav-links .nav-cta a {
  padding: 10px 22px;
  color: #16100b;
  font-size: 0.95rem;
}
.nav-links .nav-cta a.active::after {
  display: none;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--paper);
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.1s;
}
.reveal.d2 {
  transition-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ---------- sections ---------- */
.section {
  padding: 110px 0;
}
.section-alt {
  background: var(--ink-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.center {
  text-align: center;
}
.center .section-head {
  margin-left: auto;
  margin-right: auto;
}
.center .lead {
  margin-left: auto;
  margin-right: auto;
}
/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 96px 0 120px;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero h1 {
  margin-bottom: 8px;
}
.hero h1 .money {
  color: var(--orange);
}
.hero h1 .money-dim {
  color: var(--paper-faint);
}
.hero-brand {
  font-family: var(--cond);
  font-weight: 800;
  font-size: clamp(3.4rem, 9vw, 7rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 18px;
}
.hero-brand .dot {
  color: var(--orange);
}
.hero-eyebrow {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 14px;
}
.hero .lead {
  margin: 22px 0 28px;
  max-width: 42ch;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
/* --- the leak gauge (hero visual) --- */
.leak-gauge {
  padding: 8px 0 0;
  position: relative;
}
.leak-label {
  font-family: var(--cond);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--paper-faint);
  margin-bottom: 12px;
}
.leak-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.leak-row .leak-num {
  font-family: var(--cond);
  font-weight: 800;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.leak-row .found .leak-num {
  color: var(--paper);
}
.leak-row .sold {
  text-align: right;
}
.leak-row .sold .leak-num {
  color: var(--orange);
}
.leak-row .cap {
  font-family: var(--cond);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--paper-faint);
  font-weight: 600;
}
.leak-bar {
  height: 26px;
  border-radius: 6px;
  background: var(--ink-0);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  margin: 18px 0 14px;
}
.leak-fill {
  height: 100%;
  width: 100%;
  border-radius: 5px 0 0 5px;
  background: linear-gradient(
    90deg,
    var(--orange-deep),
    var(--orange) 60%,
    var(--orange-hot)
  );
  box-shadow: 0 0 24px rgba(255, 107, 26, 0.45);
  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.leak-drain {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--paper-dim);
}
.leak-drain strong {
  color: var(--paper);
}
.leak-foot {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-size: 0.98rem;
  color: var(--paper-dim);
}
.leak-foot strong {
  color: var(--red);
  font-variant-numeric: tabular-nums;
  font-size: 1.15rem;
}
/* ---------- pain beats ---------- */
.pain-list {
  display: flex;
  flex-direction: column;
  max-width: 720px;
}
.pain-row {
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
}
.pain-row:first-child {
  border-top: 1px solid var(--line-soft);
}
.pain-row h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}
.pain-row p {
  color: var(--paper-dim);
  font-size: 1.02rem;
  max-width: 58ch;
}

/* ---------- steps + phone mock ---------- */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.step-list {
  display: flex;
  flex-direction: column;
}
.step-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
}
.step-item:last-child {
  border-bottom: 0;
}
.step-badge {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cond);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--orange);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-variant-numeric: tabular-nums;
}
.step-item h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}
.step-item p {
  color: var(--paper-dim);
  font-size: 1.02rem;
}
/* --- CSS phone --- */
.phone-stage {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone-stage::before {
  content: "";
  position: absolute;
  inset: 10% 6%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 107, 26, 0.14),
    transparent 70%
  );
  filter: blur(30px);
  z-index: 0;
}
.phone {
  position: relative;
  z-index: 1;
  width: 320px;
  border-radius: 42px;
  padding: 12px;
  background: linear-gradient(160deg, #3a3a40, #1a1a1d 40%, #2c2c31);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.18),
    inset 0 -1px 1px rgba(0, 0, 0, 0.6);
}
.phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #0b0b0d;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone-screen {
  border-radius: 32px;
  background: #0e0e10;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
}
.ps-status {
  display: flex;
  justify-content: space-between;
  padding: 14px 22px 6px;
  font-size: 0.7rem;
  color: var(--paper-faint);
  font-variant-numeric: tabular-nums;
}
.ps-header {
  padding: 10px 20px 14px;
  border-bottom: 1px solid #1e1e22;
}
.ps-header .ps-app {
  font-family: var(--cond);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}
.ps-header .ps-app span {
  color: var(--orange);
}
.ps-header .ps-veh {
  font-size: 0.78rem;
  color: var(--paper-faint);
  margin-top: 2px;
}
.ps-header .ps-example-tag {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 7px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper-faint);
  border: 1px solid #2a231d;
  border-radius: 4px;
}
.ps-body {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* talk-button variant */

/* customer-text variant */
.msg-bubble {
  background: #1d1d21;
  border-radius: 16px 16px 16px 4px;
  padding: 12px 14px;
  font-size: 0.85rem;
  color: var(--paper-dim);
  max-width: 92%;
}
.msg-bubble strong {
  color: var(--paper);
}
.finding-card {
  background: #17171a;
  border: 1px solid #232328;
  border-left: 4px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
}
.finding-card.sev-red {
  border-left-color: var(--red);
}
.finding-card.sev-green {
  border-left-color: var(--green);
}
.sev-pill {
  display: inline-block;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.66rem;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.sev-pill.red {
  background: rgba(229, 72, 77, 0.15);
  color: #ff8589;
}
.sev-pill.green {
  background: rgba(47, 179, 68, 0.14);
  color: #59d072;
}
.fc-title {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.photo-block {
  height: 96px;
  border-radius: 8px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  background: #1a1a1d;
  border: 1px solid #2b2b30;
}
.photo-block img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1200 / 675;
}
.photo-block::after {
  content: "PHOTO · " attr(data-time);
  position: absolute;
  right: 8px;
  bottom: 6px;
  font-family: var(--cond);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: rgba(242, 239, 233, 0.7);
  background: rgba(0, 0, 0, 0.55);
  padding: 2px 7px;
  border-radius: 4px;
}
.fc-desc {
  font-size: 0.8rem;
  color: var(--paper-dim);
  margin-bottom: 8px;
}
.fc-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.approve-btn {
  margin-top: 4px;
  background: linear-gradient(180deg, #3ecb55, var(--green));
  color: #08130a;
  text-align: center;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 6px 20px rgba(47, 179, 68, 0.3);
}
.ps-home {
  width: 120px;
  height: 5px;
  border-radius: 3px;
  background: #3a3a40;
  margin: 10px auto 12px;
}
/* ---------- pricing / offer ---------- */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.offer-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 34px;
}
.offer-point {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 16px;
}
.offer-point .op-check {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(255, 107, 26, 0.12);
  border: 1px solid rgba(255, 107, 26, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.offer-point strong {
  display: block;
  color: var(--paper);
  font-size: 1.05rem;
}
.offer-point p {
  color: var(--paper-dim);
  font-size: 0.98rem;
}
.price-card {
  background: linear-gradient(
    165deg,
    var(--ink-3) 0%,
    var(--ink-2) 55%,
    #17171a 100%
  );
  border: 1px solid rgba(255, 107, 26, 0.45);
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 107, 26, 0.12),
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(255, 107, 26, 0.1);
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: repeating-linear-gradient(
    -45deg,
    var(--orange) 0 14px,
    var(--ink-0) 14px 28px
  );
}
.price-flag {
  position: absolute;
  top: -14px;
  right: 26px;
  background: var(--orange);
  color: #16100b;
  font-family: var(--cond);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(255, 107, 26, 0.45);
}
.price-tier {
  padding: 22px 0;
  border-bottom: 1px dashed var(--line);
}
.price-tier:first-of-type {
  padding-top: 14px;
}
.price-tier .pt-label {
  font-family: var(--cond);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  color: var(--paper-faint);
  font-weight: 700;
  margin-bottom: 6px;
}
.price-tier .pt-price {
  font-family: var(--cond);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.price-tier .pt-price .per {
  font-size: 1.2rem;
  color: var(--paper-faint);
  font-weight: 600;
}
.price-tier .pt-price.hot {
  color: var(--orange);
}
.price-tier .pt-note {
  font-size: 0.92rem;
  color: var(--paper-dim);
  margin-top: 6px;
}
.price-tier .strike {
  color: var(--paper-faint);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  font-size: 1.4rem;
  margin-left: 10px;
  font-weight: 700;
}
.price-includes {
  list-style: none;
  margin: 22px 0 26px;
}
.price-includes li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: var(--paper-dim);
  font-size: 0.97rem;
}
.price-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
  transform: rotate(-45deg);
}
.spots {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  justify-content: center;
  font-family: var(--cond);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  color: var(--paper-dim);
  font-weight: 600;
}
/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--ink-1);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-weight: 700;
  font-size: 1.08rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: var(--orange-hot);
}
.faq-item summary::after {
  content: "+";
  font-family: var(--cond);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
  transition: transform 0.25s ease;
  flex: none;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .faq-body {
  padding: 0 26px 24px;
  color: var(--paper-dim);
  font-size: 1rem;
  max-width: 70ch;
}
/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line-soft);
  background: var(--ink-0);
  padding: 56px 0 40px;
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.foot-brand p {
  color: var(--paper-faint);
  font-size: 0.95rem;
  margin-top: 12px;
  max-width: 40ch;
}
.foot-links {
  display: flex;
  gap: 34px;
  list-style: none;
}
.foot-links a {
  font-family: var(--cond);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--paper-dim);
  font-size: 0.95rem;
}
.foot-links a:hover {
  color: var(--orange-hot);
}
.foot-legal {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--paper-faint);
  font-size: 0.88rem;
}
/* ---------- forms (early access) ---------- */
.ea-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
  padding: 90px 0 110px;
}
.form-card {
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 42px 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: repeating-linear-gradient(
    -45deg,
    var(--orange) 0 12px,
    var(--ink-0) 12px 24px
  );
}
.form-card .form-card-head {
  font-size: 1.9rem;
  margin-bottom: 6px;
}
.noscript-note {
  background: rgba(232, 176, 33, 0.1);
  border: 1px solid rgba(232, 176, 33, 0.45);
  color: var(--paper-dim);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.98rem;
  margin-bottom: 22px;
}
.form-card .form-sub {
  color: var(--paper-dim);
  font-size: 0.98rem;
  margin-bottom: 30px;
}
.field {
  margin-bottom: 22px;
}
.field label {
  display: block;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--paper-dim);
  margin-bottom: 8px;
}
.field label .req {
  color: var(--orange);
}
.field label .opt {
  color: var(--paper-faint);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--ink-0);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  padding: 14px 16px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23ff6b1a' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.18);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--paper-faint);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-msg {
  display: none;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 18px 0;
  font-size: 1rem;
  line-height: 1.55;
}
.form-msg.show {
  display: block;
}
.form-msg.success {
  background: rgba(47, 179, 68, 0.1);
  border: 1px solid rgba(47, 179, 68, 0.45);
  color: #a7e6b3;
}
.form-msg.error {
  background: rgba(229, 72, 77, 0.1);
  border: 1px solid rgba(229, 72, 77, 0.45);
  color: #f4a6a8;
}
.form-msg a {
  color: var(--orange-hot);
  font-weight: 700;
}
.form-fineprint {
  margin-top: 16px;
  color: var(--paper-faint);
  font-size: 0.85rem;
  text-align: center;
}
/* offer summary column on early-access */
.offer-summary {
  position: sticky;
  top: 100px;
}
.offer-summary .offer-summary-head {
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-bottom: 18px;
}
.offer-summary .lead {
  margin-bottom: 30px;
}
.mini-terms {
  list-style: none;
  margin-top: 28px;
}
.mini-terms li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line-soft);
  color: var(--paper-dim);
}
.mini-terms li:last-child {
  border-bottom: 0;
}
.mini-terms .mt-num {
  font-family: var(--cond);
  font-weight: 800;
  color: var(--orange);
  font-size: 1.3rem;
  font-variant-numeric: tabular-nums;
  flex: none;
  width: 76px;
}
.mini-terms strong {
  color: var(--paper);
}
/* ---------- responsive ---------- */

@media (max-width: 1100px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero-copy {
    max-width: 720px;
  }
  .hero-brand {
    font-size: clamp(3rem, 12vw, 4.8rem);
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .price-card {
    max-width: 560px;
  }
  .ea-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .offer-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 78px 0;
  }
  .hero {
    padding: 64px 0 90px;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(16, 16, 18, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-links li:last-child {
    border-bottom: 0;
  }
  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 1.15rem;
  }
  .nav-links a.active::after {
    display: none;
  }
  .nav-links .nav-cta {
    margin-top: 16px;
  }
  .nav-links .nav-cta a {
    display: flex;
    justify-content: center;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 34px 26px;
  }
  .foot-grid {
    flex-direction: column;
  }
  .foot-links {
    flex-wrap: wrap;
    gap: 20px 28px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
  .wrap {
    width: calc(100% - 36px);
  }
  .phone {
    width: 290px;
  }
  .btn-lg {
    padding: 16px 28px;
    font-size: 1.08rem;
    width: 100%;
  }
  .hero {
    padding: 48px 0 72px;
  }
  .hero-brand {
    margin-bottom: 14px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .step-item {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }
  .step-badge {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }
  .price-card {
    padding: 34px 26px 30px;
  }
}
/* ---------- video ---------- */
video {
  max-width: 100%;
  height: auto;
}
.video-bleed {
  padding: 72px 0 0;
}
.video-bleed-head {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  margin-bottom: 8px;
  max-width: 20ch;
}
.video-bleed-sub {
  font-size: 0.9rem;
  color: var(--paper-faint);
  margin-bottom: 28px;
}
.video-bleed-frame {
  width: 100%;
  background: #000;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.video-bleed-frame video {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: auto;
}

/* ============ Form validation ============ */
.field .field-error {
  display: none;
  font-size: 0.85rem;
  color: var(--red);
  margin-top: 6px;
}
.field.invalid .field-error {
  display: block;
}
.field.invalid input,
.field.invalid textarea,
.field.invalid select {
  border-color: var(--red);
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}