:root {
  --color-primary: #1E293B;
  --color-primary-dark: #0F172A;
  --color-secondary: #334155;
  --color-accent: #DC2626;
  --color-accent-dark: #B91C1C;
  --color-accent-soft: #FEE2E2;
  --color-bg: #F8FAFC;
  --color-surface: #FFFFFF;
  --color-surface-alt: #EDF2F7;
  --color-text: #0F172A;
  --color-text-2: #475569;
  --color-text-3: #64748B;
  --color-border: #E2E8F0;
  --color-on-dark: #F1F5F9;
  --font-heading: 'Rubik', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Nunito Sans', 'Segoe UI', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 2px 8px rgba(15, 23, 42, .05);
  --shadow-md: 0 6px 24px rgba(15, 23, 42, .09);
  --header-h: 66px;
}

*, *::before, *::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.22; margin: 0 0 .6em; }
p { margin: 0 0 1em; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

:where(a, button, summary, input, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

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

.ic { width: 24px; height: 24px; flex: none; }

main > section { position: relative; padding: 60px 0; background: var(--color-surface); }
.section-alt { background: var(--color-surface-alt); }

.section-title { font-size: 1.65rem; font-weight: 700; letter-spacing: -.01em; max-width: 22ch; }
.section-subtitle {
  font-size: 1.02rem; color: var(--color-text-2); max-width: 66ch; margin: -.2em 0 2em;
}
.page-title { font-size: 2rem; font-weight: 700; margin-bottom: .35em; }
.back-link { font-size: .92rem; margin-bottom: 1.4em; }
.back-link a { color: var(--color-text-2); font-weight: 600; }

/* ---------- buttons ---------- */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-heading); font-weight: 600; font-size: .97rem;
  padding: 12px 22px; border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; text-align: center; text-decoration: none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { background: var(--color-accent-dark); text-decoration: none; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--color-accent-dark); border-color: var(--color-accent); }
