:root {
  --color-primary: #0369A1;
  --color-primary-dark: #075985;
  --color-primary-soft: #E0F2FE;
  --color-accent: #EC4899;
  --color-accent-dark: #BE185D;
  --color-accent-soft: #FCE7F3;
  --color-amber: #F59E0B;
  --color-bg: #FFFFFF;
  --color-bg-alt: #FCE9F3;
  --color-surface: #FFFFFF;
  --color-dark: #131A2B;
  --color-dark-soft: #202B45;
  --color-text: #0F172A;
  --color-text-muted: #475569;
  --color-border: #E2E8F0;
  --color-border-soft: #FBCFE8;
  --color-danger: #C0392B;
  --color-danger-bg: #FDEDEC;
  --font-heading: 'Baloo 2', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 28px rgba(15, 23, 42, 0.09);
  --shadow-lg: 0 22px 50px rgba(15, 23, 42, 0.14);
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --container: 1200px;
  --head-h: 68px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.18;
  margin: 0 0 var(--space-4);
  color: var(--color-text);
  letter-spacing: -0.01em;
}
p { margin: 0 0 var(--space-4); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--color-accent-dark); }
ul, ol { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.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;
}

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

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

.section-title {
  font-size: clamp(1.7rem, 4.2vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 780px;
  margin-bottom: var(--space-12);
}

.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--font-heading); font-weight: 700;
  font-size: 1rem; line-height: 1.2; padding: 14px 26px;
  border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; text-align: center; min-height: 44px;
  transition: background-color .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}
.btn-primary { background: var(--color-primary); color: #FFFFFF; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--color-primary-dark); color: #FFFFFF; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--color-primary-dark); border-color: var(--color-primary); }
.btn-secondary:hover { background: var(--color-primary); color: #FFFFFF; }
.btn-ghost { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn-ghost:hover { background: var(--color-accent-soft); color: var(--color-accent-dark); border-color: var(--color-border-soft); }
.btn-sm { padding: 10px 18px; font-size: .9375rem; }
.btn-lg { padding: 16px 32px; font-size: 1.0625rem; }

.hero .btn-ghost, .signup .btn-ghost, .dock .btn-ghost {
  color: #FFFFFF; border-color: rgba(255, 255, 255, .65);
}
.hero .btn-ghost:hover, .signup .btn-ghost:hover, .dock .btn-ghost:hover {
  background: rgba(255, 255, 255, .16); color: #FFFFFF; border-color: #FFFFFF;
}

.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.site-head--scrolled { box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, .98); }
.site-head__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); min-height: var(--head-h);
}
.site-head__logo {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem;
  color: var(--color-primary-dark); letter-spacing: -0.02em;
}
.site-head__logo:hover { color: var(--color-accent-dark); }
.site-head__nav ul { list-style: none; display: flex; gap: var(--space-6); }
.site-head__nav a {
  font-weight: 700; color: var(--color-text); font-size: .9375rem;
  padding: 6px 2px; position: relative;
}
.site-head__nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--color-accent); transition: right .25s var(--ease);
}
.site-head__nav a:hover, .site-head__nav a.is-active { color: var(--color-accent-dark); }
.site-head__nav a:hover::after, .site-head__nav a.is-active::after { right: 0; }
.site-head__action { display: none; }
.site-head__menu {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 44px; padding: 0 10px;
  background: transparent; border: 1px solid var(--color-border); border-radius: var(--radius-sm);
}
.site-head__menu span {
  display: block; height: 2px; width: 100%; background: var(--color-text);
  border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.site-head__menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-head__menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-head__menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 50vh;
  margin-top: var(--head-h);
  padding: 48px 0 72px;
  background: linear-gradient(140deg, var(--color-primary-soft) 0%, #FFFFFF 48%, var(--color-accent-soft) 100%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(3, 105, 161, .10) 0, transparent 38%),
    radial-gradient(circle at 88% 82%, rgba(236, 72, 153, .12) 0, transparent 42%);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 46px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 46' preserveAspectRatio='none'%3E%3Cpath d='M0 46V18c180 22 360 22 540 4s360-26 540-6 240 24 360 12v18z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center/100% 100%;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: var(--space-8); align-items: center;
}
.hero__copy { max-width: 620px; }
.hero__eyebrow {
  font-family: var(--font-heading); font-weight: 700; font-size: .8125rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--color-accent-dark);
  margin-bottom: var(--space-3);
}
.hero__title { font-size: clamp(2.1rem, 6vw, 3.5rem); font-weight: 800; margin-bottom: var(--space-4); }
.hero__sub { font-size: clamp(1.0625rem, 2.3vw, 1.25rem); color: var(--color-text-muted); margin-bottom: var(--space-6); }
.hero__marks { list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-8); }
.hero__mark {
  font-size: .875rem; font-weight: 700; color: var(--color-primary-dark);
  background: rgba(255, 255, 255, .85); border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-pill); padding: 7px 15px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.hero .btn-ghost { color: var(--color-primary-dark); border-color: var(--color-primary); }
