﻿@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700&family=Montserrat:wght@700;800&display=swap");
:root {
  --paper: #f7fbff;
  --paper-deep: #eef5fb;
  --clinic: #d8f0fc;
  --clinic-strong: #b4d8f0;
  --ink: #17205f;
  --text: #24305f;
  --muted: #5b6686;
  --quiet: #8790aa;
  --line: rgba(36, 48, 95, 0.14);
  --blue: #b4d8f0;
  --navy: #29338c;
  --teal: #16847f;
  --rose: #f084c0;
  --green: #248b63;
  --yellow: #b88712;
  --red: #c93f58;
  --skin: #f6bea8;
  --white: #fffefa;
  --max: 1180px;
  --radius: 12px;
  --display-font: "Montserrat", "Arial", "Segoe UI", sans-serif;
  --body-font: "Manrope", "Segoe UI", Arial, "Noto Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body-font);
  font-weight: 400;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

body.lightbox-open {
  overflow: hidden;
}

:focus-visible {
  outline: 3px solid rgba(38, 48, 122, 0.3);
  outline-offset: 3px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(36, 48, 95, 0.11);
  background: rgba(247, 251, 255, 0.92);
  backdrop-filter: blur(16px);
}

.wordmark {
  color: var(--navy);
  font-size: 15px;
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

nav a:last-child {
  color: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
  gap: clamp(64px, 8vw, 132px);
  align-items: center;
  max-width: var(--max);
  min-height: calc(100vh - 68px);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 104px) 24px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 12px;
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 0.93;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(32px, 3.45vw, 50px);
  font-weight: 700;
  letter-spacing: -0.024em;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(19px, 1.65vw, 23px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 16px 34px rgba(41, 51, 140, 0.2);
}

.secondary {
  border-color: rgba(41, 51, 140, 0.16);
  background: rgba(255, 254, 250, 0.9);
  color: var(--ink);
}

.primary:hover {
  background: #222b79;
}

.secondary:hover {
  border-color: rgba(41, 51, 140, 0.28);
  background: var(--white);
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.meta-line span {
  border: 1px solid rgba(41, 51, 140, 0.14);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 254, 250, 0.64);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 640px;
  align-items: center;
  justify-items: center;
}

.hero-visual::before {
  position: absolute;
  inset: 72px 34px 64px 86px;
  z-index: 0;
  border: 1px solid rgba(41, 51, 140, 0.08);
  border-radius: 28px;
  background: var(--clinic);
  content: "";
  transform: rotate(-2deg);
}

.poster {
  position: relative;
  z-index: 2;
  width: min(86%, 560px);
  border: 1px solid rgba(41, 51, 140, 0.14);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(23, 32, 95, 0.22);
}

.manifest {
  padding: clamp(56px, 8vw, 92px) 24px;
  background:
    linear-gradient(135deg, #17205f, #29338c 54%, #1f286f),
    var(--ink);
  color: #fff;
}

.manifest figure {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.manifest-author {
  display: grid;
  gap: 18px;
  transform: rotate(-2deg);
}

.manifest-author img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  border: 10px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  object-fit: cover;
  object-position: center bottom;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.manifest-author > div {
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.manifest figcaption {
  display: block;
  margin: 0 0 7px;
  color: var(--clinic-strong);
  font-size: 14px;
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.manifest-author span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.manifest-quote {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: clamp(30px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
  transform: rotate(1.2deg);
}

.manifest blockquote {
  position: relative;
  max-width: 1040px;
  margin: 0;
  padding-left: clamp(24px, 4vw, 54px);
  font-family: var(--display-font);
  font-size: clamp(25px, 2.55vw, 38px);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.18;
  transform: rotate(-1.2deg);
}

.manifest blockquote::before {
  position: absolute;
  top: -0.12em;
  left: 0;
  color: var(--rose);
  content: "“";
  font-size: 1.2em;
  line-height: 1;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 116px) 24px;
}

.hero > *,
.stacked-section > *,
.signal-head > *,
.order-panel > *,
.footer > * {
  min-width: 0;
}

.stacked-section {
  display: grid;
  gap: clamp(32px, 5vw, 58px);
}

.section-intro {
  max-width: 900px;
}

.section-intro p {
  max-width: 680px;
}

.page-gallery,
.fit-list,
.order-form {
  max-width: 100%;
}

.section-intro p,
.signal-head p,
.order-panel p,
.footer p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.topic-list span {
  border: 1px solid rgba(41, 51, 140, 0.14);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 254, 250, 0.74);
  color: var(--ink);
  font-size: 14px;
  font-family: var(--display-font);
  font-weight: 700;
}

.topic-list span:nth-child(3),
.topic-list span:nth-child(4),
.topic-list span:nth-child(7) {
  border-color: rgba(240, 132, 192, 0.32);
  background: rgba(240, 132, 192, 0.08);
  color: #7a2c5a;
}

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

.preview-item {
  position: relative;
  display: grid;
  gap: 12px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  cursor: zoom-in;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
}

.preview-item img {
  transition:
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.preview-item:hover img {
  box-shadow: 0 16px 40px rgba(23, 32, 95, 0.14);
  transform: translateY(-2px);
}

.page-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4.25;
  object-fit: contain;
  border: 1px solid rgba(41, 51, 140, 0.12);
  border-radius: 8px;
  background: #fff;
}

.preview-item span {
  position: relative;
  z-index: 4;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px clamp(18px, 4vw, 72px);
  background: rgba(12, 18, 58, 0.82);
  backdrop-filter: blur(10px);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-frame {
  display: grid;
  gap: 14px;
  width: min(88vw, 760px);
  max-height: 92vh;
  margin: 0;
}

.lightbox-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.lightbox-image-wrap img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox figcaption {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  font-size: 30px;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 48px;
  height: 58px;
  font-size: 44px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.signal-block {
  max-width: none;
  padding: clamp(70px, 8vw, 116px) 24px;
  background: var(--white);
}

.signal-head,
.signal-table {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.signal-head {
  display: grid;
  gap: 18px;
  margin-bottom: 42px;
}

.signal-table {
  display: grid;
  gap: 22px;
}

.signal-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(220px, 0.7fr) minmax(0, 1.6fr);
  gap: 28px;
  align-items: start;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 30px 32px 30px 38px;
  box-shadow: 0 18px 44px rgba(41, 51, 140, 0.08);
  transition:
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.signal-row::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  content: "";
}

.signal-row:hover {
  transform: translateY(-2px);
}

.signal-row > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.signal-dot {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
}

.signal-row.green {
  border-color: rgba(36, 139, 99, 0.22);
  background:
    linear-gradient(90deg, rgba(36, 139, 99, 0.18), rgba(36, 139, 99, 0.055) 46%, rgba(255, 255, 255, 0.94)),
    var(--white);
  box-shadow: 0 20px 48px rgba(36, 139, 99, 0.18);
}

.signal-row.green::before {
  background: var(--green);
}

.signal-row.green .signal-dot {
  background: var(--green);
  box-shadow: 0 0 0 10px rgba(36, 139, 99, 0.12);
}

.signal-row.green strong {
  color: var(--green);
}

.signal-row.yellow {
  border-color: rgba(184, 135, 18, 0.26);
  background:
    linear-gradient(90deg, rgba(255, 184, 27, 0.24), rgba(255, 184, 27, 0.08) 46%, rgba(255, 255, 255, 0.94)),
    var(--white);
  box-shadow: 0 20px 48px rgba(184, 135, 18, 0.2);
}

.signal-row.yellow::before {
  background: var(--yellow);
}

.signal-row.yellow .signal-dot {
  background: var(--yellow);
  box-shadow: 0 0 0 10px rgba(184, 135, 18, 0.13);
}

.signal-row.yellow strong {
  color: var(--yellow);
}

.signal-row.red {
  border-color: rgba(201, 63, 88, 0.24);
  background:
    linear-gradient(90deg, rgba(201, 63, 88, 0.2), rgba(201, 63, 88, 0.065) 46%, rgba(255, 255, 255, 0.94)),
    var(--white);
  box-shadow: 0 20px 48px rgba(201, 63, 88, 0.2);
}

.signal-row.red::before {
  background: var(--red);
}

.signal-row.red .signal-dot {
  background: var(--red);
  box-shadow: 0 0 0 10px rgba(201, 63, 88, 0.13);
}

.signal-row.red strong {
  color: var(--red);
}

.signal-row h3,
.signal-row p {
  margin-bottom: 0;
}

.signal-row strong {
  font-weight: 700;
  font-size: 18px;
}

.signal-row p {
  color: var(--muted);
  line-height: 1.62;
}

.fit-section {
  border-bottom: 1px solid var(--line);
}

.fit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.fit-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  min-height: 178px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(41, 51, 140, 0.12);
  border-radius: 18px;
  padding: 24px;
  background: rgba(255, 254, 250, 0.9);
  box-shadow: 0 20px 52px rgba(23, 32, 95, 0.07);
}

.fit-card::after {
  position: absolute;
  right: -48px;
  bottom: -58px;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  opacity: 0.58;
  content: "";
}

.fit-card > * {
  position: relative;
  z-index: 1;
}

.fit-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: var(--clinic);
  color: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(41, 51, 140, 0.08);
}

.fit-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.fit-card h3 {
  max-width: 460px;
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

.fit-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.fit-card.baby {
  border-color: rgba(22, 132, 127, 0.18);
  background: linear-gradient(135deg, rgba(216, 240, 252, 0.88), rgba(255, 254, 250, 0.94) 58%);
}

.fit-card.baby .fit-icon {
  background: rgba(22, 132, 127, 0.1);
  color: var(--teal);
}

.fit-card.baby::after {
  background: rgba(22, 132, 127, 0.1);
}

.fit-card.calendar {
  border-color: rgba(41, 51, 140, 0.18);
  background: linear-gradient(135deg, rgba(180, 216, 240, 0.66), rgba(255, 254, 250, 0.95) 58%);
}

.fit-card.calendar .fit-icon {
  background: rgba(41, 51, 140, 0.08);
  color: var(--navy);
}

.fit-card.calendar::after {
  background: rgba(41, 51, 140, 0.08);
}

.fit-card.stethoscope {
  border-color: rgba(240, 132, 192, 0.24);
  background: linear-gradient(135deg, rgba(240, 132, 192, 0.16), rgba(255, 254, 250, 0.95) 58%);
}

.fit-card.stethoscope .fit-icon {
  background: rgba(240, 132, 192, 0.14);
  color: #b93b78;
}

.fit-card.stethoscope::after {
  background: rgba(240, 132, 192, 0.16);
}

.fit-card.compass {
  border-color: rgba(184, 135, 18, 0.22);
  background: linear-gradient(135deg, rgba(255, 184, 27, 0.15), rgba(255, 254, 250, 0.95) 58%);
}

.fit-card.compass .fit-icon {
  background: rgba(255, 184, 27, 0.16);
  color: var(--yellow);
}

.fit-card.compass::after {
  background: rgba(255, 184, 27, 0.16);
}

.authors-section {
  display: grid;
  gap: clamp(32px, 5vw, 58px);
}

.author-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.author-list article {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
  align-items: start;
  height: 100%;
  min-height: 100%;
  padding: 16px 16px 24px;
  border: 1px solid rgba(41, 51, 140, 0.12);
  border-radius: 18px;
  background: rgba(255, 254, 250, 0.88);
  box-shadow: 0 24px 60px rgba(23, 32, 95, 0.08);
  overflow: hidden;
}

.author-list article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  content: "";
}

.author-list article:nth-child(1) {
  border-color: rgba(41, 51, 140, 0.16);
  background:
    linear-gradient(180deg, rgba(216, 240, 252, 0.58), rgba(255, 254, 250, 0.94) 45%),
    var(--white);
  box-shadow: 0 26px 66px rgba(41, 51, 140, 0.11);
}

.author-list article:nth-child(2) {
  border-color: rgba(22, 132, 127, 0.18);
  background:
    linear-gradient(180deg, rgba(22, 132, 127, 0.09), rgba(255, 254, 250, 0.95) 48%),
    var(--white);
  box-shadow: 0 26px 66px rgba(22, 132, 127, 0.11);
}

.author-list article:nth-child(3) {
  border-color: rgba(240, 132, 192, 0.22);
  background:
    linear-gradient(180deg, rgba(180, 216, 240, 0.5), rgba(255, 254, 250, 0.95) 48%),
    var(--white);
  box-shadow: 0 26px 66px rgba(41, 51, 140, 0.1);
}

.author-list article:nth-child(1)::before {
  background: linear-gradient(90deg, var(--navy), var(--clinic-strong));
}

.author-list article:nth-child(2)::before {
  background: linear-gradient(90deg, var(--teal), var(--clinic-strong));
}

.author-list article:nth-child(3)::before {
  background: linear-gradient(90deg, var(--clinic-strong), var(--rose));
}

.author-photo {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  width: 100%;
  height: clamp(340px, 27vw, 390px);
  padding: 12px;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(180, 216, 240, 0.98), rgba(240, 132, 192, 0.16) 58%, rgba(216, 240, 252, 0.78)),
    var(--clinic);
  color: var(--teal);
}

.author-list article:nth-child(1) .author-photo {
  background:
    linear-gradient(150deg, rgba(180, 216, 240, 0.95), rgba(238, 245, 251, 0.98) 48%, rgba(216, 240, 252, 0.96)),
    var(--clinic);
}

.author-list article:nth-child(2) .author-photo {
  background:
    linear-gradient(150deg, rgba(216, 240, 252, 0.98), rgba(255, 254, 250, 0.78) 52%, rgba(22, 132, 127, 0.13)),
    var(--clinic);
}

.author-list article:nth-child(3) .author-photo {
  background:
    linear-gradient(150deg, rgba(180, 216, 240, 0.98), rgba(216, 240, 252, 0.8) 48%, rgba(240, 132, 192, 0.15)),
    var(--clinic);
}

.author-photo img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: contain;
  object-position: center center;
}

.author-list article:nth-child(1) .author-photo img {
  object-position: center bottom;
  transform: translateY(16px);
}

.author-list article > div:last-child {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.author-list h3,
.author-list p,
.author-list strong,
.author-badge {
  margin-bottom: 4px;
}

.author-list h3 {
  margin-top: 0;
  font-size: clamp(21px, 1.7vw, 26px);
  line-height: 1.08;
}

.author-list strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.author-badge {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 18px;
  border-radius: 6px;
  padding: 8px 10px;
  background: rgba(36, 48, 95, 0.06);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.author-list article:nth-child(1) .author-badge {
  background: rgba(41, 51, 140, 0.08);
  color: var(--navy);
}

.author-list article:nth-child(2) .author-badge {
  background: rgba(22, 132, 127, 0.1);
  color: var(--teal);
}

.author-list article:nth-child(3) .author-badge {
  background: rgba(180, 216, 240, 0.34);
  color: var(--navy);
}

.author-list p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.reviews-section {
  position: relative;
  max-width: none;
  padding: clamp(70px, 8vw, 116px) 24px;
  background:
    linear-gradient(135deg, rgba(216, 240, 252, 0.92), rgba(255, 254, 250, 0.88) 44%, rgba(240, 132, 192, 0.13)),
    var(--paper-deep);
}

.reviews-section .section-intro,
.reviews-slider {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.reviews-section .section-intro {
  margin-bottom: clamp(32px, 5vw, 54px);
}

.reviews-slider {
  display: grid;
  gap: 20px;
}

.reviews-viewport {
  overflow: hidden;
  border: 1px solid rgba(41, 51, 140, 0.12);
  border-radius: 26px;
  background: rgba(255, 254, 250, 0.72);
  box-shadow: 0 30px 80px rgba(23, 32, 95, 0.11);
}

.reviews-track {
  display: flex;
  transition: transform 0.34s ease;
  will-change: transform;
}

.review-slide {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 58px);
  min-width: 100%;
  padding: clamp(22px, 4vw, 42px);
}

.review-slide.text-only {
  grid-template-columns: 1fr;
  min-height: 520px;
  align-items: center;
}

.review-slide-media {
  min-width: 0;
}

.review-slide-copy {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(180, 216, 240, 0.42), rgba(255, 254, 250, 0.86) 64%),
    rgba(255, 254, 250, 0.82);
}

.review-slide.text-only .review-slide-copy {
  max-width: 880px;
  margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(216, 240, 252, 0.68), rgba(255, 254, 250, 0.92) 54%, rgba(240, 132, 192, 0.12)),
    rgba(255, 254, 250, 0.88);
}

.review-kind {
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-slide-copy p {
  margin-bottom: 28px;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.28;
}

.review-slide.text-only .review-slide-copy p {
  font-size: clamp(20px, 2vw, 28px);
}

.review-slide-copy strong {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.review-shot {
  position: relative;
  display: grid;
  gap: 14px;
  width: 100%;
  border: 1px solid rgba(41, 51, 140, 0.14);
  border-radius: 22px;
  padding: 14px;
  background: rgba(255, 254, 250, 0.92);
  box-shadow: 0 28px 70px rgba(23, 32, 95, 0.12);
  color: var(--ink);
  cursor: zoom-in;
}

.review-shot img {
  width: 100%;
  max-height: 620px;
  border-radius: 16px;
  object-fit: contain;
  background: #f3f7fb;
}

.review-shot span {
  justify-self: start;
  border-radius: 999px;
  padding: 9px 13px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.review-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(41, 51, 140, 0.14);
  border-radius: 50%;
  background: rgba(255, 254, 250, 0.92);
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.review-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(41, 51, 140, 0.22);
  transition:
    width 0.2s ease,
    background 0.2s ease;
}

.review-dots span.is-active {
  width: 28px;
  background: var(--navy);
}

.order-section {
  max-width: none;
  padding: clamp(70px, 8vw, 116px) 24px;
  border-top: 1px solid rgba(41, 51, 140, 0.08);
  border-bottom: 1px solid rgba(41, 51, 140, 0.08);
  background: var(--clinic);
}

.order-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 58px);
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.order-panel h2 {
  color: var(--navy);
}

.order-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 780px;
  margin-top: 30px;
}

.order-points span {
  position: relative;
  border-top: 1px solid rgba(41, 51, 140, 0.18);
  padding: 14px 0 2px 28px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}

.order-points span::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 3px solid var(--rose);
  border-radius: 50%;
  background: var(--navy);
  content: "";
}

.product-select-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-select-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(41, 51, 140, 0.14);
  border-radius: 22px;
  padding: 26px;
  background: rgba(255, 254, 250, 0.88);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 24px 60px rgba(23, 32, 95, 0.08);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.product-select-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--navy), var(--clinic-strong));
  content: "";
}