.btn-secondary:hover { background: var(--color-accent); color: #fff; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn-ghost:hover { border-color: var(--color-primary); text-decoration: none; }
.btn-sm { padding: 8px 15px; font-size: .875rem; }
.btn-lg { padding: 14px 26px; font-size: 1.02rem; }
.hero .btn-ghost, .signup .btn-ghost, .rail .btn-ghost {
  color: #fff; border-color: rgba(255, 255, 255, .65);
}
.hero .btn-ghost:hover, .signup .btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

/* ---------- header ---------- */
.top-bar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.top-inner { display: flex; align-items: center; gap: 18px; min-height: var(--header-h); }
.top-logo {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; letter-spacing: .06em;
  color: var(--color-primary); margin-right: auto;
}
.top-logo:hover { text-decoration: none; color: var(--color-accent-dark); }
.top-nav ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.top-nav a { color: var(--color-text-2); font-weight: 600; font-size: .93rem; }
.top-nav a:hover { color: var(--color-accent-dark); text-decoration: none; }
.top-cta { display: none; }
.top-burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px; background: none; border: 0; cursor: pointer;
}
.top-burger span { display: block; height: 2px; background: var(--color-primary); border-radius: 2px; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 50vh; display: flex; align-items: center;
  padding: 48px 0 62px; color: #fff;
  background-color: #1E293B;
  background-image: linear-gradient(135deg, #1E293B 0%, #334155 58%, #0F172A 100%);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 46px; pointer-events: none;
  background: var(--color-surface-alt);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 46' preserveAspectRatio='none'%3E%3Cpath d='M0 46V16c180 22 380 22 600 0s420-22 600 0v30z' fill='%23000'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 46' preserveAspectRatio='none'%3E%3Cpath d='M0 46V16c180 22 380 22 600 0s420-22 600 0v30z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
}
.hero-inner { display: grid; gap: 30px; align-items: center; position: relative; z-index: 1; }
.hero-copy { max-width: 60ch; }
.hero-eyebrow {
  font-family: var(--font-heading); font-size: .78rem; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; color: #FCA5A5; margin-bottom: .8em;
}
.hero-title { font-size: clamp(1.85rem, 5vw, 2.9rem); font-weight: 700; letter-spacing: -.02em; }
.hero-lead { font-size: 1.06rem; color: #E2E8F0; max-width: 54ch; }
.hero-facts { list-style: none; margin: 0 0 1.6em; padding: 0; display: grid; gap: 8px; }
.hero-fact {
  position: relative; padding-left: 26px; font-size: .93rem; font-weight: 600; color: #F1F5F9;
}
.hero-fact::before {
  content: ""; position: absolute; left: 1px; top: .45em; width: 12px; height: 6px;
  border: 2px solid #FCA5A5; border-right: 0; border-top: 0; transform: rotate(-45deg);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-media { position: relative; }
.hero-shot {
  width: 100%; border-radius: var(--radius-lg); box-shadow: 0 18px 44px rgba(0, 0, 0, .38);
  border: 1px solid rgba(255, 255, 255, .14);
}

/* ---------- trust strip ---------- */
.assure-strip { background: var(--color-primary-dark); color: var(--color-on-dark); padding: 18px 0; }
.assure-inner { display: grid; gap: 14px; }
.assure-item { display: flex; align-items: center; gap: 11px; font-size: .88rem; }
.assure-icon { color: #FCA5A5; }
.assure-label strong { font-family: var(--font-heading); font-weight: 600; color: #fff; }

/* ---------- products ---------- */
.shop { scroll-margin-top: var(--header-h); }
.products-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
.product-card {
  display: flex; flex-direction: column; background: var(--color-surface);
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 16px; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, transform .2s ease;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card__media { position: relative; background: #fff; border-radius: var(--radius-md); overflow: hidden; }
.product-card__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; padding: 8px; }
.product-card__title { font-size: 1.02rem; font-weight: 600; margin: 14px 0 6px; }
.product-card__rating { font-size: .9rem; font-weight: 700; color: #B45309; margin-bottom: 8px; }
.product-card__reviews { color: var(--color-text-3); font-weight: 400; }
.product-card__description {
  font-size: .92rem; color: var(--color-text-2); margin-bottom: .4em;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card__description.is-expanded { -webkit-line-clamp: unset; overflow: visible; }
.product-card__more {
  align-self: flex-start; background: none; border: 0; padding: 0 0 10px;
  color: var(--color-accent-dark); font-family: var(--font-body); font-size: .88rem;
  font-weight: 700; cursor: pointer; text-decoration: underline;
}
.product-card__highlights { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 7px; }
.product-card__highlights li {
  position: relative; padding-left: 20px; font-size: .86rem; color: var(--color-text-2);
}
.product-card__highlights li::before {
  content: ""; position: absolute; left: 2px; top: .58em; width: 7px; height: 7px;
  border-radius: 50%; background: var(--color-accent);
}
.product-card-bullets { list-style: none; margin: 0 0 16px; padding: 0; font-size: .86rem; color: var(--color-text-2); }
.product-card__cta {
  margin-top: auto; display: block; text-align: center; background: var(--color-accent); color: #fff;
  font-family: var(--font-heading); font-weight: 600; font-size: .95rem;
  padding: 12px 18px; border-radius: var(--radius-sm); transition: background-color .2s ease;
}
.product-card__cta:hover { background: var(--color-accent-dark); text-decoration: none; }
.product-badge {
  display: inline-block; border-radius: 999px; padding: 4px 10px;
  font-size: .8125rem; font-weight: 600; background: #FEF3C7; color: #92400E;
}
.product-badge--restock { background: #FEF3C7; color: #92400E; }
.product-card--unavailable { opacity: .92; }
.product-card--unavailable .product-card__media img { filter: grayscale(.55); }
.product-card--unavailable .product-card__title { color: var(--color-text-3); }

.category-chips {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 10px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--color-border);
}
.category-chip {
  border: 1px solid var(--color-border); border-radius: 999px; padding: 8px 16px;
  font-size: .88rem; font-weight: 600; color: var(--color-text-2); background: var(--color-surface);
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}
.category-chip:hover {
  border-color: var(--color-accent); color: var(--color-accent-dark);
  background: var(--color-accent-soft); text-decoration: none;
}
.category-chips__all { margin-left: 4px; }

/* ---------- benefits ---------- */
.why { position: relative; }
.why::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(circle, rgba(15, 23, 42, .11) 1px, transparent 1px);
  background-size: 24px 24px;
}
.why > .container { position: relative; }
.why-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.why-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm);
}
.why-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: var(--radius-md); background: var(--color-accent-soft);
  color: var(--color-accent-dark); margin-bottom: 14px;
}
.why-card-title { font-size: 1.05rem; font-weight: 600; }
.why-card-text { font-size: .93rem; color: var(--color-text-2); margin: 0; }

/* ---------- how it works ---------- */
.path { position: relative; }
.path::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(45deg, rgba(15, 23, 42, .05) 0 1px, transparent 1px 16px);
}
.path > .container { position: relative; }
.path-steps {
  list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; grid-template-columns: 1fr;
  counter-reset: step;
}
.path-step {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 22px;
}
.path-step-num {
  display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  border-radius: 50%; background: var(--color-accent); color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; margin-bottom: 12px;
}
.path-step-title { font-size: 1.02rem; font-weight: 600; }
.path-step-text { font-size: .93rem; color: var(--color-text-2); margin: 0; }

/* ---------- features ---------- */
.depth { scroll-margin-top: var(--header-h); }
.depth-block {
  display: grid; gap: 24px; align-items: center; padding: 26px 0;
  border-top: 1px solid var(--color-border);
}
.depth-block:first-of-type { border-top: 0; }
.depth-block--flip .depth-media { order: 0; }
.depth-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.depth-shot { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.depth-copy { min-width: 0; }
.depth-title { font-size: 1.28rem; font-weight: 700; }
.depth-text { font-size: .97rem; color: var(--color-text-2); }
.depth-list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 10px; }
.depth-list li {
  position: relative; padding-left: 24px; font-size: .92rem; color: var(--color-text-2);
}
.depth-list li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 11px; height: 11px;
  border: 2px solid var(--color-accent); border-right: 0; border-top: 0; transform: rotate(-45deg);
}
.depth-cta { margin-top: 4px; }

/* ---------- information gain ---------- */
.data { position: relative; }
.data::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
}
.data > .container { position: relative; }
.data-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.data-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent); border-radius: var(--radius-md);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.data-card-number {
  font-size: 1.5rem; font-weight: 700; color: var(--color-accent-dark);
  letter-spacing: -.01em; margin-bottom: .45em;
}
.data-card-claim { font-size: .94rem; color: var(--color-text); }
.data-card-gap { font-size: .87rem; color: var(--color-text-3); }
.data-card-proof {
  display: inline-block; margin: 0; font-size: .76rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--color-secondary);
  background: var(--color-surface-alt); border-radius: 999px; padding: 5px 12px;
}

