:root {
  color-scheme: light;
  --ink: #102746;
  --muted: #667064;
  --canvas: #f4f0e8;
  --surface: #fffdf8;
  --surface-alt: #e5e8dd;
  --accent: #b86148;
  --accent-ink: #fffdf8;
  --frame: #1457e6;
  --line: rgba(16, 39, 70, .14);
  --button: #102746;
  --button-ink: #fffdf8;
  --photo: url("/web/images/openai-image-2026-09-14T21-27-15-268Z-ig_02c24ad4d6d14b5c016aa8668a4e2487d2ade8fa8229042415.webp");
  --photo-radius: 30px;
  --preview-shadow: 0 28px 80px rgba(35, 43, 34, .2);
  --radius: 18px;
}

html[data-variant="bold"] {
  --ink: #08090b;
  --muted: #52545a;
  --canvas: #f6f4ee;
  --surface: #ffffff;
  --surface-alt: #eaf0ff;
  --accent: #0758ff;
  --accent-ink: #ffffff;
  --frame: #0758ff;
  --line: rgba(8, 9, 11, .15);
  --button: #0758ff;
  --button-ink: #ffffff;
  --photo: url("/web/images/openai-image-2026-09-14T21-27-17-822Z-ig_0d1876ef8e867051016aa8668af6b087d2841a8e15761e5276.webp");
  --photo-radius: 4px;
  --preview-shadow: 12px 12px 0 #ffd600;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input { font: inherit; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 10; transform: translateY(-150%); background: var(--ink); color: var(--canvas); padding: 10px 14px; }
.skip-link:focus { transform: none; }
header, main, footer { width: min(1240px, calc(100% - 56px)); margin-inline: auto; }
header {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: .18em; color: var(--ink); font-size: 1.22rem; font-weight: 800; letter-spacing: -.055em; text-decoration: none; }
.zen-frame { position: relative; padding: .02em .15em .01em .09em; }
.zen-frame::before { content: ""; position: absolute; inset: -.21em -.18em -.16em -.08em; border: 3px solid var(--frame); border-left-width: 0; }
.zen-frame::after { content: ""; position: absolute; left: -.08em; top: -.21em; width: 42%; height: 3px; background: var(--frame); }
.header-actions, .language-switcher { display: flex; align-items: center; }
.header-actions { gap: 24px; }
.language-switcher { gap: 3px; color: var(--muted); font-size: .72rem; }
.language-switcher button { min-width: 34px; min-height: 34px; border: 0; background: transparent; color: inherit; padding: 4px; font-size: inherit; font-weight: 700; opacity: .45; cursor: pointer; }
.language-switcher button[aria-pressed="true"] { color: var(--ink); opacity: 1; }
.header-cta { border-bottom: 2px solid var(--frame); font-size: .82rem; font-weight: 700; text-decoration: none; }

.hero {
  min-height: calc(100dvh - 90px);
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(46px, 6vw, 100px);
  padding: clamp(70px, 8vw, 116px) 0 132px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 20px; color: var(--accent); font: 700 .68rem/1.2 "SFMono-Regular", Consolas, monospace; letter-spacing: .14em; text-transform: uppercase; }
h1, h2 { margin: 0; letter-spacing: -.065em; line-height: .93; text-wrap: balance; }
h1 { max-width: 730px; font-size: clamp(3.8rem, 6.7vw, 7.2rem); font-weight: 700; }
h2 { font-size: clamp(3.1rem, 5vw, 5.5rem); font-weight: 700; }
html[data-variant="bold"] h1, html[data-variant="bold"] h2 { font-family: Impact, "Arial Narrow", sans-serif; font-weight: 900; letter-spacing: -.035em; }
.lede { max-width: 570px; margin: 30px 0 36px; color: var(--muted); font-size: 1.06rem; line-height: 1.65; text-wrap: pretty; }
form { max-width: 570px; }
form label { display: block; margin-bottom: 10px; font-size: .78rem; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
input, button { min-height: 54px; border-radius: calc(var(--radius) / 2); }
input { min-width: 0; border: 1px solid var(--line); background: var(--surface); color: var(--ink); padding: 0 17px; }
button { border: 0; background: var(--button); color: var(--button-ink); cursor: pointer; padding: 0 24px; font-size: .84rem; font-weight: 750; transition: transform 180ms ease, opacity 180ms ease; }
button:hover { opacity: .86; }
button:active { transform: translateY(1px) scale(.98); }
input:focus-visible, button:focus-visible, a:focus-visible { outline: 3px solid var(--frame); outline-offset: 3px; }
.form-meta, .form-status { min-height: 18px; margin: 9px 0 0; color: var(--muted); font-size: .72rem; }
.form-status.success { color: var(--accent); font-weight: 700; }
.form-status.error { color: #a63f35; font-weight: 700; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 29px 0 0; padding: 0; color: var(--muted); list-style: none; font-size: .72rem; }
.trust-list li { display: flex; align-items: center; gap: 8px; }
.trust-list li::before { content: ""; width: 6px; height: 6px; background: var(--accent); }

.hero-visual { position: relative; min-height: 650px; }
.family-photo { position: absolute; inset: 0 0 76px 0; border-radius: var(--photo-radius); background: var(--photo) center / cover no-repeat; }
html[data-variant="bold"] .family-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 88, 255, .18), transparent 55%); mix-blend-mode: color; }
.product-preview {
  position: absolute;
  right: -18px;
  bottom: 0;
  width: min(440px, 76%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  padding: 24px 27px;
  box-shadow: var(--preview-shadow);
  backdrop-filter: blur(16px);
}
.preview-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; font-size: .78rem; font-weight: 750; }
.live-label { border: 1px solid var(--line); color: var(--muted); padding: 5px 9px; font: 600 .61rem "SFMono-Regular", Consolas, monospace; }
.input-card { border-left: 3px solid var(--accent); background: var(--surface-alt); padding: 14px 16px; }
.input-card small, article small { color: var(--muted); font-size: .64rem; }
.input-card p { margin: 6px 0 0; font-size: .82rem; line-height: 1.48; }
.divider { height: 43px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
.divider span { color: var(--muted); font: 650 .59rem "SFMono-Regular", Consolas, monospace; text-transform: uppercase; letter-spacing: .08em; }
article { display: grid; grid-template-columns: 7px 1fr auto; align-items: center; gap: 12px; min-height: 59px; border-bottom: 1px solid var(--line); }
article:last-child { border-bottom: 0; }
article div { display: grid; gap: 3px; }
article b { font-size: .75rem; }
article strong { color: var(--muted); font: 650 .57rem "SFMono-Regular", Consolas, monospace; text-transform: uppercase; }
.status-dot { width: 7px; height: 7px; background: var(--muted); }
.status-dot.accent { background: var(--accent); }

.value-strip { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(60px, 10vw, 150px); align-items: end; border-top: 1px solid var(--line); padding: 112px 0 126px; }
.value-strip > p { max-width: 520px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.75; }
html[data-variant="bold"] .value-strip { position: relative; }
html[data-variant="bold"] .value-strip::before { content: ""; position: absolute; top: -7px; left: 0; width: 92px; height: 13px; background: #ffd600; }
footer { min-height: 116px; display: flex; align-items: center; gap: 28px; border-top: 1px solid var(--line); font-size: .75rem; }
footer span { font-weight: 750; }
footer p { margin-right: auto; color: var(--muted); }
footer a { color: var(--muted); text-underline-offset: 4px; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 680px; }
  .family-photo { background-position: center; }
}

@media (max-width: 620px) {
  header, main, footer { width: min(100% - 30px, 1240px); }
  header { min-height: 72px; }
  .header-actions { gap: 12px; }
  .header-cta { display: none; }
  .hero { padding: 58px 0 82px; gap: 50px; }
  h1 { font-size: clamp(3.1rem, 16vw, 4.8rem); }
  .form-row { grid-template-columns: 1fr; }
  button { width: 100%; }
  .hero-visual { min-height: 590px; }
  .family-photo { bottom: 150px; background-position: 57% center; }
  .product-preview { right: 10px; left: 10px; width: auto; padding: 20px; }
  .value-strip { grid-template-columns: 1fr; gap: 34px; padding: 82px 0 94px; }
  footer { flex-wrap: wrap; gap: 12px 24px; padding: 30px 0; }
  footer p { width: 100%; order: 3; margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
