/* lumennyc.studio. Visual system matched to stonesystems.io: Sora, navy + amber,
   alternating dark/light sections joined by angled wedges. Mobile first.
   Accent contrast is deliberately NOT copied: Kai sets white on amber (2.09:1),
   this site sets navy on amber (7.49:1) so every accent button passes WCAG AA. */

@font-face {
  font-family: "Sora";
  src: url("/assets/sora.woff2") format("woff2-variations"),
       url("/assets/sora.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #1F2236;
  --navy-deep: #111827;
  --amber: #E8A743;
  --amber-dark: #C98A2C;
  --amber-text: #8C5A0C;
  --white: #FFFFFF;
  --grey: #F1F1F1;
  --grey-2: #F8F9FA;
  --muted: #C4C6CD;
  --body: #3A3F52;
  --line: #E2E3E8;
  --line-navy: rgba(255,255,255,.14);

  --fs-h1: clamp(2.5rem, 1.52rem + 4.02vw, 4.75rem);
  --fs-h2: clamp(1.875rem, 1.45rem + 1.74vw, 2.85rem);
  --fs-h3: clamp(1.375rem, 1.18rem + 0.8vw, 2rem);
  --fs-body: clamp(1.0625rem, 1.039rem + 0.095vw, 1.125rem);
  --fs-small: clamp(1rem, 0.98rem + 0.07vw, 1.0625rem);

  --font: "Sora", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --gutter: 20px;
  --wrap: 1180px;
  --r: 10px;
  --r-sm: 5px;
  --tap: 56px;
  --measure: 68ch;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0; background: var(--white); color: var(--body);
  font-family: var(--font); font-size: var(--fs-body); font-weight: 400;
  line-height: 1.6; overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; color: var(--navy); line-height: 1.1; letter-spacing: -0.02em; font-weight: 800; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-body); line-height: 1.35; letter-spacing: -0.01em; }
p { margin: 0 0 1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
strong, b { font-weight: 700; }

:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; border-radius: 2px; }
.on-navy :focus-visible, .on-amber :focus-visible { outline-color: var(--white); }

.skip {
  position: absolute; left: var(--gutter); top: -120px; z-index: 80;
  background: var(--amber); color: var(--navy); font-weight: 700;
  padding: 14px 18px; border-radius: var(--r-sm); text-decoration: none;
}
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 900px; }

/* Sections and wedges */
.s { padding: 56px 0; position: relative; }
.on-white { background: var(--white); }
.on-grey  { background: var(--grey-2); }
.on-navy  { background: var(--navy); color: var(--muted); }
.on-navy h1, .on-navy h2, .on-navy h3, .on-navy h4 { color: var(--white); }
.on-navy strong { color: var(--white); }

.wedge { display: block; width: 100%; height: clamp(26px, 3.6vw, 58px); }
.wedge path { fill: currentColor; }
.wedge-navy { color: var(--navy); }
.wedge-white { color: var(--white); }
.wedge-grey { color: var(--grey-2); }

.eyebrow-amber { color: var(--amber); font-weight: 700; font-size: var(--fs-small); margin: 0 0 10px; }
.lead { font-size: clamp(1.09rem, 1.02rem + 0.3vw, 1.22rem); max-width: 62ch; }
.center { text-align: center; }
.center p, .center .lead { margin-left: auto; margin-right: auto; }
.fine { font-size: var(--fs-small); color: #6B7080; max-width: var(--measure); }
.on-navy .fine { color: var(--muted); }
.h2-sub { margin-top: 14px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--tap); padding: 14px 30px;
  font: inherit; font-weight: 700; font-size: 1.0625rem; line-height: 1.25;
  text-align: center; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; border-radius: var(--r-sm);
  background: var(--amber); color: var(--navy);
  transition: background-color .15s ease, color .15s ease;
}
@media (prefers-reduced-motion: reduce) { .btn { transition: none; } }
.btn:hover { background: var(--amber-dark); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--grey); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.on-navy .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-block { display: flex; width: 100%; }
.textlink { font-weight: 700; color: var(--navy); text-decoration-color: var(--amber); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.on-navy .textlink { color: var(--white); }

/* Header */
.site-head { position: sticky; top: 0; z-index: 60; background: var(--white); border-bottom: 1px solid var(--line); }
.head-row { display: flex; align-items: center; gap: 10px; min-height: 68px; padding: 10px var(--gutter);
  width: 100%; max-width: var(--wrap); margin: 0 auto; }
.mark { font-weight: 800; font-size: 1.32rem; letter-spacing: -0.03em; color: var(--navy);
  text-decoration: none; margin-right: auto; }
.mark b { color: var(--amber); }
.nav-wide { display: none; }
.nav-wide a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 13px;
  font-weight: 600; font-size: 1rem; color: var(--navy); text-decoration: none; }