.hero .btn-ghost:hover { background: var(--color-primary); color: #FFFFFF; border-color: var(--color-primary); }
.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 11; object-fit: cover;
}

.proof-strip { background: var(--color-dark); padding: 26px 0; color: #FFFFFF; }
.proof-strip__row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6);
}
.proof-strip__item { display: flex; flex-direction: column; gap: 4px; }
.proof-strip__num {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.6rem; color: var(--color-amber);
  line-height: 1.1;
}
.proof-strip__label { font-size: .8125rem; color: rgba(255, 255, 255, .82); line-height: 1.45; }

.why { position: relative; }
.why::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(15, 23, 42, .07) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .55;
}
.why > .container { position: relative; z-index: 1; }
.why-list { display: flex; flex-direction: column; gap: var(--space-8); }
.why-row {
  display: grid; grid-template-columns: 1fr; gap: var(--space-6); align-items: center;
  background: var(--color-surface); border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-row__figure { border-radius: var(--radius-md); overflow: hidden; background: #FFFFFF; }
.why-row__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.why-row__body { min-width: 0; }
.why-row__index {
  display: block; font-family: var(--font-heading); font-weight: 800;
  font-size: 2.75rem; line-height: 1; color: var(--color-accent); opacity: .9;
  margin-bottom: var(--space-2);
}
.why-row__title { font-size: 1.3rem; font-weight: 700; margin-bottom: var(--space-3); }
.why-row__text { color: var(--color-text-muted); margin: 0; }

.shelf { background: var(--color-bg); }
.products-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-6);
}
.product-card {
  display: flex; flex-direction: column;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-6); position: relative;
  box-shadow: var(--shadow-sm); transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card__media {
  display: block; background: #FFFFFF; border-radius: var(--radius-md);
  overflow: hidden; margin-bottom: var(--space-4); border: 1px solid var(--color-border);
}
.product-card__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; padding: 10px; }
.product-card__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: var(--space-2); }
.product-card__rating {
  font-weight: 700; color: var(--color-amber); font-size: .9375rem; margin-bottom: var(--space-3);
}
.product-card__reviews { color: var(--color-text-muted); font-weight: 600; }
.product-card__description {
  color: var(--color-text-muted); font-size: .9375rem; margin-bottom: var(--space-2);
  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 var(--space-4);
  color: var(--color-primary); font-family: var(--font-body); font-weight: 700;
  font-size: .875rem; text-decoration: underline;
}
.product-card__more:hover { color: var(--color-accent-dark); }
.product-card__highlights {
  list-style: none; margin-bottom: var(--space-6); display: flex;
  flex-direction: column; gap: var(--space-2);
}
.product-card__highlights li {
  position: relative; padding-left: 20px; font-size: .875rem; color: var(--color-text);
}
.product-card__highlights li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--color-accent);
}
.product-card__cta {
  margin-top: auto; display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 13px 22px; border-radius: var(--radius-pill);
  background: var(--color-primary); color: #FFFFFF; font-family: var(--font-heading);
  font-weight: 700; transition: background-color .22s var(--ease), transform .22s var(--ease);
}
.product-card__cta:hover { background: var(--color-primary-dark); color: #FFFFFF; transform: translateY(-2px); }
.product-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-block; padding: 4px 10px; border-radius: var(--radius-pill);
  background: var(--color-amber); color: #3A2500; font-size: .8125rem; font-weight: 600;
}
.product-badge--restock { background: #FEF3C7; color: #92400E; border: 1px solid #FCD34D; }
.product-card--unavailable img { filter: grayscale(.55); }
.product-card--unavailable .product-card__title { color: var(--color-text-muted); }
.category-chips { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-top: var(--space-8); }
.category-chip {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--color-border); background: var(--color-surface);
  color: var(--color-text); font-weight: 700; font-size: .9375rem;
}
.category-chip:hover { border-color: var(--color-accent); color: var(--color-accent-dark); background: var(--color-accent-soft); }
.category-chips__all { margin-left: var(--space-2); }

