:root {
  --bg: #0e0e0e;
  --bg-deep: #080808;
  --surface: #171717;
  --surface-2: #1d1d1d;
  --surface-3: #222;
  --border: #3a3300;
  --border-mid: #564d00;
  --gold: #ffd300;
  --gold-soft: #c7a900;
  --gold-dark: #6d5b00;
  --text: #f1f1f1;
  --muted: #8d8d8d;
  --muted-2: #646464;
  --green: #37df78;
  --max: 1220px;
  --pad: clamp(22px, 4vw, 48px);
  --cut: 18px;
  --shadow: 0 32px 90px rgba(0,0,0,.46);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,211,0,.07), transparent 30%),
    linear-gradient(180deg, #0d0d0d 0%, #0b0b0b 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px),
              linear-gradient(rgba(255,255,255,.008) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 75%);
  z-index: -2;
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .06;
  background-image:
    radial-gradient(circle at 20% 20%, #fff 0 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, #fff 0 1px, transparent 1px);
  background-size: 36px 36px, 52px 52px;
  mix-blend-mode: soft-light;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.section-shell {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(10,10,10,.78);
  border-bottom: 1px solid rgba(255,211,0,.1);
}

.nav-shell {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 168px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  color: #bfbfbf;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .2s ease;
}

.desktop-nav a:hover { color: var(--gold); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.language-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: #777;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  padding: 10px 4px;
}

.language-toggle .is-active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: #0b0b0b;
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 13px 17px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.menu-toggle,
.mobile-menu { display: none; }

.hero {
  min-height: 780px;
  padding-top: clamp(72px, 8vw, 110px);
  padding-bottom: 82px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
  position: relative;
}

.hero-copy { position: relative; z-index: 3; }

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(55,223,120,.35);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(55,223,120,.35); }
  70% { box-shadow: 0 0 0 11px rgba(55,223,120,0); }
  100% { box-shadow: 0 0 0 0 rgba(55,223,120,0); }
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 26px;
  font-size: clamp(58px, 7vw, 104px);
  line-height: .91;
  letter-spacing: -.065em;
  font-weight: 950;
}

h1 span { display: block; }

.gold-text,
h2 span {
  color: var(--gold);
}

.hero-lead {
  max-width: 650px;
  color: #aaa;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
  font-weight: 620;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.primary-cta {
  min-height: 60px;
  padding: 0 24px 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(135deg, #ffe035, var(--gold) 48%, #d9b400);
  color: #0b0b0b;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .09em;
  box-shadow: 0 14px 40px rgba(255,211,0,.12);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.primary-cta:hover { filter: brightness(1.06); transform: translateY(-1px); }
.cta-arrow { font-size: 24px; line-height: 1; }

.appstore-soon {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b2b2b2;
}

.appstore-soon .mini-bolt {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-mid);
  color: var(--gold);
  background: #151515;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.appstore-soon strong {
  display: block;
  color: #dedede;
  font-size: 11px;
  letter-spacing: .08em;
}

.appstore-soon span:last-child {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #707070;
}

.hero-proof {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 520px;
  border-top: 1px solid #242424;
  padding-top: 24px;
}

.hero-proof div:not(:last-child) { border-right: 1px solid #242424; }
.hero-proof div { padding-right: 18px; }
.hero-proof div + div { padding-left: 18px; }
.hero-proof strong {
  display: block;
  color: #eee;
  font-size: 19px;
  margin-bottom: 3px;
}
.hero-proof span {
  color: #666;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.hero-visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,211,0,.22), rgba(255,211,0,.07) 32%, transparent 70%);
  filter: blur(14px);
}

.device-stage {
  position: relative;
  width: min(390px, 90%);
  z-index: 2;
}

.device-frame {
  position: relative;
  background: #060606;
  padding: 10px;
  border-radius: 46px;
  border: 1px solid #353535;
  box-shadow: 0 40px 90px rgba(0,0,0,.6), 0 0 0 1px rgba(255,211,0,.06);
}

.device-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,.04);
  pointer-events: none;
  z-index: 3;
}

.device-frame img {
  width: 100%;
  border-radius: 37px;
}

.device-speaker {
  position: absolute;
  z-index: 4;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 25px;
  border-radius: 20px;
  background: #020202;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
}

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(15,15,15,.93);
  border: 1px solid var(--border-mid);
  color: #d8d8d8;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .11em;
  padding: 11px 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
}

.chip-top { top: 15%; right: -16%; }
.chip-bottom { bottom: 18%; left: -22%; }
.status-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 14px rgba(55,223,120,.7);
}
.chip-icon { color: var(--gold); font-size: 18px; }

.pcb {
  position: absolute;
  width: 190px;
  height: 90px;
  opacity: .35;
  pointer-events: none;
}
.pcb::before,
.pcb::after {
  content: "";
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, #6d5b00 22%, #6d5b00 80%, transparent);
}
.pcb::before { width: 100%; top: 25px; }
.pcb::after { width: 72%; top: 58px; }
.pcb-left { left: -120px; top: 180px; }
.pcb-right { right: -90px; top: 160px; transform: scaleX(-1); }