.nav-wide a:hover { color: var(--amber-text); text-decoration: underline; text-underline-offset: 4px; }
.nav-narrow > summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center;
  justify-content: center; min-height: 46px; padding: 0 14px; font-weight: 700; color: var(--navy);
  border: 2px solid var(--navy); border-radius: var(--r-sm); background: var(--white); }
.nav-narrow > summary::-webkit-details-marker { display: none; }
.nav-narrow[open] > summary { background: var(--navy); color: var(--white); }
.nav-narrow .menu-panel { position: absolute; left: 0; right: 0; background: var(--white);
  border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(17,24,39,.12); padding: 6px var(--gutter) 14px; }
.nav-narrow .menu-panel a { display: flex; align-items: center; min-height: 52px;
  border-bottom: 1px solid var(--line); font-weight: 600; color: var(--navy); text-decoration: none; }
.nav-narrow .menu-panel a:last-child { border-bottom: 0; }
.head-cta { min-height: 46px; padding: 10px 16px; font-size: .97rem; }

/* Phone mockup, CSS drawn */
.phone { position: relative; width: min(268px, 74vw); aspect-ratio: 9 / 19; background: #0B0E16;
  border-radius: 34px; padding: 9px; box-shadow: 0 26px 50px rgba(17,24,39,.34); flex: none; }
.phone::before { content: ""; position: absolute; top: 15px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 20px; border-radius: 12px; background: #0B0E16; z-index: 3; }
.phone-screen { width: 100%; height: 100%; border-radius: 26px; overflow: hidden; background: var(--white);
  position: relative; }
.phone-screen > img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.phone-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.phone-cap { font-size: .875rem; color: #6B7080; font-weight: 600; margin: 0; }
.on-navy .phone-cap { color: var(--muted); }

/* Hero */
.hero { background: var(--navy); color: var(--muted); padding: 40px 0 0; }
.hero-grid { display: grid; gap: 34px; align-items: center; }
.hero h1 { margin-bottom: 18px; }
.hero .lead { color: var(--muted); }
.hero-price { font-weight: 700; color: var(--white); font-size: clamp(1.1rem, 1rem + 0.4vw, 1.3rem); margin: 18px 0 24px; }
.hero-price b { color: var(--amber); font-weight: 800; }
.trust { display: grid; gap: 16px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line-navy); }
.trust li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; line-height: 1.45; color: var(--muted); }
.trust svg { flex: none; width: 24px; height: 24px; color: var(--amber); margin-top: 1px; }

/* Feature blocks */
.fblock { display: grid; gap: 30px; align-items: center; padding: 34px 0; }
.fblock + .fblock { border-top: 1px solid var(--line); }
.fblock .italic { font-style: italic; color: #5C6172; margin: 10px 0 22px; max-width: 54ch; }
.checks { display: grid; gap: 18px; margin-bottom: 26px; }
.checks li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; }
.checks svg { width: 24px; height: 24px; color: var(--amber); margin-top: 2px; }
.checks b { display: block; color: var(--amber-text); font-weight: 700; }
.checks span { display: block; color: var(--body); font-size: var(--fs-small); line-height: 1.5; }