.data-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--color-border-soft); background: var(--color-surface); box-shadow: var(--shadow-sm); }
.data-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.data-table thead th {
  text-align: left; font-family: var(--font-heading); font-size: .8125rem;
  letter-spacing: .08em; text-transform: uppercase; color: #FFFFFF;
  background: var(--color-primary-dark); padding: 14px 18px; font-weight: 700;
}
.data-table tbody tr { border-top: 1px solid var(--color-border); }
.data-table tbody tr:nth-child(even) { background: #FDF7FA; }
.data-table__metric {
  text-align: left; vertical-align: top; padding: 18px; width: 26%;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.0625rem;
  color: var(--color-accent-dark); line-height: 1.3;
}
.data-table__claim { vertical-align: top; padding: 18px; color: var(--color-text); font-size: .9375rem; }
.data-table__gap { display: block; margin-top: 10px; color: var(--color-text-muted); font-size: .8125rem; font-style: italic; }
.data-table__proof {
  vertical-align: top; padding: 18px; width: 18%; font-size: .8125rem;
  color: var(--color-primary-dark); font-weight: 700;
}

.scene-list { display: flex; flex-direction: column; gap: var(--space-12); }
.scene { display: grid; grid-template-columns: 1fr; gap: var(--space-6); align-items: center; }
.scene__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: #FFFFFF; }
.scene__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.scene__body { min-width: 0; }
.scene__title { font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 700; }
.scene__text { color: var(--color-text-muted); }
.scene__points { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-6); }
.scene__point { position: relative; padding-left: 26px; font-size: .9375rem; }
.scene__point::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 12px; height: 12px;
  border-radius: 3px; background: var(--color-accent-soft); border: 2px solid var(--color-accent);
}
.scene__cta { margin-top: var(--space-2); }

.origin__inner { display: grid; grid-template-columns: 1fr; gap: var(--space-8); align-items: start; }
.origin__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.origin__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.origin__body { min-width: 0; }
.origin__text { color: var(--color-text-muted); }
.origin__text p { margin-bottom: var(--space-4); }
.origin__link { margin-top: var(--space-2); }

.path { position: relative; }
.path::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(45deg, rgba(3, 105, 161, .05) 0 1px, transparent 1px 16px);
}
.path > .container { position: relative; z-index: 1; }
.path__list { list-style: none; display: grid; grid-template-columns: 1fr; gap: var(--space-6); counter-reset: none; }
.path__step {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-sm);
  position: relative;
}
.path__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--color-primary); color: #FFFFFF;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem;
  margin-bottom: var(--space-4);
}
.path__title { font-size: 1.1875rem; font-weight: 700; margin-bottom: var(--space-2); }
.path__text { color: var(--color-text-muted); font-size: .9375rem; margin: 0; }