.product-select-card.active,
.product-select-card:hover {
  border-color: rgba(41, 51, 140, 0.32);
  box-shadow: 0 30px 76px rgba(41, 51, 140, 0.14);
  transform: translateY(-2px);
}

.product-select-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--teal), var(--rose));
}

.product-card-badge {
  justify-self: start;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(36, 139, 99, 0.12);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card-info h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.product-card-info p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.product-card-info ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-card-info li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}

.product-card-info li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.product-select-card:nth-child(2) .product-card-info li::before {
  background: var(--rose);
}

.product-card-pricing {
  display: grid;
  gap: 2px;
  align-self: end;
}

.product-card-old-price {
  color: var(--quiet);
  font-size: 15px;
  font-weight: 700;
  text-decoration: line-through;
}

.product-card-pricing strong {
  color: var(--navy);
  font-family: var(--display-font);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 800;
  line-height: 1;
}

.product-card-pricing strong span {
  font-size: 0.52em;
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(41, 51, 140, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.92);
  box-shadow: 0 28px 60px rgba(23, 32, 95, 0.08);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(41, 51, 140, 0.18);
  border-radius: 10px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(41, 51, 140, 0.42);
  outline: none;
  box-shadow: 0 0 0 4px rgba(180, 216, 240, 0.46);
}