/* ---------- about ---------- */
.story { scroll-margin-top: var(--header-h); }
.story-wrap { display: grid; gap: 26px; align-items: start; }
.story-copy p { font-size: .99rem; color: var(--color-text-2); }
.story-copy p:first-of-type { font-size: 1.06rem; color: var(--color-text); }
.story-media { position: relative; }
.story-shot { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.story-link { font-weight: 700; font-size: .96rem; }
.story-page { scroll-margin-top: var(--header-h); }
.story-values-sec { position: relative; }
.story-values { display: grid; gap: 18px; grid-template-columns: 1fr; }
.story-value {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm);
}
.story-value-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: var(--radius-md); background: var(--color-accent-soft);
  color: var(--color-accent-dark); margin-bottom: 12px;
}
.story-value-title { font-size: 1.04rem; font-weight: 600; }
.story-value-text { font-size: .93rem; color: var(--color-text-2); margin: 0; }
.story-stats {
  display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr);
  margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--color-border);
}
.story-stat { text-align: center; }
.story-stat-num {
  display: block; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
  color: var(--color-accent-dark);
}
.story-stat-label { display: block; font-size: .84rem; color: var(--color-text-2); }

/* ---------- reviews ---------- */
.voice { scroll-margin-top: var(--header-h); }
.voice-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.voice-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm);
}
.voice-stars { display: block; color: #B45309; font-size: 1.02rem; letter-spacing: .09em; margin-bottom: 10px; }
.voice-text { font-size: .93rem; color: var(--color-text-2); }
.voice-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 0 0 .4em; }
.voice-name { font-family: var(--font-heading); font-weight: 600; font-size: .95rem; }
.voice-badge {
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: #166534; background: #DCFCE7; border-radius: 999px; padding: 4px 10px;
}
.voice-item { font-size: .82rem; color: var(--color-text-3); margin: 0; }

/* ---------- use cases ---------- */
.fit-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.fit { scroll-margin-top: var(--header-h); }
.fit-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm);
}
.fit-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: var(--radius-md); background: var(--color-surface-alt);
  color: var(--color-secondary); margin-bottom: 12px;
}
.fit-card-title { font-size: 1.04rem; font-weight: 600; }
.fit-card-text { font-size: .93rem; color: var(--color-text-2); margin: 0; }