.voice-feed { display: flex; flex-direction: column; gap: var(--space-6); max-width: 860px; }
.voice {
  margin: 0; background: var(--color-surface); border-left: 5px solid var(--color-accent);
  border-radius: var(--radius-md); padding: var(--space-6); box-shadow: var(--shadow-sm);
}
.voice__quote { margin: 0 0 var(--space-4); }
.voice__quote p { margin: 0; font-size: 1.0625rem; color: var(--color-text); }
.voice__meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3); font-size: .875rem; }
.voice__stars { color: var(--color-amber); letter-spacing: 2px; font-size: 1rem; }
.voice__author { font-weight: 700; color: var(--color-text); }
.voice__badge {
  background: var(--color-primary-soft); color: var(--color-primary-dark);
  border-radius: var(--radius-pill); padding: 3px 10px; font-size: .75rem; font-weight: 700;
}
.voice__product { color: var(--color-text-muted); font-size: .8125rem; }

.risk-list { display: flex; flex-direction: column; gap: var(--space-3); max-width: 900px; }
.risk { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; }
.risk__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  background: none; border: 0; padding: 18px 20px; text-align: left;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.0625rem; color: var(--color-text);
  min-height: 56px; transition: background-color .2s var(--ease);
}
.risk__q:hover { background: var(--color-accent-soft); }
.risk__q-text { flex: 1; }
.risk__sign { position: relative; flex: 0 0 18px; width: 18px; height: 18px; }
.risk__sign::before, .risk__sign::after {
  content: ""; position: absolute; left: 0; top: 8px; width: 18px; height: 2px;
  background: var(--color-accent-dark); border-radius: 2px; transition: transform .25s var(--ease);
}
.risk__sign::after { transform: rotate(90deg); }
.risk__q[aria-expanded="true"] .risk__sign::after { transform: rotate(0deg); }
.risk__body { padding: 0 20px 20px; border-top: 1px solid var(--color-border); padding-top: 16px; }
.risk__text { color: var(--color-text-muted); margin-bottom: var(--space-3); }
.risk__stat {
  display: inline-block; margin: 0; background: var(--color-primary-soft);
  color: var(--color-primary-dark); font-weight: 700; font-size: .8125rem;
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.risks__close {
  margin-top: var(--space-8); font-family: var(--font-heading); font-weight: 700;
  font-size: 1.0625rem; color: var(--color-primary-dark);
}

.fit-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
.fit {
  background: var(--color-surface); border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.fit:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fit__num {
  display: block; font-family: var(--font-heading); font-weight: 800; font-size: 2.5rem;
  line-height: 1; color: var(--color-primary); opacity: .35; margin-bottom: var(--space-2);
}
.fit__title { font-size: 1.125rem; font-weight: 700; margin-bottom: var(--space-2); }
.fit__text { color: var(--color-text-muted); font-size: .9375rem; margin: 0; }

.arc__list { list-style: none; display: flex; flex-direction: column; gap: 0; max-width: 900px; }
.arc__item { position: relative; padding: 0 0 var(--space-8) 40px; border-left: 3px solid var(--color-border-soft); }
.arc__item:last-child { border-left-color: transparent; padding-bottom: 0; }
.arc__marker {
  position: relative; display: inline-block; margin-bottom: var(--space-2);
  font-family: var(--font-heading); font-weight: 800; font-size: 1.0625rem;
  color: var(--color-accent-dark);
}
.arc__marker::before {
  content: ""; position: absolute; left: -49px; top: 6px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--color-accent); border: 3px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-accent);
}
.arc__text { color: var(--color-text-muted); margin: 0; }
.arc__close {
  margin-top: var(--space-8); font-family: var(--font-heading); font-weight: 700;
  font-size: 1.0625rem; color: var(--color-primary-dark);
}