.order-form label.has-error input,
.order-form label.has-error textarea,
.order-form label.has-error select {
  border-color: rgba(201, 63, 88, 0.72);
  box-shadow: 0 0 0 4px rgba(201, 63, 88, 0.1);
}

.field-error {
  min-height: 17px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.45;
}

.form-toast {
  display: none;
  border: 1px solid rgba(36, 139, 99, 0.2);
  border-radius: 14px;
  padding: 16px 18px;
  background:
    linear-gradient(135deg, rgba(36, 139, 99, 0.14), rgba(216, 240, 252, 0.5)),
    rgba(255, 254, 250, 0.94);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.form-toast.is-visible {
  display: block;
}

.form-toast::before {
  color: var(--green);
  content: "✓ ";
}

.faq-section {
  display: grid;
  gap: clamp(32px, 5vw, 58px);
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  overflow: hidden;
  border: 1px solid rgba(41, 51, 140, 0.12);
  border-radius: 18px;
  background: rgba(255, 254, 250, 0.86);
  box-shadow: 0 18px 42px rgba(23, 32, 95, 0.05);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

details[open] {
  border-color: rgba(41, 51, 140, 0.22);
  background:
    linear-gradient(135deg, rgba(216, 240, 252, 0.62), rgba(255, 254, 250, 0.94) 56%),
    var(--white);
  box-shadow: 0 24px 58px rgba(23, 32, 95, 0.08);
}

summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-family: var(--display-font);
  font-weight: 700;
  line-height: 1.25;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(180, 216, 240, 0.52);
  color: var(--navy);
  content: "+";
  font-size: 24px;
  font-family: var(--body-font);
  font-weight: 700;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

details[open] summary::after {
  background: var(--navy);
  color: #fff;
  content: "-";
  transform: rotate(180deg);
}

details p {
  max-width: none;
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.62;
}

.footer {
  padding: 34px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
}

.footer p {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 25;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 18px 42px rgba(23, 32, 95, 0.26);
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.back-to-top:hover {
  background: #222b79;
  transform: translateY(-2px);
}

@media (max-width: 1000px) {
  .hero,
  .manifest figure,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 600px;
  }

  .manifest-author {
    max-width: 320px;
  }

  .signal-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-gallery {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .preview-item {
    flex: 0 0 210px;
    scroll-snap-align: start;
  }

  .author-list {
    grid-template-columns: 1fr;
  }

  .review-slide {
    grid-template-columns: 1fr;
  }

  .review-slide.text-only {
    min-height: 420px;
  }

  .order-points {
    grid-template-columns: 1fr;
  }

  .product-select-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 20px;
  }

  nav {
    width: 100%;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  nav a {
    white-space: nowrap;
  }

  .hero,
  .section,
  .signal-block,
  .reviews-section,
  .order-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  h1 {
    font-size: 34px;
    line-height: 0.96;
  }

  h2 {
    font-size: 30px;
    line-height: 1.02;
  }

  .hero-subtitle {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions,
  .hero-actions .button,
  .order-form .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-visual::before {
    inset: 52px 14px 44px 46px;
  }

  .poster {
    width: min(86%, 330px);
  }

  .manifest blockquote {
    font-size: 22px;
    line-height: 1.22;
  }

  .manifest-author,
  .manifest-quote,
  .manifest blockquote {
    transform: none;
  }

  .fit-list,
  .order-form,
  .author-list {
    grid-template-columns: 1fr;
  }

  .review-shot img {
    max-height: 460px;
  }

  .review-slide {
    padding: 16px;
  }

  .review-slide-copy {
    padding: 18px;
  }

  .review-slide-copy p,
  .review-slide.text-only .review-slide-copy p {
    font-size: 19px;
    line-height: 1.32;
  }

  .review-controls {
    gap: 12px;
  }

  .review-arrow {
    width: 44px;
    height: 44px;
  }

  summary {
    grid-template-columns: minmax(0, 1fr) 34px;
    padding: 18px 18px;
    font-size: 16px;
  }

  summary::after {
    width: 34px;
    height: 34px;
    font-size: 21px;
  }

  details p {
    padding: 0 18px 20px;
    font-size: 15px;
  }

  .author-list article {
    grid-template-columns: 1fr;
  }

  .author-photo {
    height: 360px;
  }

  .wide {
    grid-column: auto;
  }

  .lightbox {
    padding: 58px 12px 24px;
  }

  .lightbox-frame {
    width: min(94vw, 420px);
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 46px;
    height: 46px;
    font-size: 36px;
    transform: none;
  }

  .lightbox-prev {
    left: 24px;
  }

  .lightbox-next {
    right: 24px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    font-size: 21px;
  }
}