.tool-strip {
  border-top: 1px solid rgba(255,211,0,.13);
  border-bottom: 1px solid rgba(255,211,0,.13);
  background: #111;
  overflow: hidden;
}

.tool-strip-track {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  white-space: nowrap;
  color: #777;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
}

.tool-strip-track span:first-child { color: var(--gold); }
.tool-strip-track i { width: 4px; height: 4px; background: #5c4d00; border-radius: 50%; }

.feature-intro,
.scanner-section,
.ccq-section,
.ecosystem {
  padding-top: clamp(95px, 11vw, 155px);
  padding-bottom: clamp(95px, 11vw, 155px);
}

.section-kicker { margin-bottom: 22px; }

.section-heading-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: clamp(30px, 7vw, 90px);
  align-items: end;
  margin-bottom: 60px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5.3vw, 72px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 950;
}

.section-heading-grid p,
.scanner-copy > p,
.field-copy > p,
.ccq-copy > p,
.pro-copy > p,
.beta-copy > p {
  color: #888;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-card {
  position: relative;
  min-height: 330px;
  padding: 32px 28px;
  background: linear-gradient(145deg, #191919, #151515);
  border: 1px solid #2c2c2c;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  transition: .25s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 60%, rgba(255,211,0,.035));
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-mid);
}

.feature-card.featured { border-color: var(--border-mid); }

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-mid);
  color: var(--gold);
  background: #161405;
  font-size: 30px;
  margin-bottom: 48px;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  text-shadow: 0 0 18px rgba(255,211,0,.34);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 13px;
  letter-spacing: -.025em;
}

.feature-card p {
  color: #777;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-card a {
  position: absolute;
  left: 28px;
  bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.feature-card a span { margin-left: 8px; }

.scanner-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
}

.scanner-copy { position: sticky; top: 125px; align-self: start; }

.scanner-copy h2,
.field-copy h2,
.ccq-copy h2,
.pro-copy h2,
.beta-copy h2 {
  margin-bottom: 26px;
}

.scan-steps {
  list-style: none;
  padding: 0;
  margin: 42px 0 0;
  display: grid;
  gap: 4px;
}

.scan-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #252525;
}

.scan-steps > li > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
}

.scan-steps strong { display: block; font-size: 14px; }
.scan-steps small { display: block; color: #6d6d6d; margin-top: 4px; font-size: 12px; line-height: 1.45; }

.scanner-gallery {
  min-height: 780px;
  position: relative;
}

.shot-card {
  position: absolute;
  width: min(360px, 48%);
  background: #111;
  border: 1px solid var(--border-mid);
  padding: 9px;
  box-shadow: var(--shadow);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.shot-card img { width: 100%; }
.shot-analyse { left: 0; top: 70px; transform: rotate(-2.5deg); }
.shot-result { right: 1%; top: 0; transform: rotate(2.4deg); z-index: 2; }
.shot-label {
  position: absolute;
  z-index: 4;
  left: -16px;
  top: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: #111;
  border: 1px solid var(--border-mid);
  color: #ddd;
  font-size: 10px;
  letter-spacing: .1em;
}
.shot-label span { color: var(--gold); }

.field-section {
  background:
    radial-gradient(circle at 35% 50%, rgba(255,211,0,.08), transparent 33%),
    #0a0a0a;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
  overflow: hidden;
}

.field-grid {
  min-height: 800px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.field-visual {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.phone-cutout {
  width: min(440px, 90%);
  transform: translateY(90px);
  padding: 8px;
  background: #0a0a0a;
  border: 1px solid var(--border-mid);
  border-bottom: 0;
  box-shadow: 0 -30px 90px rgba(255,211,0,.05);
  border-radius: 42px 42px 0 0;
  overflow: hidden;
}

.phone-cutout img { border-radius: 34px 34px 0 0; }

.field-copy { padding: 80px 0; }

.metric-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #292929;
  border-bottom: 1px solid #292929;
}

.metric-grid div { padding: 22px 0; }
.metric-grid div + div { padding-left: 22px; border-left: 1px solid #292929; }
.metric-grid strong { display: block; color: var(--gold); font-size: 22px; }
.metric-grid span {
  display: block;
  margin-top: 4px;
  color: #666;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
}

.ccq-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}

.pill-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pill-row span {
  padding: 10px 12px;
  color: #aaa;
  background: #161616;
  border: 1px solid #303030;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
}

.ccq-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.ccq-halo {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,211,0,.15), transparent 68%);
}

.compact-device {
  width: min(410px, 82%);
  position: relative;
  z-index: 2;
}

.pro-section {
  padding: 20px 0 120px;
}

.pro-panel {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: center;
  gap: 70px;
  padding: clamp(44px, 7vw, 92px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(255,211,0,.13), transparent 28%),
    linear-gradient(145deg, #191706, #111 42%, #0d0d0d);
  border: 1px solid var(--border-mid);
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
}

.pro-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 72px, rgba(255,211,0,.018) 73px);
  pointer-events: none;
}