.ask-section { position: relative; }
.ask-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='24' viewBox='0 0 120 24'%3E%3Cpath d='M0 12c15-12 30 12 45 0s30-12 45 0 30 12 30 0' fill='none' stroke='%230369A1' stroke-opacity='.09' stroke-width='2'/%3E%3C/svg%3E") repeat;
}
.ask-section > .container { position: relative; z-index: 1; }
.ask-list, .ask-extra { display: flex; flex-direction: column; gap: var(--space-3); max-width: 900px; }
.ask-extra { margin-top: var(--space-3); }
.ask {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); overflow: hidden;
}
.ask[open] { border-color: var(--color-border-soft); box-shadow: var(--shadow-sm); }
.ask > summary {
  cursor: pointer; list-style: none; padding: 18px 52px 18px 20px; position: relative;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.0625rem; color: var(--color-text);
  min-height: 56px; transition: background-color .2s var(--ease);
}
.ask > summary::-webkit-details-marker { display: none; }
.ask > summary:hover { background: var(--color-accent-soft); }
.ask__q::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 10px; height: 10px;
  margin-top: -7px; border-right: 2px solid var(--color-accent-dark);
  border-bottom: 2px solid var(--color-accent-dark); transform: rotate(45deg);
  transition: transform .25s var(--ease);
}
.ask[open] > .ask__q::after { transform: rotate(-135deg); margin-top: -3px; }
.ask__a { padding: 0 20px 20px; border-top: 1px solid var(--color-border); padding-top: 16px; }
.ask__a p { margin: 0; color: var(--color-text-muted); }
.ask-toggle {
  margin-top: var(--space-6); display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 13px 26px; border-radius: var(--radius-pill);
  background: transparent; border: 2px solid var(--color-primary); color: var(--color-primary-dark);
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  transition: background-color .22s var(--ease), color .22s var(--ease);
}
.ask-toggle:hover { background: var(--color-primary); color: #FFFFFF; }
.ask-close { margin-top: var(--space-8); font-weight: 700; color: var(--color-primary-dark); }

.shot-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
.shot {
  margin: 0; position: relative; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); background: #FFFFFF; cursor: pointer;
}
.shot__img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  transition: transform .4s var(--ease);
}
.shot:hover .shot__img { transform: scale(1.05); }
.shot__caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 14px 12px;
  background: linear-gradient(to top, rgba(19, 26, 43, .88), transparent);
  color: #FFFFFF; font-size: .8125rem; font-weight: 700;
}
.viewer {
  position: fixed; inset: 0; z-index: 200; background: rgba(19, 26, 43, .94);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px; gap: var(--space-4);
}
.viewer__img { max-width: min(92vw, 900px); max-height: 76vh; border-radius: var(--radius-md); }
.viewer__caption { color: #FFFFFF; font-size: .9375rem; margin: 0; text-align: center; }
.viewer__close {
  position: absolute; top: 18px; right: 18px; width: 48px; height: 48px;
  border-radius: 50%; border: 1px solid rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .12); color: #FFFFFF; font-size: 1.75rem; line-height: 1;
}
.viewer__close:hover { background: rgba(255, 255, 255, .24); }

.signup { background: var(--color-primary-dark); color: #FFFFFF; position: relative; overflow: hidden; }
.signup::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .16;
  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; z-index: 1; text-align: center; max-width: 720px; }