/* ---------- what you get ---------- */
.arrive { scroll-margin-top: var(--header-h); }
.arrive-line { list-style: none; margin: 0; padding: 0 0 0 26px; position: relative; display: grid; gap: 24px; }
.arrive-line::before {
  content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(var(--color-accent), var(--color-border));
}
.arrive-item { position: relative; }
.arrive-marker {
  position: absolute; left: -26px; top: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--color-accent); border: 3px solid var(--color-surface-alt);
}
.arrive-label {
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--color-accent-dark); margin-bottom: .35em;
}
.arrive-text { font-size: .95rem; color: var(--color-text-2); margin: 0; }
.arrive-cta {
  margin: 30px 0 0; padding: 16px 20px; border-radius: var(--radius-md);
  background: var(--color-surface); border: 1px solid var(--color-border);
  font-size: .95rem; font-weight: 600;
}

/* ---------- fears ---------- */
.risk { scroll-margin-top: var(--header-h); }
.risk-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.risk-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-secondary); border-radius: var(--radius-md);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.risk-card-title { font-size: 1.02rem; font-weight: 600; }
.risk-card-text { font-size: .93rem; color: var(--color-text-2); margin: 0; }
.risk-stat {
  display: inline-block; margin: 12px 0 0; font-size: .8rem; font-weight: 700;
  color: var(--color-accent-dark); background: var(--color-accent-soft);
  border-radius: 999px; padding: 5px 12px;
}
.risk-cta {
  margin: 30px 0 0; padding: 16px 20px; border-radius: var(--radius-md);
  background: var(--color-surface-alt); font-size: .95rem; font-weight: 600;
}

/* ---------- FAQ ---------- */
.ask { position: relative; scroll-margin-top: var(--header-h); }
.ask::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='60'%3E%3Cpath d='M0 30c40-22 80-22 120 0s80 22 120 0' fill='none' stroke='%230F172A' stroke-opacity='.09' stroke-width='2'/%3E%3C/svg%3E");
}
.ask > .container { position: relative; }
.ask-list, .ask-more { display: grid; gap: 10px; }
.ask-more { margin-top: 10px; }
.ask-item {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 4px 18px;
}
.ask-item[open] { border-color: var(--color-accent); }
.ask-item > summary { cursor: pointer; list-style: none; }
.ask-item > summary::-webkit-details-marker { display: none; }
.ask-q {
  position: relative; display: block; padding: 14px 34px 14px 0;
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
}
.ask-q::after {
  content: ""; position: absolute; right: 6px; top: 21px; width: 10px; height: 10px;
  border: 2px solid var(--color-text-3); border-left: 0; border-top: 0;
  transform: rotate(45deg); transition: transform .2s ease;
}
.ask-item[open] > .ask-q::after { transform: rotate(-135deg); top: 25px; }
.ask-a { padding: 0 0 14px; }
.ask-a p { font-size: .94rem; color: var(--color-text-2); margin: 0; }
.ask-toggle { margin-top: 18px; }

/* ---------- gallery ---------- */
.shot { scroll-margin-top: var(--header-h); }
.shot-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.shot-item {
  margin: 0; background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
}
.shot-img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; cursor: pointer;
  transition: transform .3s ease;
}
.shot-img:hover { transform: scale(1.04); }
.shot-caption { padding: 12px 14px; font-size: .84rem; color: var(--color-text-2); }