.pro-badge {
  display: inline-flex;
  padding: 9px 12px;
  margin-bottom: 22px;
  border: 1px solid var(--gold-dark);
  color: var(--gold);
  background: #1f1a00;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .13em;
}

.pro-list {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pro-list li { display: flex; gap: 10px; align-items: center; color: #a7a7a7; font-size: 13px; font-weight: 700; }
.pro-list li span:first-child { color: #0b0b0b; width: 20px; height: 20px; display: grid; place-items: center; background: var(--gold); font-weight: 1000; }

.pro-logo-wrap {
  min-height: 350px;
  position: relative;
  display: grid;
  place-items: center;
}

.pro-logo-wrap img {
  width: min(330px, 76%);
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.5));
}

.pro-ring {
  position: absolute;
  border: 1px solid rgba(255,211,0,.18);
  transform: rotate(45deg);
}

.ring-one { width: 310px; height: 310px; }
.ring-two { width: 230px; height: 230px; border-color: rgba(255,211,0,.09); }

.timeline {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
}

.timeline-item {
  min-height: 180px;
  padding: 30px;
  background: #151515;
  border: 1px solid #2c2c2c;
  position: relative;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.timeline-item.is-now { border-color: var(--border-mid); }
.timeline-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  right: -5px;
  top: 50%;
  border-radius: 50%;
  background: var(--gold);
}
.timeline-item:last-child .timeline-dot { left: -5px; right: auto; background: #555; }
.timeline-item small { display: block; color: var(--gold); font-size: 10px; letter-spacing: .12em; font-weight: 950; margin-bottom: 16px; }
.timeline-item strong { display: block; font-size: 19px; margin-bottom: 9px; }
.timeline-item p { color: #707070; font-size: 13px; line-height: 1.5; margin: 0; }
.timeline-line { height: 1px; background: linear-gradient(90deg, var(--border-mid), #333); }

.beta-section {
  padding: 40px 0 120px;
}

.beta-panel {
  padding: clamp(42px, 6vw, 78px);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
  background:
    linear-gradient(100deg, rgba(255,211,0,.05), transparent 45%),
    #151515;
  border: 1px solid #303030;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.beta-form label {
  display: block;
  margin-bottom: 10px;
  color: #888;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 60px;
  background: #0d0d0d;
  border: 1px solid #3a3a3a;
  padding: 5px;
}

.input-row:focus-within { border-color: var(--gold-dark); }

.input-row input {
  border: 0;
  outline: 0;
  background: transparent;
  color: #eee;
  min-width: 0;
  padding: 0 16px;
}

.input-row input::placeholder { color: #515151; }

.input-row button {
  border: 0;
  cursor: pointer;
  background: var(--gold);
  color: #0b0b0b;
  font-weight: 950;
  font-size: 11px;
  letter-spacing: .08em;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-note,
.form-status {
  margin: 10px 0 0;
  color: #565656;
  font-size: 10px;
  line-height: 1.5;
}

.form-status { color: var(--gold); min-height: 16px; }

.site-footer {
  padding: 74px 0 30px;
  border-top: 1px solid #242424;
  background: #080808;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footer-brand img { width: 190px; }
.footer-brand p { color: #5c5c5c; margin-top: 14px; font-size: 13px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-links div { display: grid; gap: 10px; align-content: start; }
.footer-links strong { color: #ddd; font-size: 12px; margin-bottom: 4px; }
.footer-links a { color: #666; font-size: 12px; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 62px;
  padding-top: 22px;
  border-top: 1px solid #1d1d1d;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #4f4f4f;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .nav-shell { height: 76px; }
  .menu-toggle {
    width: 38px; height: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: #161616;
    border: 1px solid #333;
    padding: 0 10px;
    cursor: pointer;
  }
  .menu-toggle span { height: 1px; width: 100%; background: #ccc; }
  .mobile-menu {
    display: none;
    padding: 18px var(--pad) 22px;
    background: rgba(8,8,8,.97);
    border-top: 1px solid #222;
  }
  .mobile-menu.is-open { display: grid; gap: 4px; }
  .mobile-menu a {
    padding: 13px 0;
    color: #b0b0b0;
    border-bottom: 1px solid #1f1f1f;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
  }
  .hero { grid-template-columns: 1fr 1fr; gap: 35px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .scanner-gallery { min-height: 660px; }
  .field-grid { gap: 45px; }
}

@media (max-width: 800px) {
  :root { --pad: 20px; }
  .nav-cta { display: none; }
  .brand { width: 142px; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 62px;
    min-height: auto;
  }

  h1 { font-size: clamp(58px, 16vw, 82px); }
  .hero-lead { font-size: 16px; }
  .hero-proof { max-width: none; }

  .hero-visual {
    min-height: 620px;
    margin-top: 10px;
  }
  .device-stage { width: min(360px, 84vw); }
  .chip-top { right: -5%; }
  .chip-bottom { left: -5%; }
  .tool-strip-track { justify-content: flex-start; overflow-x: auto; padding: 0 20px; }

  .section-heading-grid,
  .scanner-section,
  .field-grid,
  .ccq-section,
  .pro-panel,
  .beta-panel {
    grid-template-columns: 1fr;
  }

  .section-heading-grid { align-items: start; }
  .feature-grid { grid-template-columns: 1fr 1fr; }

  .scanner-copy { position: static; }
  .scanner-gallery { min-height: 720px; margin-top: 10px; }
  .shot-card { width: 55%; }
  .shot-analyse { top: 85px; }
  .shot-result { top: 0; }

  .field-grid { min-height: auto; }
  .field-visual { order: 2; }
  .field-copy { padding-bottom: 10px; }
  .phone-cutout { transform: translateY(70px); }

  .ccq-copy { order: 1; }
  .ccq-visual { order: 2; min-height: 560px; }

  .pro-list { grid-template-columns: 1fr; }
  .pro-logo-wrap { min-height: 300px; }

  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline-line { height: 70px; width: 1px; justify-self: center; background: linear-gradient(var(--border-mid), #333); }
  .timeline-dot { right: auto; left: 50%; top: auto; bottom: -5px; transform: translateX(-50%); }
  .timeline-item:last-child .timeline-dot { left: 50%; top: -5px; transform: translateX(-50%); }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .language-toggle { font-size: 11px; }
  .hero { padding-top: 48px; }
  .eyebrow { font-size: 10px; letter-spacing: .17em; }
  h1 { font-size: 57px; }
  h2 { font-size: 42px; }
  .hero-actions { align-items: stretch; }
  .primary-cta { width: 100%; }
  .appstore-soon { width: 100%; }
  .hero-proof { grid-template-columns: 1fr 1fr 1fr; }
  .hero-proof span { font-size: 9px; }
  .hero-visual { min-height: 570px; }
  .device-stage { width: 82vw; }
  .floating-chip { font-size: 8px; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 280px; }

  .scanner-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    min-height: auto;
    align-items: start;
  }
  .shot-card {
    position: relative;
    width: 100%;
    inset: auto;
    transform: none;
  }
  .shot-label { left: 6px; top: 34px; }

  .metric-grid { grid-template-columns: 1fr; }
  .metric-grid div + div { border-left: 0; border-top: 1px solid #292929; padding-left: 0; }

  .ccq-visual { min-height: 500px; }
  .compact-device { width: 88%; }

  .pro-panel { padding: 38px 24px; }
  .pro-logo-wrap { min-height: 250px; }
  .ring-one { width: 240px; height: 240px; }
  .ring-two { width: 180px; height: 180px; }

  .input-row { grid-template-columns: 1fr; padding: 5px; }
  .input-row input { min-height: 52px; }
  .input-row button { min-height: 52px; justify-content: space-between; }

  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}


/* =========================================================
   AMPERIQ LANDING V2 — HERO / NAV / ABOVE-THE-FOLD POLISH
   ========================================================= */

.site-header {
  background:
    linear-gradient(180deg, rgba(8,8,8,.96), rgba(8,8,8,.88));
  border-bottom-color: rgba(255,211,0,.12);
}

.nav-shell {
  height: 78px;
}

.brand {
  width: 150px;
  height: 60px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 150px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  gap: 30px;
}

.desktop-nav a {
  font-size: 12px;
  letter-spacing: .11em;
}

.nav-cta {
  padding: 14px 20px;
  box-shadow: 0 8px 28px rgba(255,211,0,.08);
}

.hero {
  min-height: calc(100vh - 78px);
  max-height: 900px;
  padding-top: clamp(34px, 4vh, 52px);
  padding-bottom: clamp(28px, 4vh, 44px);
  grid-template-columns: 1.04fr .96fr;
  gap: clamp(36px, 5vw, 72px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 43%;
  height: 1px;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(255,211,0,.10) 16%,
      rgba(255,211,0,.28) 46%,
      rgba(255,211,0,.12) 78%,
      transparent 100%);
  pointer-events: none;
}

.hero-copy {
  padding-top: 8px;
}

.eyebrow {
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(60px, 6.45vw, 96px);
  line-height: .90;
  margin-bottom: 22px;
  max-width: 760px;
}

.hero-lead {
  max-width: 650px;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 26px;
}

.primary-cta {
  min-height: 56px;
  padding-left: 24px;
  padding-right: 20px;
}

.appstore-soon strong {
  font-size: 10px;
}

.hero-proof {
  margin-top: 30px;
  padding-top: 18px;
}

.hero-visual {
  min-height: 0;
  height: 100%;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  width: 560px;
  height: 560px;
  background:
    radial-gradient(circle,
      rgba(255,211,0,.25) 0%,
      rgba(255,211,0,.10) 28%,
      rgba(255,211,0,.025) 52%,
      transparent 72%);
  filter: blur(10px);
}

.device-stage {
  width: min(430px, 92%);
  transform: translate(8px, 22px);
}

.device-frame {
  padding: 8px;
  border-radius: 50px;
  border-color: #454545;
  box-shadow:
    0 48px 110px rgba(0,0,0,.72),
    0 0 0 1px rgba(255,211,0,.08),
    0 0 70px rgba(255,211,0,.06);
}

.device-frame::before {
  inset: 7px;
  border-radius: 42px;
}

.device-frame img {
  border-radius: 41px;
}

.device-speaker {
  top: 17px;
  width: 92px;
  height: 24px;
}

.chip-top {
  top: 17%;
  right: -11%;
}

.chip-bottom {
  bottom: 15%;
  left: -15%;
}

.floating-chip {
  border-color: rgba(255,211,0,.42);
  background: rgba(12,12,12,.96);
}

.pcb-left {
  left: -105px;
  top: 34%;
}

.pcb-right {
  right: -65px;
  top: 31%;
}

@media (min-width: 1500px) {
  .section-shell,
  .nav-shell {
    width: min(1360px, calc(100% - 2 * var(--pad)));
  }

  .hero {
    grid-template-columns: 1.08fr .92fr;
  }

  .device-stage {
    width: min(455px, 94%);
  }
}

@media (max-width: 1100px) {
  .nav-shell {
    height: 72px;
  }

  .brand {
    width: 140px;
    height: 54px;
  }

  .brand img {
    width: 140px;
    max-height: 52px;
  }

  .hero {
    min-height: auto;
    max-height: none;
  }
}

@media (max-width: 800px) {
  .hero {
    overflow: visible;
    padding-top: 46px;
    padding-bottom: 74px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-proof {
    margin-top: 28px;
  }

  .device-stage {
    transform: none;
  }
}


/* =========================================================
   AMPERIQ LANDING V3 — SECTION POLISH
   ========================================================= */

/* HERO — final micro-fixes */
.brand,
.brand img {
  width: 168px;
}

.chip-top {
  display: none;
}

/* SCANNER IA — stronger visual narrative */
.scanner-section {
  position: relative;
}

.scanner-section::before {
  content: "";
  position: absolute;
  right: -8%;
  top: 18%;
  width: 55%;
  height: 58%;
  background:
    radial-gradient(circle at 48% 50%, rgba(255,211,0,.10), transparent 48%);
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}

.scanner-gallery {
  min-height: 820px;
  isolation: isolate;
}

.scanner-gallery::before {
  content: "AI";
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%,-50%);
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  color: #0b0b0b;
  background: var(--gold);
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: .09em;
  z-index: 5;
  box-shadow:
    0 0 0 10px rgba(255,211,0,.06),
    0 0 45px rgba(255,211,0,.20);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.scanner-gallery::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  top: 48%;
  height: 1px;
  background:
    linear-gradient(90deg,
      rgba(255,211,0,.05),
      rgba(255,211,0,.70) 42%,
      rgba(255,211,0,.70) 58%,
      rgba(255,211,0,.05));
  z-index: 1;
  box-shadow: 0 0 18px rgba(255,211,0,.25);
}

.shot-card {
  width: min(390px, 49%);
  padding: 8px;
  background:
    linear-gradient(145deg, #171717, #0e0e0e);
  border-color: rgba(255,211,0,.38);
}

.shot-analyse {
  left: -1%;
  top: 95px;
  transform: rotate(-2deg);
}

.shot-result {
  right: -1%;
  top: 8px;
  transform: rotate(2deg);
}

.shot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.025);
  pointer-events: none;
}

.shot-label {
  box-shadow: 0 14px 28px rgba(0,0,0,.34);
}

/* COFFRE — integrated phone + field feel */
.field-section {
  position: relative;
  background:
    radial-gradient(circle at 28% 54%, rgba(255,211,0,.12), transparent 28%),
    linear-gradient(180deg, #0b0b0b, #090909);
}

.field-section::before,
.field-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: .28;
}

.field-section::before {
  left: 0;
  right: 50%;
  top: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,211,0,.55), transparent);
}

.field-section::after {
  width: 150px;
  height: 150px;
  right: 6%;
  bottom: 12%;
  border-right: 1px solid rgba(255,211,0,.18);
  border-bottom: 1px solid rgba(255,211,0,.18);
}

.phone-cutout {
  width: min(470px, 92%);
  transform: translateY(82px);
  box-shadow:
    0 -30px 100px rgba(255,211,0,.08),
    0 22px 60px rgba(0,0,0,.55);
}

.field-copy {
  position: relative;
  z-index: 2;
}

.metric-grid {
  background: rgba(18,18,18,.65);
  border-left: 1px solid #292929;
  border-right: 1px solid #292929;
}

/* CCQ — stronger Quebec work module */
.ccq-section {
  position: relative;
}

.ccq-section::before {
  content: "QUÉBEC";
  position: absolute;
  right: 0;
  top: 15%;
  color: rgba(255,255,255,.018);
  font-size: clamp(92px, 12vw, 180px);
  font-weight: 1000;
  letter-spacing: -.06em;
  pointer-events: none;
  z-index: -1;
}

.ccq-visual {
  min-height: 640px;
}

.ccq-halo {
  width: 520px;
  height: 520px;
  background:
    radial-gradient(circle,
      rgba(255,211,0,.18) 0%,
      rgba(255,211,0,.07) 32%,
      transparent 70%);
}

.compact-device {
  width: min(440px, 86%);
  box-shadow:
    0 44px 100px rgba(0,0,0,.58),
    0 0 70px rgba(255,211,0,.035);
}

.pill-row span {
  transition: .2s ease;
}

.pill-row span:hover {
  color: #111;
  border-color: var(--gold);
  background: var(--gold);
}

/* PRO — premium tier treatment */
.pro-section {
  padding-top: 35px;
  padding-bottom: 135px;
}

.pro-panel {
  min-height: 660px;
  background:
    radial-gradient(circle at 77% 50%, rgba(255,211,0,.19), transparent 24%),
    linear-gradient(125deg, #211b00 0%, #151300 16%, #111 43%, #0b0b0b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.025),
    0 44px 120px rgba(0,0,0,.30);
}

.pro-panel::after {
  content: "PRO";
  position: absolute;
  right: -1%;
  bottom: -13%;
  color: rgba(255,211,0,.025);
  font-size: clamp(170px, 23vw, 350px);
  font-weight: 1000;
  letter-spacing: -.10em;
  pointer-events: none;
}

.pro-badge {
  box-shadow: inset 0 0 26px rgba(255,211,0,.04);
}

.pro-logo-wrap img {
  width: min(360px, 82%);
  filter:
    drop-shadow(0 24px 32px rgba(0,0,0,.58))
    drop-shadow(0 0 24px rgba(255,211,0,.08));
}

.ring-one {
  width: 340px;
  height: 340px;
  border-color: rgba(255,211,0,.25);
}

.ring-two {
  width: 245px;
  height: 245px;
}

/* ECOSYSTEM — better hierarchy */
.ecosystem {
  padding-top: 120px;
}

.timeline-item {
  background:
    linear-gradient(145deg, #181818, #121212);
}

.timeline-item.is-now {
  box-shadow: inset 0 0 40px rgba(255,211,0,.025);
}

/* BETA — much stronger conversion block */
.beta-section {
  padding-top: 35px;
  padding-bottom: 140px;
}

.beta-panel {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background:
    radial-gradient(circle at 18% 38%, rgba(255,211,0,.12), transparent 30%),
    linear-gradient(120deg, #1a1808 0%, #141414 42%, #101010 100%);
  border-color: var(--border-mid);
  box-shadow:
    0 36px 100px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.02);
}

.beta-panel::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -90px;
  top: -100px;
  transform: rotate(45deg);
  border: 1px solid rgba(255,211,0,.12);
  box-shadow:
    0 0 0 55px rgba(255,211,0,.018),
    0 0 0 110px rgba(255,211,0,.012);
  pointer-events: none;
}

.beta-copy,
.beta-form {
  position: relative;
  z-index: 2;
}

.beta-form {
  padding: 28px;
  background: rgba(7,7,7,.52);
  border: 1px solid #2f2f2f;
  backdrop-filter: blur(8px);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.input-row {
  min-height: 64px;
}

.input-row button {
  min-width: 180px;
  justify-content: space-between;
}

.input-row button:hover {
  filter: brightness(1.05);
}

/* Responsive V3 */
@media (max-width: 1100px) {
  .brand,
  .brand img {
    width: 150px;
  }

  .scanner-gallery {
    min-height: 700px;
  }

  .scanner-gallery::before {
    width: 62px;
    height: 62px;
  }

  .ccq-visual {
    min-height: 590px;
  }
}

@media (max-width: 800px) {
  .scanner-gallery {
    min-height: 720px;
  }

  .scanner-gallery::before,
  .scanner-gallery::after {
    display: none;
  }

  .shot-card {
    width: 56%;
  }

  .ccq-section::before {
    display: none;
  }

  .beta-panel {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .brand,
  .brand img {
    width: 142px;
  }

  .scanner-gallery {
    min-height: auto;
  }

  .shot-card {
    width: 100%;
  }

  .beta-form {
    padding: 18px;
  }

  .input-row button {
    min-width: 0;
  }
}


/* =========================================================
   AMPERIQ LANDING V4 — HEADER LOGO SCALE
   ========================================================= */

.nav-shell {
  height: 88px;
}

.brand {
  width: 220px;
  height: 72px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 220px;
  max-height: 70px;
  object-fit: contain;
  object-position: left center;
}

.hero {
  min-height: calc(100vh - 88px);
}

@media (max-width: 1100px) {
  .nav-shell {
    height: 78px;
  }

  .brand {
    width: 190px;
    height: 62px;
  }

  .brand img {
    width: 190px;
    max-height: 60px;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 165px;
    height: 56px;
  }

  .brand img {
    width: 165px;
    max-height: 54px;
  }
}


/* =========================================================
   AMPERIQ LANDING V5 — MOBILE RESPONSIVE FIX
   Desktop V4 remains unchanged.
   ========================================================= */

@media (max-width: 800px) {
  .nav-shell {
    height: 72px;
  }

  .brand {
    width: 150px;
    height: 54px;
  }

  .brand img {
    width: 150px;
    max-height: 52px;
  }

  .hero {
    min-height: auto;
    max-height: none;
    overflow: visible;
    padding-top: 48px;
    padding-bottom: 76px;
  }

  .hero-visual {
    height: auto;
    min-height: 600px;
    margin-top: 34px;
    align-self: auto;
    overflow: visible;
  }

  .device-stage {
    width: min(360px, 88vw);
    transform: none;
    margin-inline: auto;
  }

  .chip-bottom {
    display: none;
  }

  .hero-glow {
    width: min(520px, 115vw);
    height: min(520px, 115vw);
  }

  .scanner-section {
    gap: 36px;
  }

  .scanner-gallery {
    min-height: auto;
    margin-top: 10px;
  }

  .field-visual {
    padding-top: 30px;
  }

  .phone-cutout {
    transform: none;
    width: min(430px, 92vw);
    margin-inline: auto;
    border: 1px solid var(--border-mid);
    border-radius: 38px;
    overflow: hidden;
  }

  .phone-cutout img {
    border-radius: 30px;
  }

  .ccq-visual {
    min-height: auto;
    padding: 40px 0 20px;
  }

  .compact-device {
    width: min(420px, 88vw);
  }
}

@media (max-width: 560px) {
  :root {
    --pad: 18px;
  }

  .nav-shell {
    height: 68px;
  }

  .brand {
    width: 138px;
    height: 50px;
  }

  .brand img {
    width: 138px;
    max-height: 48px;
  }

  .hero {
    padding-top: 38px;
    padding-bottom: 68px;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
    letter-spacing: .15em;
  }

  h1 {
    font-size: clamp(49px, 14.2vw, 58px);
    line-height: .91;
    letter-spacing: -.058em;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 15px;
  }

  .primary-cta {
    min-height: 54px;
  }

  .hero-proof {
    margin-top: 25px;
    gap: 0;
  }

  .hero-proof div {
    padding-right: 10px;
  }

  .hero-proof div + div {
    padding-left: 10px;
  }

  .hero-proof strong {
    font-size: 16px;
  }

  .hero-proof span {
    font-size: 8px;
  }

  .hero-visual {
    min-height: 560px;
    margin-top: 26px;
  }

  .device-stage {
    width: min(344px, 89vw);
  }

  .device-frame {
    border-radius: 42px;
    padding: 7px;
  }

  .device-frame img {
    border-radius: 35px;
  }

  .device-frame::before {
    border-radius: 36px;
  }

  .device-speaker {
    top: 15px;
    width: 82px;
    height: 22px;
  }

  .tool-strip-track {
    min-height: 56px;
  }

  .feature-intro,
  .scanner-section,
  .ccq-section,
  .ecosystem {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  h2 {
    font-size: clamp(38px, 11.2vw, 44px);
  }

  .section-heading-grid {
    margin-bottom: 38px;
  }

  .feature-card {
    min-height: 255px;
    padding: 26px 22px;
  }

  .feature-icon {
    margin-bottom: 34px;
  }

  /* Scanner: one strong visual per row on mobile */
  .scanner-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
    margin-top: 34px;
    overflow: visible;
  }

  .scanner-gallery::before,
  .scanner-gallery::after {
    display: none;
  }

  .shot-card {
    position: relative;
    inset: auto;
    width: min(100%, 360px);
    margin-inline: auto;
    transform: none;
  }

  .shot-analyse,
  .shot-result {
    left: auto;
    right: auto;
    top: auto;
    transform: none;
  }

  .shot-label {
    left: 8px;
    top: 34px;
  }

  .field-grid {
    gap: 22px;
    padding-top: 82px;
  }

  .field-copy {
    padding: 0;
  }

  .field-visual {
    padding-top: 24px;
  }

  .phone-cutout {
    width: min(360px, 92vw);
    border-radius: 34px;
  }

  .phone-cutout img {
    border-radius: 27px;
  }

  .metric-grid {
    margin-top: 34px;
  }

  .ccq-section {
    gap: 20px;
  }

  .ccq-visual {
    padding-top: 28px;
  }

  .ccq-halo {
    width: 105vw;
    height: 105vw;
    max-width: 480px;
    max-height: 480px;
  }

  .compact-device {
    width: min(350px, 90vw);
  }

  .pro-section {
    padding-top: 15px;
    padding-bottom: 90px;
  }

  .pro-panel {
    min-height: auto;
  }

  .beta-section {
    padding-bottom: 90px;
  }

  .beta-panel {
    gap: 32px;
  }

  .footer-grid {
    gap: 38px;
  }
}


/* =========================================================
   AMPERIQ LANDING V6 — MOBILE WIDTH / FLOW HARDENING
   Desktop remains unchanged.
   ========================================================= */

@media (max-width: 800px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .section-shell,
  .nav-shell {
    width: calc(100% - 36px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    display: flex;
    flex-direction: column;
    width: calc(100% - 36px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
  }

  .hero-copy {
    order: 1;
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .hero-visual {
    order: 2;
    width: 100%;
    max-width: 100%;
  }

  .device-stage {
    max-width: 100%;
  }

  .feature-intro,
  .scanner-section,
  .ccq-section,
  .ecosystem {
    width: calc(100% - 36px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .section-heading-grid,
  .feature-grid,
  .scanner-section,
  .field-grid,
  .ccq-section,
  .pro-panel,
  .beta-panel {
    width: 100%;
    max-width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    width: 100%;
    max-width: 100%;
  }

  .scanner-section {
    display: flex;
    flex-direction: column;
  }

  .scanner-copy,
  .scanner-gallery {
    width: 100%;
    max-width: 100%;
  }

  .field-grid {
    display: flex;
    flex-direction: column;
  }

  .field-copy,
  .field-visual {
    width: 100%;
    max-width: 100%;
  }

  .field-copy {
    order: 1;
  }

  .field-visual {
    order: 2;
  }

  .ccq-section {
    display: flex;
    flex-direction: column;
  }

  .ccq-copy,
  .ccq-visual {
    width: 100%;
    max-width: 100%;
  }

  .pro-panel,
  .beta-panel {
    display: flex;
    flex-direction: column;
  }

  .pro-copy,
  .pro-logo-wrap,
  .beta-copy,
  .beta-form {
    width: 100%;
    max-width: 100%;
  }

  .tool-strip {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .section-shell,
  .nav-shell,
  .hero,
  .feature-intro,
  .scanner-section,
  .ccq-section,
  .ecosystem {
    width: calc(100% - 28px);
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero-visual {
    min-width: 0;
  }

  .feature-card,
  .shot-card,
  .phone-cutout,
  .compact-device {
    max-width: 100%;
  }

  .scanner-gallery {
    padding-left: 0;
    padding-right: 0;
  }
}


/* =========================================================
   AMPERIQ LANDING V7 — PRIVATE BETA APPLICATION
   ========================================================= */

.beta-application-form {
  display: block;
}

.form-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid #2b2b2b;
}

.form-step {
  color: var(--gold);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .13em;
}

.form-heading strong {
  color: #747474;
  font-size: 10px;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: .055em;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-field {
  min-width: 0;
}

.form-field label,
.iphone-fieldset legend {
  display: block;
  margin-bottom: 8px;
  color: #858585;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #333;
  outline: none;
  background: #0d0d0d;
  color: #ededed;
  padding: 13px 14px;
  border-radius: 0;
  transition: .2s ease;
}

.form-field input,
.form-field select {
  min-height: 50px;
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.45;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 1px rgba(255,211,0,.08);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #4c4c4c;
}

.form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #777 50%),
    linear-gradient(135deg, #777 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 21px,
    calc(100% - 12px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.iphone-fieldset {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 0;
  margin: 20px 0;
}

.iphone-fieldset legend {
  width: 100%;
}

.radio-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.radio-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-option span {
  min-width: 84px;
  padding: 11px 16px;
  text-align: center;
  color: #8b8b8b;
  background: #101010;
  border: 1px solid #333;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.radio-option input:checked + span {
  color: #0b0b0b;
  background: var(--gold);
  border-color: var(--gold);
}

.motivation-field {
  margin-top: 2px;
}

.turnstile-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  margin: 20px 0 14px;
  overflow: hidden;
}

.application-submit {
  width: 100%;
  min-height: 58px;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 20px;
  color: #0a0a0a;
  background: linear-gradient(135deg, #ffe13c, var(--gold) 55%, #d5b200);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .085em;
  text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.application-submit:hover {
  filter: brightness(1.05);
}

.application-submit:disabled {
  cursor: wait;
  filter: grayscale(.55) brightness(.7);
}

.form-status {
  margin-top: 12px;
  min-height: 18px;
  font-weight: 750;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: #ff6868;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 560px) {
  .form-heading {
    display: grid;
    gap: 7px;
  }

  .form-heading strong {
    text-align: left;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .turnstile-shell {
    width: 100%;
  }
}