.signup__title { color: #FFFFFF; font-size: clamp(1.6rem, 4vw, 2.25rem); }
.signup__sub { color: rgba(255, 255, 255, .88); margin-bottom: var(--space-6); }
.signup__form { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-3); }
.signup__input {
  flex: 1; min-height: 52px; padding: 14px 18px; border-radius: var(--radius-pill);
  border: 2px solid transparent; background: #FFFFFF; color: var(--color-text);
  font-family: var(--font-body); font-size: 1rem;
}
.signup__input:focus { outline: none; border-color: var(--color-accent); }
.signup .btn-primary { background: var(--color-accent); }
.signup .btn-primary:hover { background: var(--color-accent-dark); }
.signup__msg {
  color: var(--color-danger); background: var(--color-danger-bg); border: 1px solid var(--color-danger);
  padding: 10px 14px; border-radius: 6px; font-size: .875rem; margin-bottom: var(--space-3);
}
.signup__note { color: rgba(255, 255, 255, .7); font-size: .8125rem; margin: 0; }

.site-foot { background: var(--color-dark); color: rgba(255, 255, 255, .82); padding: 72px 0 32px; position: relative; }
.site-foot::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 40px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1440v10c-160 20-320 24-560 12S320 4 160 14 0 26 0 26z' fill='%23131A2B'/%3E%3C/svg%3E") no-repeat center/100% 100%;
  transform: translateY(-100%);
}
.site-foot__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); }
.site-foot__block { min-width: 0; }
.site-foot__logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: #FFFFFF; display: inline-block; margin-bottom: var(--space-3); }
.site-foot__logo:hover { color: var(--color-accent); }
.site-foot__tag { font-size: .9375rem; color: rgba(255, 255, 255, .72); }
.site-foot__address { font-style: normal; font-size: .875rem; line-height: 1.8; color: rgba(255, 255, 255, .72); margin-bottom: var(--space-3); }
.site-foot__address a { color: rgba(255, 255, 255, .92); }
.site-foot__address a:hover { color: var(--color-accent); }
.site-foot__hours { font-size: .8125rem; color: rgba(255, 255, 255, .62); line-height: 1.8; margin: 0; }
.site-foot__title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: #FFFFFF; margin-bottom: var(--space-4); text-transform: uppercase; letter-spacing: .06em; }
.site-foot__links, .site-foot__channels { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }
.site-foot__links a, .site-foot__channels a { color: rgba(255, 255, 255, .78); font-size: .9375rem; }
.site-foot__links a:hover, .site-foot__channels a:hover { color: var(--color-accent); }
.site-foot__brand { max-width: 340px; }
.footer__languages { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-8); }
.footer__languages:empty { display: none; }
.footer__languages a { color: rgba(255, 255, 255, .78); font-size: .875rem; }
.site-foot__bottom { margin-top: var(--space-8); padding-top: var(--space-6); border-top: 1px solid rgba(255, 255, 255, .14); }
.footer__copyright { font-size: .875rem; color: rgba(255, 255, 255, .78); margin-bottom: var(--space-3); }
.site-foot__safety { font-size: .8125rem; color: rgba(255, 255, 255, .58); margin-bottom: var(--space-3); max-width: 780px; }
.site-foot p:last-child { margin-bottom: 0; }
.site-foot a { color: rgba(255, 255, 255, .78); }

.consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; background: rgba(19, 26, 43, .97); backdrop-filter: blur(8px); color: #FFFFFF; padding: 14px 0; }
.consent__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-3); }
.consent__text { margin: 0; font-size: .875rem; color: rgba(255, 255, 255, .88); }
.consent__text a { color: var(--color-accent); text-decoration: underline; }
.consent__actions { display: flex; gap: var(--space-2); }
.consent .btn-ghost { color: #FFFFFF; border-color: rgba(255, 255, 255, .5); }
.consent .btn-ghost:hover { background: rgba(255, 255, 255, .16); color: #FFFFFF; }

.dock { position: fixed; left: 0; right: 0; bottom: 0; z-index: 110; background: rgba(19, 26, 43, .95); backdrop-filter: blur(8px); color: #FFFFFF; padding: 12px 0; box-shadow: 0 -6px 24px rgba(15, 23, 42, .25); }
.dock__inner { display: flex; align-items: center; gap: var(--space-4); }
.dock__text { margin: 0; font-size: .875rem; color: rgba(255, 255, 255, .9); flex: 1; }
.dock__cta { white-space: nowrap; }
.dock__close { background: none; border: 0; color: rgba(255, 255, 255, .7); font-size: 1.5rem; line-height: 1; width: 44px; height: 44px; }
.dock__close:hover { color: #FFFFFF; }

.about-page, .contact-page, .terms-page, .privacy-page { padding-top: var(--head-h); }
.page-head { padding: 48px 0 24px; background: linear-gradient(140deg, var(--color-primary-soft), #FFFFFF 70%); }
.page-head__title { font-size: clamp(1.9rem, 5vw, 2.9rem); font-weight: 800; margin-bottom: var(--space-3); }
.page-head__sub { font-size: 1.0625rem; color: var(--color-text-muted); max-width: 720px; margin: 0; }
.back-link { display: inline-block; font-weight: 700; font-size: .875rem; margin-bottom: var(--space-4); }
.back-link::before { content: "\2190"; margin-right: 6px; }

.reach__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-12); }
.reach__col { min-width: 0; }
.reach__form { display: flex; flex-direction: column; gap: var(--space-4); }
.reach__field { display: flex; flex-direction: column; gap: 6px; }
.reach__label { font-weight: 700; font-size: .9375rem; }
.reach__label span { color: var(--color-accent-dark); }
.reach__input, .reach__area {
  width: 100%; padding: 13px 16px; border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem;
  background: var(--color-surface); color: var(--color-text); min-height: 48px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.reach__area { min-height: 140px; resize: vertical; }
.reach__input:focus, .reach__area:focus {
  outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px var(--color-primary-soft);
}
.reach__msg {
  color: var(--color-danger); background: var(--color-danger-bg); border: 1px solid var(--color-danger);
  padding: 10px 14px; border-radius: 6px; font-size: .875rem;
}
.reach__info { list-style: none; display: flex; flex-direction: column; gap: var(--space-4); }
.reach__info-item {
  background: var(--color-bg-alt); border-radius: var(--radius-md); padding: var(--space-4) var(--space-6);
  font-size: .9375rem; line-height: 1.7;
}
.reach__info-label {
  display: block; font-family: var(--font-heading); font-weight: 700; font-size: .75rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--color-accent-dark); margin-bottom: 4px;
}

.story__inner { display: grid; grid-template-columns: 1fr; gap: var(--space-8); align-items: start; }
.story__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.story__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.story__body { min-width: 0; color: var(--color-text-muted); }
.story__body p { margin-bottom: var(--space-4); }
.creeds { background: var(--color-bg); }
.creed-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
.creed {
  background: var(--color-surface); border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-sm);
}
.creed__num { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 2.25rem; line-height: 1; color: var(--color-accent); margin-bottom: var(--space-2); }
.creed__title { font-size: 1.125rem; font-weight: 700; margin-bottom: var(--space-2); }
.creed__text { color: var(--color-text-muted); font-size: .9375rem; margin: 0; }
.figure-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); margin-bottom: var(--space-8); }
.figure { display: flex; flex-direction: column; gap: 4px; }
.figure__num { font-family: var(--font-heading); font-weight: 800; font-size: 1.6rem; line-height: 1.1; color: var(--color-primary-dark); }
.figure__label { font-size: .8125rem; color: var(--color-text-muted); line-height: 1.5; }

.legal { padding-top: var(--space-8); }
.legal__updated { font-size: .875rem; color: var(--color-text-muted); margin-bottom: var(--space-8); }
.legal__block { max-width: 820px; margin-bottom: var(--space-8); }
.legal__block h2 { font-size: 1.375rem; font-weight: 700; margin-bottom: var(--space-3); }
.legal__block p { color: var(--color-text-muted); }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.is-open { display: block; }
.show { display: block; }
.collapsed { display: none; }
.is-visible { opacity: 1; }
.active { color: var(--color-accent-dark); }

@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .shot-grid { grid-template-columns: repeat(2, 1fr); }
  .fit-grid { grid-template-columns: repeat(2, 1fr); }
  .creed-grid { grid-template-columns: repeat(2, 1fr); }
  .path__list { grid-template-columns: repeat(2, 1fr); }
  .signup__form { flex-direction: row; }
  .proof-strip__row { grid-template-columns: repeat(4, 1fr); }
  .site-foot__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  section { padding: 80px 0; }
  .container { padding: 0 32px; }
  .why-row { grid-template-columns: 320px 1fr; gap: var(--space-8); padding: var(--space-8); }
  .why-row--flip { grid-template-columns: 1fr 320px; }
  .why-row--flip .why-row__figure { order: 2; }
  .why-row--flip .why-row__body { order: 1; }
  .scene { grid-template-columns: 1fr 1fr; gap: var(--space-12); }
  .scene--flip .scene__media { order: 2; }
  .scene--flip .scene__body { order: 1; }
  .origin__inner { grid-template-columns: 360px 1fr; gap: var(--space-12); }
  .story__inner { grid-template-columns: 340px 1fr; gap: var(--space-12); }
  .reach__grid { grid-template-columns: 1.15fr 1fr; }
  .figure-grid { grid-template-columns: repeat(4, 1fr); }
  .hero { padding: 72px 0 96px; }
  .arc__item { padding-left: 52px; }
  .arc__marker::before { left: -61px; }
}