/* Chat + lockscreen illustrations inside a phone */
.ill { height: 100%; background: linear-gradient(180deg, #1F2236 0%, #2B2F48 100%); padding: 42px 12px 14px;
  display: flex; flex-direction: column; gap: 9px; }
.ill-bar { position: absolute; top: 0; left: 0; right: 0; height: 36px; background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: .75rem; font-weight: 700; letter-spacing: .02em; }
.bub { max-width: 86%; padding: 9px 11px; border-radius: 13px; font-size: .78rem; line-height: 1.4; }
.bub-bot { background: #fff; color: #1F2236; border-bottom-left-radius: 4px; }
.bub-you { background: var(--amber); color: #1F2236; align-self: flex-end; border-bottom-right-radius: 4px; font-weight: 600; }
.ill-lock { height: 100%; background: linear-gradient(170deg, #263049 0%, #131726 100%); padding: 40px 12px 14px;
  display: flex; flex-direction: column; gap: 10px; }
.lock-time { color: #fff; text-align: center; font-size: 2rem; font-weight: 700; letter-spacing: -.02em; margin: 14px 0 18px; }
.lock-card { background: rgba(255,255,255,.93); border-radius: 12px; padding: 9px 11px; }
.lock-card .t { font-size: .75rem; font-weight: 700; color: #545A6B; letter-spacing: .04em; }
.lock-card .m { font-size: .84rem; color: #1F2236; font-weight: 600; }
.lock-sent { background: var(--amber); color: #1F2236; border-radius: 12px; padding: 9px 11px; font-size: .8rem; line-height: 1.4; font-weight: 600; }

/* Trades */
.trades { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 30px; }
.trade { border-radius: var(--r); overflow: hidden; background: var(--navy-deep); position: relative; }
.trade img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.trade span { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 12px 11px;
  background: linear-gradient(180deg, rgba(17,24,39,0) 0%, rgba(17,24,39,.92) 62%);
  color: #fff; font-weight: 700; font-size: .95rem; }

/* Steps */
.steps { display: grid; gap: 30px; margin-top: 34px; position: relative; }
.step { display: grid; grid-template-columns: 62px 1fr; gap: 16px; align-items: start; position: relative; }
.step-n { width: 58px; height: 58px; border-radius: 50%; background: var(--amber); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.5rem; flex: none; z-index: 2; }
.step-dur { color: var(--amber-text); font-weight: 700; font-size: var(--fs-small); margin: 4px 0 8px; }
.step h3 { font-size: 1.22rem; }
.step::after { content: ""; position: absolute; left: 29px; top: 62px; bottom: -34px; width: 0;
  border-left: 3px dashed #D6D8DE; z-index: 1; }
.steps .step:last-child::after { display: none; }

/* Price card */
.pricecard { background: var(--amber); color: var(--navy); border-radius: var(--r);
  padding: 30px 22px; max-width: 520px; margin: 0 auto; box-shadow: 0 24px 50px rgba(31,34,54,.18); }
.pricecard .plan-label { font-weight: 800; font-size: .875rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy); margin: 0 0 8px; text-align: center; }
.pricecard h3 { color: var(--navy); text-align: center; font-size: 1.6rem; margin-bottom: 14px; }
.pricecard .amt { text-align: center; font-size: clamp(3.2rem, 2.4rem + 3.4vw, 4.6rem); font-weight: 800;
  color: var(--navy); line-height: 1; letter-spacing: -.03em; }
.pricecard .per { text-align: center; font-weight: 700; margin: 6px 0 20px; color: #4A3206; }
.pricecard ul { margin: 0 0 22px; border-top: 1px solid rgba(31,34,54,.22); }
.pricecard li { padding: 11px 2px; border-bottom: 1px solid rgba(31,34,54,.22);
  font-weight: 600; font-size: var(--fs-small); color: var(--navy); text-align: center; }
.under-card { text-align: center; margin: 16px auto 0; font-size: var(--fs-small); color: #6B7080; max-width: 42ch; }

/* Included / excluded columns */
.twocol { display: grid; gap: 26px; margin-top: 40px; }
.colhead { background: var(--navy); color: var(--white); font-weight: 700; border-radius: var(--r-sm);
  padding: 13px 16px; margin: 0 0 12px; font-size: 1.02rem; }
.acc { border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--white); margin-bottom: 8px; }
.acc summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 14px; min-height: 52px; padding: 12px 15px; font-weight: 600; color: var(--navy); font-size: var(--fs-small); }
.acc summary::-webkit-details-marker { display: none; }
.acc .chev { flex: none; width: 18px; height: 18px; color: var(--navy); transition: transform .18s ease; }
@media (prefers-reduced-motion: reduce) { .acc .chev { transition: none; } }
.acc[open] .chev { transform: rotate(180deg); }
.acc .body { padding: 0 15px 15px; font-size: var(--fs-small); color: var(--body); }
.plainlist li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; padding: 10px 2px;
  border-bottom: 1px solid var(--line); font-size: var(--fs-small); }
.plainlist li:last-child { border-bottom: 0; }
.plainlist svg { width: 18px; height: 18px; color: #9AA0B0; margin-top: 3px; }

/* Calculator panel */
.calc { background: var(--navy); color: var(--muted); border-radius: var(--r); padding: 26px 22px; margin-top: 40px; }
.calc h3 { color: var(--white); font-size: 1.28rem; margin-bottom: 6px; }
.calc label { display: block; font-weight: 700; color: var(--white); margin: 16px 0 10px; }
.calc-field { display: flex; align-items: stretch; background: #fff; border-radius: var(--r-sm);
  overflow: hidden; max-width: 260px; }
.calc-field .unit { display: flex; align-items: center; padding: 0 15px; background: var(--amber);
  color: var(--navy); font-weight: 800; }
.calc input { font: inherit; font-weight: 700; border: 0; padding: 14px; min-height: 56px; width: 100%;
  background: #fff; color: var(--navy); }
.calc input:focus-visible { outline: 3px solid var(--amber); outline-offset: -3px; }
.calc-out { margin-top: 18px; font-weight: 700; color: var(--amber); min-height: 3em; max-width: 54ch; line-height: 1.5; }
.calc-out:empty { min-height: 0; }

/* Promise cards */
.promises { display: grid; gap: 22px; margin-top: 34px; }
.promise { position: relative; background: var(--navy-deep); border: 2px solid var(--amber);
  border-radius: var(--r); padding: 30px 22px 26px; }
.promise::before { content: ""; position: absolute; inset: 6px; border: 1px solid rgba(232,167,67,.42);
  border-radius: 6px; pointer-events: none; }
.promise .shield { width: 42px; height: 42px; color: var(--amber); margin-bottom: 14px; }
.promise .fig { font-size: clamp(2.3rem, 1.8rem + 2.1vw, 3.1rem); font-weight: 800; color: var(--white);
  line-height: 1; letter-spacing: -.03em; }
.promise .figlabel { color: var(--amber); font-weight: 700; margin: 8px 0 16px; }
.promise p { color: var(--muted); }
.promise hr { border: 0; border-top: 1px solid var(--line-navy); margin: 18px 0; }
.promise .miss { color: var(--amber); font-weight: 800; }
.promise .cite { font-size: 1rem; color: #8E94A6; margin-top: 16px; }
.promise .cite a { color: #8E94A6; }
.seal { position: absolute; top: 16px; right: 16px; width: 82px; height: 82px; border-radius: 50%;
  border: 2px dashed var(--amber); color: var(--amber); display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: .75rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  line-height: 1.2; padding: 6px; }

/* Quiet panel */
.quiet { border: 2px solid var(--line); border-radius: var(--r); padding: 26px 22px; background: var(--white); }

/* Fine print cards */
.fpgrid { display: grid; gap: 14px; margin-top: 30px; }
.fpcard { background: var(--navy); border-radius: var(--r); padding: 22px 20px; }
.fpcard svg { width: 28px; height: 28px; color: var(--amber); margin-bottom: 12px; }
.fpcard h4 { color: var(--white); margin-bottom: 6px; }
.fpcard p { color: var(--muted); font-size: var(--fs-small); margin: 0; }

/* Samples row */
.samplerow { display: grid; gap: 34px; margin-top: 34px; justify-items: center; }
.samplerow .trade-name { font-weight: 700; color: var(--white); margin: 0; }

/* FAQ bars */
.faq { margin-top: 30px; max-width: 900px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-sm); margin-bottom: 10px; }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: var(--tap); padding: 14px 18px; font-weight: 700; color: var(--navy); }
.faq summary::-webkit-details-marker { display: none; }
.faq .chev { flex: none; width: 20px; height: 20px; transition: transform .18s ease; }
@media (prefers-reduced-motion: reduce) { .faq .chev { transition: none; } }
.faq details[open] { background: var(--amber); border-color: var(--amber); }
.faq details[open] summary { color: var(--navy); }
.faq details[open] .chev { transform: rotate(180deg); }
.faq .answer { padding: 0 18px 18px; color: var(--navy); }
.faq details[open] .answer { color: #3A2A08; }

/* Talk panel */
.talk { background: var(--navy); border-radius: var(--r); padding: 32px 24px; color: var(--muted); }
.talk h2 { margin-bottom: 12px; }

/* Booking + form */
.calendly-holder { margin-top: 22px; border-radius: var(--r); overflow: hidden; background: var(--white);
  border: 1px solid var(--line); }
.calendly-inline-widget { width: 100%; height: 1280px; }
@media (min-width: 700px) { .calendly-inline-widget { height: 1000px; } }
@media (min-width: 900px) { .calendly-inline-widget { height: 820px; } }
.calendly-fallback { padding: 20px; }

.askform { margin-top: 22px; max-width: 620px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.field input, .field textarea { font: inherit; width: 100%; padding: 14px; min-height: var(--tap);
  background: #fff; color: var(--navy); border: 1px solid #C9CCD6; border-radius: var(--r-sm); }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--amber); outline-offset: -1px; }
.optional { font-weight: 400; color: #6B7080; }
.consent { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 22px; max-width: var(--measure); }
.consent input { width: 26px; height: 26px; min-width: 26px; margin: 2px 0 0; accent-color: var(--amber); }
.consent span { font-size: var(--fs-small); }
.form-status { margin-top: 15px; font-weight: 700; max-width: var(--measure); }
.form-status:empty { display: none; }
.form-status[data-state="ok"] { color: #1C6B3A; }
.form-status[data-state="bad"] { color: #96331F; }

/* Video */
.video-frame { position: relative; border-radius: var(--r); overflow: hidden; background: var(--navy);
  aspect-ratio: 16/9; max-width: 860px; margin-top: 22px; box-shadow: 0 26px 50px rgba(17,24,39,.2); }
.video-frame iframe, .video-frame img { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.video-play { position: absolute; inset: 0; width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; background: transparent; border: 0; cursor: pointer; }
.video-play span { background: var(--amber); color: var(--navy); font-weight: 700; border-radius: var(--r-sm);
  padding: 16px 26px; min-height: var(--tap); display: inline-flex; align-items: center; }

/* Footer */
.site-foot { background: var(--navy); color: var(--muted); padding: 44px 0 40px; }
.site-foot h4 { color: var(--white); margin-bottom: 12px; }
.site-foot p { margin: 0 0 8px; }
.site-foot a { color: var(--muted); }
.site-foot a:hover { color: var(--amber); }
.foot-grid { display: grid; gap: 28px; }
.foot-links { display: flex; flex-direction: column; }
.foot-links a { display: inline-flex; align-items: center; min-height: 44px; font-weight: 600; text-decoration: none; }
.foot-bottom { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line-navy); font-size: 1rem; color: #8E94A6; }

/* Doc pages */
.doc { padding: 46px 0 60px; }
.doc h1 { margin-bottom: 10px; }
.doc h2 { font-size: 1.24rem; margin: 34px 0 10px; }
.doc .effective { font-weight: 700; color: #6B7080; margin-bottom: 26px; }
.doc ul { margin: 0 0 1em; }
.doc ul li { position: relative; padding-left: 20px; margin-bottom: 9px; max-width: var(--measure); }
.doc ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px;
  border-radius: 50%; background: var(--amber); }
.pagehead { background: var(--navy); color: var(--muted); padding: 44px 0 40px; }
.pagehead h1 { color: var(--white); }
.pagehead .lead { color: var(--muted); }

.worksample { margin-top: 38px; }
.worksample + .worksample { margin-top: 46px; padding-top: 46px; border-top: 1px solid var(--line); }
.worksample h2 { font-size: var(--fs-h3); margin-bottom: 4px; }
.sample-trade { font-weight: 700; color: var(--amber-text); margin: 0 0 4px; }
.sample-note { color: #6B7080; font-size: var(--fs-small); margin: 0 0 14px; max-width: var(--measure); }
.shotpair { display: grid; gap: 16px; margin: 18px 0 16px; grid-template-columns: 1fr; }
.shotpair img { border-radius: var(--r); border: 1px solid var(--line); width: 100%; }
.shotpair .phone-col { max-width: 250px; }

@media (min-width: 620px) {
  .trades { grid-template-columns: repeat(3, 1fr); }
  .fpgrid { grid-template-columns: repeat(2, 1fr); }
  .promises { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .s { padding: 84px 0; }
  .hero { padding: 70px 0 0; }
  .hero-grid { grid-template-columns: 1.15fr .85fr; gap: 50px; }
  .hero-media { justify-self: end; }
  .phone-tilt { transform: rotate(-4deg); }
  .trust { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .trust li { flex-direction: column; gap: 10px; }
  .fblock { grid-template-columns: 1fr 1fr; gap: 56px; padding: 52px 0; }
  .fblock.flip .fblock-media { order: 2; }
  .fblock-media { display: flex; justify-content: center; }
  .checks { gap: 20px; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .step { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .steps { overflow: visible; }
  .step::after { display: none; }
  .steps::before { content: ""; position: absolute; top: 29px; left: 16.66%; right: 16.66%; height: 0;
    border-top: 3px dashed #D6D8DE; z-index: 0; }
  .twocol { grid-template-columns: 1fr 1fr; gap: 34px; }
  .fpgrid { grid-template-columns: repeat(3, 1fr); }
  .samplerow { grid-template-columns: repeat(3, 1fr); }
  .nav-wide { display: flex; align-items: center; }
  .nav-narrow { display: none; }
  .foot-grid { grid-template-columns: 2fr 1fr 1fr; }
  .shotpair { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); align-items: start; }
  .shotpair .phone-col { max-width: none; }
  .talk { padding: 44px 40px; }
  .pricecard { padding: 40px 34px; }
}
@media (max-width: 559px) {
  .head-row { gap: 8px; padding-left: 16px; padding-right: 16px; }
  .head-cta { font-size: .9rem; padding: 10px 12px; }
  .nav-narrow > summary { padding: 0 11px; font-size: .9rem; }
  .nav-narrow .menu-panel { padding-left: 16px; padding-right: 16px; }
}
section[id], main[id] { scroll-margin-top: 88px; }

/* Phone status strip: keeps the notch off the screenshot, the way a real phone does. */
.phone-screen { background: #0B0E16; }
.phone-screen > img { height: calc(100% - 30px); margin-top: 30px; border-radius: 0 0 26px 26px; }
.phone-screen > .ill, .phone-screen > .ill-lock { border-radius: 26px; }
.hero .phone { width: min(224px, 60vw); }
@media (min-width: 900px) { .hero .phone { width: 290px; } }

/* Promise card header band: shield top-left, seal top-right, figure starts below both. */
.promise { padding-top: 116px; }
.promise .shield { position: absolute; top: 28px; left: 22px; margin: 0; }
.seal { top: 18px; right: 18px; }
@media (min-width: 900px) { .promise { padding: 120px 34px 30px; } .promise .shield { left: 34px; } }

/* Tilted phones: size them so the rotated box still fits its column at every width. */
.samplerow .phone { width: min(236px, 66vw); }
.samplerow .phone-tilt, .hero .phone-tilt { transform-origin: center; }
@media (min-width: 900px) and (max-width: 1100px) { .samplerow .phone { width: 212px; } .hero .phone { width: 250px; } }
.calc .fine { color: var(--muted); }