/* ---------- lightbox ---------- */
.lens {
  position: fixed; inset: 0; z-index: 120; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; padding: 24px;
  background: rgba(15, 23, 42, .93);
}
.lens-img { max-width: min(94vw, 900px); max-height: 76vh; border-radius: var(--radius-md); }
.lens-caption { color: #F1F5F9; font-size: .92rem; text-align: center; margin: 0; }
.lens-close {
  position: absolute; top: 16px; right: 18px; width: 44px; height: 44px;
  background: none; border: 0; color: #fff; font-size: 2rem; line-height: 1; cursor: pointer;
}

/* ---------- newsletter ---------- */
.signup {
  position: relative; color: #fff;
  background-color: #B91C1C;
  background-image: linear-gradient(135deg, #B91C1C 0%, #DC2626 55%, #7F1D1D 100%);
}
.signup::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .18;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .5) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .5) 0 1px, transparent 1px 5px);
}
.signup-inner { position: relative; text-align: center; max-width: 700px; }
.signup .section-title { margin-left: auto; margin-right: auto; max-width: 20ch; }
.signup .section-subtitle { color: #FEE2E2; margin-left: auto; margin-right: auto; }
.signup-form { display: grid; gap: 12px; max-width: 520px; margin: 0 auto; }
.signup-input {
  width: 100%; padding: 13px 16px; font-family: var(--font-body); font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, .55); border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .96); color: var(--color-text);
}
.signup .btn-primary { background: var(--color-primary-dark); }
.signup .btn-primary:hover { background: #020617; }
.signup-note { font-size: .82rem; color: #FEE2E2; margin: 14px 0 0; }
.signup-message {
  max-width: 520px; margin: 14px auto 0; padding: 10px 14px;
  border-radius: var(--radius-sm); font-size: .875rem; text-align: left;
}
.signup-message--error { color: #C0392B; background: #FDEDEC; border: 1px solid #C0392B; }

/* ---------- footer ---------- */
.base { position: relative; background: var(--color-primary-dark); color: var(--color-on-dark); padding: 54px 0 22px; }
.base::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 40px; pointer-events: none;
  background: var(--color-surface);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1200v14c-200 20-400 20-600 4S200-6 0 14z' fill='%23000'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1200v14c-200 20-400 20-600 4S200-6 0 14z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
}
.base-inner { position: relative; display: grid; gap: 30px; grid-template-columns: 1fr; }
.base-col { min-width: 0; }
.base-logo {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem;
  letter-spacing: .06em; color: #fff; display: block; margin-bottom: 10px;
}
.base-brand { max-width: 34ch; }
.base-tag { font-size: .9rem; color: #94A3B8; }
.base-contact { display: grid; gap: 6px; font-style: normal; font-size: .88rem; color: #CBD5E1; }
.base-contact a { color: #CBD5E1; }
.base-title {
  font-size: .82rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
  color: #fff; margin-bottom: 14px;
}
.base-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: .89rem; }
.base-links a { color: #CBD5E1; }
.base-links a:hover { color: #fff; }
.base-hours { color: #94A3B8; }
.base-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.base-social-link {
  font-size: .8rem; font-weight: 600; color: #CBD5E1;
  border: 1px solid #334155; border-radius: 999px; padding: 6px 13px;
}
.base-social-link:hover { border-color: #64748B; color: #fff; text-decoration: none; }
.footer__languages { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.footer__languages:empty { display: none; }
.base-bottom {
  position: relative; margin-top: 34px; padding-top: 20px;
  border-top: 1px solid #1E293B; text-align: center;
}
.footer__copyright { font-size: .85rem; color: #CBD5E1; margin-bottom: .5em; }
.base-disclosure { font-size: .76rem; color: #94A3B8; max-width: 74ch; margin: 0 auto; }
.base-disclosure p { margin: 0; }

/* ---------- cookie banner ---------- */
.consent-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 110;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px;
  padding: 12px 18px; background: rgba(15, 23, 42, .97); color: #E2E8F0;
  border-top: 1px solid #334155;
}
.consent-text { margin: 0; font-size: .84rem; }
.consent-link { color: #FCA5A5; text-decoration: underline; }
.consent-actions { display: flex; gap: 8px; }
.cookie-accept { flex: none; }
.cookie-decline { color: #E2E8F0; border-color: #475569; }
.cookie-decline:hover { border-color: #94A3B8; }

/* ---------- sticky CTA ---------- */
.rail {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 11px 46px 11px 18px;
  background: rgba(15, 23, 42, .9); backdrop-filter: blur(8px);
  border-top: 1px solid #334155; color: #F1F5F9;
}
.rail-text { margin: 0; font-size: .86rem; font-weight: 600; }
.rail-cta { flex: none; }
.rail-close {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; background: none; border: 0; color: #94A3B8;
  font-size: 1.5rem; line-height: 1; cursor: pointer;
}
.rail-close:hover { color: #fff; }

/* ---------- contact page ---------- */
.reach-page { scroll-margin-top: var(--header-h); }
.reach-grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
.reach-form {
  display: grid; gap: 16px; background: var(--color-surface); padding: 24px;
  border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.reach-field { display: grid; gap: 6px; }
.reach-label { font-size: .88rem; font-weight: 700; color: var(--color-text-2); }
.reach-input, .reach-area {
  width: 100%; padding: 11px 14px; font-family: var(--font-body); font-size: .97rem;
  color: var(--color-text); background: #fff;
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.reach-input:focus, .reach-area:focus {
  border-color: var(--color-accent); box-shadow: 0 0 0 3px var(--color-accent-soft); outline: none;
}
.reach-area { resize: vertical; min-height: 130px; }
.reach-message { padding: 10px 14px; border-radius: var(--radius-sm); font-size: .875rem; }
.reach-message--error { color: #C0392B; background: #FDEDEC; border: 1px solid #C0392B; }
.reach-aside { display: grid; gap: 18px; align-content: start; }
.reach-block {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 18px 20px;
}
.reach-block-title {
  display: flex; align-items: center; gap: 9px; font-size: .95rem; font-weight: 600; margin-bottom: .5em;
}
.reach-icon { color: var(--color-accent-dark); width: 20px; height: 20px; }
.reach-block address, .reach-block p { font-style: normal; font-size: .92rem; color: var(--color-text-2); margin: 0; }
.reach-hours { list-style: none; margin: 0; padding: 0; display: grid; gap: 5px; font-size: .92rem; color: var(--color-text-2); }
.auto-email { font-weight: 600; word-break: break-all; }

/* ---------- legal pages ---------- */
.legal-page { scroll-margin-top: var(--header-h); }
.legal-updated { font-size: .86rem; color: var(--color-text-3); margin-bottom: 2em; }
.legal-body { max-width: 78ch; }
.legal-section { margin-bottom: 34px; }
.legal-section .section-title { font-size: 1.22rem; max-width: none; margin-bottom: .5em; }
.legal-section p { font-size: .95rem; color: var(--color-text-2); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .4s ease, transform .4s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- responsive ---------- */
@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .fit-grid, .risk-grid, .data-grid, .voice-grid, .story-values { grid-template-columns: repeat(2, 1fr); }
  .shot-grid { grid-template-columns: repeat(2, 1fr); }
  .path-steps { grid-template-columns: repeat(2, 1fr); }
  .assure-inner { grid-template-columns: repeat(2, 1fr); }
  .signup-form { grid-template-columns: 1fr auto; }
  .story-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  main > section { padding: 80px 0; }
  .container { padding: 0 32px; }
  .section-title { font-size: 2rem; }
  .page-title { font-size: 2.5rem; }
  .hero { padding: 64px 0 80px; }
  .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 42px; }
  .assure-inner { grid-template-columns: repeat(4, 1fr); }
  .story-wrap { grid-template-columns: 1.15fr .85fr; }
  .reach-grid { grid-template-columns: 1.1fr .9fr; }
  .base-inner { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; }
  .depth-block { grid-template-columns: .95fr 1.05fr; gap: 36px; padding: 40px 0; }
  .depth-block--flip .depth-media { order: 2; }
  .arrive-line { grid-template-columns: repeat(2, 1fr); gap: 30px 34px; }
  .base-bottom { text-align: left; }
}

@media (min-width: 1024px) {
  .top-cta { display: block; }
  .top-burger { display: none; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid, .fit-grid, .data-grid, .story-values { grid-template-columns: repeat(3, 1fr); }
  .voice-grid, .risk-grid { grid-template-columns: repeat(3, 1fr); }
  .shot-grid { grid-template-columns: repeat(4, 1fr); }
  .path-steps { grid-template-columns: repeat(4, 1fr); }
  .arrive-line { grid-template-columns: repeat(4, 1fr); }
  .arrive-line::before { left: 0; right: 0; top: 7px; bottom: auto; width: auto; height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-border)); }
  .arrive-item { padding-top: 30px; }
  .arrive-marker { left: 0; top: -1px; }
  .arrive-line { padding: 0; }
}

@media (min-width: 1200px) {
  .container { max-width: 1200px; }
  .section-title { font-size: 2.15rem; }
}

@media (min-width: 1600px) {
  .container { max-width: 1320px; }
  .hero-inner { gap: 56px; }
}

@media (max-width: 1023px) {
  .top-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; display: none;
    background: var(--color-surface); border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md); padding: 14px 20px 20px;
  }
  .top-nav.is-open { display: block; }
  .top-nav ul { flex-direction: column; gap: 4px; }
  .top-nav a { display: block; padding: 12px 4px; font-size: 1rem; border-bottom: 1px solid var(--color-border); }
  body.no-scroll { overflow: hidden; }
  .rail-text { display: none; }
  .rail { justify-content: space-between; }
  .rail-cta { flex: 1; }
}