@media (min-width: 1024px) {
  .site-head__menu { display: none; }
  .site-head__action { display: block; }
  .hero__inner { grid-template-columns: 1.05fr .95fr; gap: var(--space-12); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .shot-grid { grid-template-columns: repeat(4, 1fr); }
  .fit-grid { grid-template-columns: repeat(3, 1fr); }
  .creed-grid { grid-template-columns: repeat(4, 1fr); }
  .path__list { grid-template-columns: repeat(4, 1fr); }
  .site-foot__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

@media (min-width: 1200px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1600px) {
  :root { --container: 1320px; }
}

@media (max-width: 1023px) {
  .site-head__nav {
    position: fixed; top: var(--head-h); left: 0; right: 0;
    background: var(--color-surface); border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md); padding: var(--space-4) 20px var(--space-6);
    max-height: calc(100vh - var(--head-h)); overflow-y: auto;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .25s var(--ease), opacity .25s var(--ease);
  }
  .site-head__nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .site-head__nav ul { flex-direction: column; gap: 0; }
  .site-head__nav a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--color-border); font-size: 1.0625rem; }
  .dock__text { display: none; }
  .dock__cta { flex: 1; }
}

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

.data { background: var(--color-bg-alt); }
.scenes { background: var(--color-bg); }
.origin { background: var(--color-bg-alt); }
.voices { background: var(--color-bg-alt); }
.risks { background: var(--color-bg); }
.fits { background: var(--color-bg-alt); }
.arc { background: var(--color-bg); }
.shots { background: var(--color-bg); }
.story { background: var(--color-bg-alt); }
.figures { background: var(--color-bg-alt); text-align: center; }
.figures .section-subtitle { margin-left: auto; margin-right: auto; }
.reach { background: var(--color-bg); }
.arc, .fits, .risks, .shots, .voices, .scenes, .origin, .data, .story, .figures, .reach { position: relative; }

.site-foot__disclosure { font-size: .75rem; color: rgba(255, 255, 255, .5); margin: 0; }

.site-foot__disclosure { font-size: .75rem; color: rgba(255, 255, 255, .5); margin: 0; }

.site-foot__disclosure { font-size: .75rem; color: rgba(255, 255, 255, .5); margin: 0; }

.site-foot__disclosure { font-size: .75rem; color: rgba(255, 255, 255, .5); margin: 0; }

.site-foot__disclosure { font-size: .75rem; color: rgba(255, 255, 255, .5); margin: 0; }
