:root {
  --ink: #353d51;
  --ink-deep: #20283b;
  --muted: #677087;
  --soft: #f5f7fc;
  --soft-blue: #edf8fe;
  --line: #e3e8f1;
  --blue: #00aeea;
  --blue-dark: #006f98;
  --blue-hover: #005c7f;
  --blue-pale: #dff6ff;
  --white: #fff;
  --warm: #b98345;
  --green: #238a62;
  --warning: #8a5b13;
  --warning-bg: #fff8e8;
  --radius: 14px;
  --shadow: 0 14px 34px rgba(48, 65, 94, .11);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
::selection { color: var(--white); background: var(--blue-dark); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--soft); }
::-webkit-scrollbar-thumb { background: #a9b6c9; border: 3px solid var(--soft); border-radius: 10px; }
a { color: inherit; text-underline-offset: .2em; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
:focus-visible { outline: 3px solid rgba(0, 174, 234, .45); outline-offset: 3px; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink-deep); line-height: 1.12; letter-spacing: -.025em; }
h1 { max-width: 12ch; margin-bottom: 24px; font-size: clamp(2.8rem, 5.2vw, 4.65rem); font-weight: 600; }
h2 { margin-bottom: 20px; font-size: clamp(2rem, 3.7vw, 3.35rem); font-weight: 600; }
h3 { margin-bottom: 12px; font-size: 1.3rem; }
p { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 12px 18px; color: var(--white); background: var(--ink-deep); transform: translateY(-140%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.prototype-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 34px;
  padding: 7px 20px;
  color: #5c4a22;
  background: #fff8e5;
  border-bottom: 1px solid #efe1bd;
  font-size: .82rem;
  text-align: center;
}
.prototype-note span { padding: 2px 8px; color: #fff; background: #765817; border-radius: 999px; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 142px 1fr auto auto;
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 36px), 1280px);
  min-height: 84px;
  margin: 14px auto 0;
  padding: 10px 14px 10px 22px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 9px 25px rgba(44, 57, 82, .08);
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 118px; height: auto; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2vw, 30px); }
.site-nav a, .header-login { font-size: .82rem; font-weight: 600; text-decoration: none; white-space: nowrap; }
.site-nav a { position: relative; color: #596176; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; background: var(--blue); transform: scaleX(0); transition: transform .2s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.header-login { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); }
.header-login svg, .menu-button svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.menu-button { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--soft); cursor: pointer; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  color: var(--white);
  background: var(--blue-dark);
  border: 1px solid var(--blue-dark);
  border-radius: 11px;
  box-shadow: 0 7px 18px rgba(0, 174, 234, .22);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.button:hover { background: var(--blue-hover); border-color: var(--blue-hover); box-shadow: 0 10px 25px rgba(0, 92, 127, .28); transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button--small { min-height: 44px; padding: 10px 18px; font-size: .8rem; }
.button--large { min-height: 56px; padding: 15px 26px; }
.button--secondary { color: var(--ink); background: var(--white); border-color: #d8deea; box-shadow: none; }
.button--secondary:hover { color: var(--blue-dark); background: var(--soft-blue); border-color: #9ddff5; box-shadow: none; }
.button--light { color: var(--blue-dark); background: var(--white); border-color: var(--white); }
.button--light:hover { color: var(--ink-deep); background: #eefaff; border-color: #eefaff; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  width: min(calc(100% - 48px), var(--container));
  min-height: 720px;
  margin: 0 auto;
  padding: 70px 0 64px;
}
.product-mark { display: flex; align-items: center; gap: 10px; width: fit-content; margin-bottom: 22px; color: var(--blue-dark); font-size: .82rem; font-weight: 700; }
.product-mark svg { width: 30px; height: 30px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-lead { max-width: 620px; margin-bottom: 30px; font-size: 1.15rem; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.price-caption { margin: 10px 0 0; font-size: .82rem; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 38px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; }
.hero-facts li { display: flex; flex-direction: column; }
.hero-facts strong { color: var(--ink-deep); font-size: 1rem; }
.hero-facts span { color: var(--muted); font-size: .8rem; }
.hero-visual { position: relative; min-height: 625px; }
.hero-image-wrap { position: absolute; inset: 0 22px 0 46px; overflow: hidden; background: #17140f; border-radius: var(--radius); box-shadow: 0 28px 60px rgba(35, 42, 58, .2); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.scan-card, .gift-card { position: absolute; display: flex; align-items: center; gap: 12px; padding: 14px 17px; background: rgba(255,255,255,.97); border-radius: 12px; box-shadow: var(--shadow); }
.scan-card { right: -8px; bottom: 76px; }
.gift-card { top: 72px; left: 0; }
.scan-card svg, .gift-card svg { width: 28px; height: 28px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.scan-icon { display: grid; width: 43px; height: 43px; place-items: center; background: var(--soft-blue); border-radius: 10px; }
.scan-card span, .gift-card span { color: var(--ink-deep); font-size: .78rem; line-height: 1.3; }
.scan-card small, .gift-card small { color: var(--muted); font-size: .65rem; }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); width: min(calc(100% - 48px), var(--container)); margin: 0 auto 24px; padding: 24px 28px; background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); }
.trust-strip div { display: flex; flex-direction: column; padding: 2px 25px; border-right: 1px solid #dce2ec; }
.trust-strip div:first-child { padding-left: 0; }
.trust-strip div:last-child { padding-right: 0; border-right: 0; }
.trust-strip strong { color: var(--blue-dark); font-size: 1.05rem; }
.trust-strip span { margin-top: 3px; color: var(--muted); font-size: .78rem; }

.section { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; padding: 104px 0; }
.section-heading { max-width: 780px; margin: 0 auto 50px; text-align: center; }
.section-heading--left { margin-left: 0; text-align: left; }
.section-heading p { max-width: 66ch; margin-bottom: 0; font-size: 1.04rem; }
.value-split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.value-panel { position: relative; min-height: 520px; overflow: hidden; border-radius: var(--radius); }
.value-panel--object { color: var(--white); background: var(--ink-deep); }
.value-panel--digital { background: var(--soft-blue); }
.value-content { position: relative; z-index: 2; max-width: 470px; padding: 44px 42px; }
.value-panel--object h3, .value-panel--object p { color: var(--white); }
.value-panel--object p { color: #ccd5e6; }
.value-label { display: block; margin-bottom: 20px; color: #37c8fa; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.value-panel--digital .value-label { color: var(--blue-dark); }
.value-panel h3 { max-width: 15ch; font-size: 2rem; }
.value-panel p { line-height: 1.65; }
.check-list { margin: 25px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 12px 0; padding-left: 27px; color: inherit; font-size: .9rem; }
.check-list li::before { content: ""; position: absolute; top: .34em; left: 0; width: 12px; height: 7px; border-bottom: 2px solid var(--blue); border-left: 2px solid var(--blue); transform: rotate(-45deg); }
.object-mini { position: absolute; right: -20px; bottom: -42px; width: 270px; height: 270px; color: rgba(255,255,255,.62); }
.object-mini svg { width: 100%; height: 100%; fill: rgba(255,255,255,.04); stroke: currentColor; stroke-width: 2; }
.family-mini { position: absolute; right: -20px; bottom: -10px; width: 320px; height: 250px; }
.family-node { position: absolute; z-index: 2; display: flex; width: 104px; min-height: 58px; flex-direction: column; justify-content: center; padding: 9px 12px; background: var(--white); border-radius: 10px; box-shadow: 0 9px 24px rgba(43, 74, 104, .12); font-size: .72rem; }
.family-node small { color: var(--muted); }
.family-node--root { top: 0; left: 108px; }
.family-node--left { top: 100px; left: 0; }
.family-node--right { top: 100px; right: 0; }
.family-node--child { right: 44px; bottom: 0; }
.family-line { position: absolute; z-index: 1; background: #96dcef; }
.family-line--one { top: 58px; left: 52px; width: 218px; height: 84px; background: none; border-top: 2px solid #96dcef; border-right: 2px solid #96dcef; border-left: 2px solid #96dcef; }
.family-line--two { top: 158px; right: 51px; width: 2px; height: 34px; }

.demo-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 60px; align-items: center; }
.demo-copy h2 { max-width: 10ch; }
.demo-copy > p { max-width: 46ch; }
.demo-tabs { display: flex; gap: 7px; margin: 30px 0 22px; padding: 5px; background: var(--soft); border-radius: 12px; }
.demo-tab { min-height: 44px; flex: 1; padding: 8px 10px; color: var(--muted); background: transparent; border: 0; border-radius: 8px; font-size: .86rem; font-weight: 700; cursor: pointer; }
.demo-tab.is-active { color: var(--blue-dark); background: var(--white); box-shadow: 0 5px 15px rgba(51, 65, 90, .08); }
.demo-description { display: flex; flex-direction: column; gap: 5px; padding-left: 18px; border-left: 1px solid var(--blue); }
.demo-description strong { color: var(--ink-deep); font-size: .92rem; }
.demo-description span { color: var(--muted); font-size: .86rem; }
.app-window { min-height: 520px; overflow: hidden; background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.app-toolbar { display: flex; height: 62px; align-items: center; justify-content: space-between; padding: 0 22px; background: var(--white); border-bottom: 1px solid var(--line); }
.app-brand { display: flex; align-items: center; gap: 9px; color: var(--ink-deep); font-size: .78rem; font-weight: 700; }
.app-brand span { width: 24px; height: 24px; background: var(--blue); clip-path: polygon(0 15%, 45% 0, 75% 22%, 58% 47%, 89% 61%, 55% 100%, 22% 82%, 35% 52%, 0 43%); }
.app-actions { display: flex; gap: 7px; }
.app-actions i { width: 8px; height: 8px; background: #c6cfdd; border-radius: 50%; }
.app-canvas { position: relative; height: 458px; padding: 30px; background: #f8fafd; }
.app-canvas[hidden] { display: none; }
.tree-node { position: absolute; z-index: 2; display: grid; grid-template-columns: 46px 1fr; grid-template-rows: 1fr 1fr; width: 178px; min-height: 70px; align-items: center; padding: 10px; background: var(--white); border-radius: 11px; box-shadow: 0 8px 20px rgba(47, 61, 86, .09); }
.tree-node b { align-self: end; color: var(--ink-deep); font-size: .68rem; }
.tree-node small { align-self: start; color: var(--muted); font-size: .6rem; }
.avatar { display: grid; grid-row: 1 / span 2; width: 36px; height: 36px; place-items: center; color: var(--white); border-radius: 50%; font-size: .7rem; font-weight: 700; }
.avatar--one { background: #6f9bd1; }.avatar--two { background: #dc88a7; }.avatar--three { background: #6ab7a2; }.avatar--four { background: #a489cf; }
.tree-node--a { top: 35px; left: calc(50% - 89px); }
.tree-node--b { top: 205px; left: 30px; }
.tree-node--c { top: 205px; right: 30px; }
.tree-node--d { bottom: 24px; left: calc(50% - 89px); }
.tree-links { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: #a7b4c8; stroke-width: 2; }
.add-person { position: absolute; z-index: 3; right: 24px; bottom: 24px; display: grid; width: 48px; height: 48px; place-items: center; color: var(--white); background: var(--blue); border: 0; border-radius: 50%; box-shadow: 0 7px 18px rgba(0, 174, 234, .25); cursor: pointer; }
.add-person svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.app-canvas--story, .app-canvas--invite { padding: 44px; }
.story-cover { display: flex; align-items: center; gap: 15px; }
.story-cover .avatar { width: 50px; height: 50px; }
.story-cover div { display: flex; flex-direction: column; }
.story-cover b { color: var(--ink-deep); }.story-cover small { color: var(--muted); }
.app-canvas blockquote { max-width: 580px; margin: 45px 0 35px; color: var(--ink-deep); font-size: 1.45rem; line-height: 1.5; }
.story-media { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 12px; }
.story-media span { height: 95px; background: #dbe5f1; border-radius: 10px; }
.story-media span:nth-child(2) { background: #d8f1ee; }.story-media span:nth-child(3) { background: #f5dfd6; }
.app-canvas--invite { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.invite-visual { display: grid; width: 82px; height: 82px; place-items: center; margin-bottom: 25px; color: var(--blue); background: var(--soft-blue); border-radius: 50%; }
.invite-visual svg { width: 45px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.app-canvas--invite p { max-width: 430px; }

.how { padding-top: 70px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.steps li { display: grid; grid-template-columns: 50px 1fr; gap: 16px; min-height: 245px; padding: 34px 30px 20px; border-right: 1px solid var(--line); }
.steps li:first-child { padding-left: 0; }.steps li:last-child { padding-right: 0; border-right: 0; }
.step-number { display: grid; width: 42px; height: 42px; place-items: center; color: var(--blue-dark); background: var(--soft-blue); border-radius: 50%; font-weight: 700; }
.steps h3 { margin: 8px 0 12px; }.steps p { font-size: .86rem; line-height: 1.65; }

.inside { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; align-items: start; }
.inside-intro { position: sticky; top: 130px; }
.inside-intro p { max-width: 42ch; }
.inside-table { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.inside-row { display: grid; grid-template-columns: 1fr 135px; gap: 20px; min-height: 72px; align-items: center; padding: 15px 22px; border-bottom: 1px solid var(--line); }
.inside-row:last-child { border-bottom: 0; }
.inside-row--head { min-height: 52px; color: var(--muted); background: var(--soft); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.inside-row span:first-child { display: flex; align-items: center; gap: 13px; }
.inside-row svg { width: 21px; flex: 0 0 auto; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.inside-row strong { color: var(--ink-deep); font-size: .88rem; }

.plans { width: 100%; max-width: none; padding-right: max(24px, calc((100% - var(--container))/2)); padding-left: max(24px, calc((100% - var(--container))/2)); background: var(--soft); }
.terms-note { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; padding: 17px 20px; color: var(--warning); background: var(--warning-bg); border: 1px solid #ead49f; border-radius: 12px; }
.terms-note svg { width: 24px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linejoin: round; }
.terms-note div { display: flex; flex-direction: column; }.terms-note strong { font-size: .9rem; }.terms-note span { margin-top: 3px; font-size: .82rem; }
.purchase-line { display: grid; grid-template-columns: 220px 1fr auto; gap: 28px; align-items: center; padding: 30px; color: var(--white); background: var(--ink-deep); border-radius: var(--radius); }
.purchase-line > div { display: flex; flex-direction: column; }
.purchase-line > div span, .purchase-line small { color: #d2d9e6; font-size: .78rem; }
.purchase-line > div strong { font-size: 2rem; font-variant-numeric: tabular-nums; }
.purchase-line p { max-width: 600px; margin: 0; color: #e3e8f1; font-size: .9rem; }
.subscription-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin: 54px 0 22px; }
.subscription-head h3, .subscription-head p { margin-bottom: 0; }.subscription-head p { font-size: .85rem; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan-card { position: relative; min-height: 365px; padding: 30px; background: var(--white); border-radius: var(--radius); }
.plan-card--selected { outline: 2px solid var(--blue); }
.plan-card h3 { max-width: 14ch; margin-top: 5px; }
.plan-badge { display: inline-flex; min-height: 28px; align-items: center; padding: 4px 10px; color: var(--blue-dark); background: var(--soft-blue); border-radius: 999px; font-size: .76rem; font-weight: 700; }
.plan-price { display: flex; flex-direction: column; margin: 24px 0; }
.plan-price strong { color: var(--ink-deep); font-size: 2.15rem; line-height: 1; font-variant-numeric: tabular-nums; }
.plan-price span { margin-top: 6px; font-size: .8rem; }
.plan-card .check-list { min-height: 105px; }
.text-link { color: var(--blue-dark); font-size: .84rem; font-weight: 700; }
.renewal-copy { max-width: 830px; margin: 26px 0 0; font-size: .84rem; }

.occasion-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.occasion-grid article { min-height: 250px; padding: 32px 24px; border-right: 1px solid var(--line); }
.occasion-grid article:first-child { padding-left: 0; }.occasion-grid article:last-child { padding-right: 0; border-right: 0; }
.occasion-grid span { color: var(--blue-dark); font-size: .78rem; font-weight: 700; }
.occasion-grid h3 { margin-top: 28px; font-size: 1.45rem; }.occasion-grid p { font-size: .88rem; }

.reviews { display: grid; grid-template-columns: 290px 1fr; gap: 70px; align-items: start; }
.reviews-summary, .review-content, .review-list { min-width: 0; }
.reviews-summary { position: sticky; top: 130px; padding: 28px; background: var(--soft); border-radius: var(--radius); }
.reviews-summary > div:first-child { display: flex; align-items: baseline; gap: 7px; }
.reviews-summary > div strong { color: var(--ink-deep); font-size: 4.1rem; line-height: 1; font-variant-numeric: tabular-nums; }
.reviews-summary > div span { color: var(--muted); font-size: .82rem; }
.stars { margin: 16px 0 8px; color: #e4a735; font-size: 1.3rem; letter-spacing: .08em; }
.reviews-summary p { margin-bottom: 16px; font-size: .86rem; }.reviews-summary small { display: block; color: var(--muted); font-size: .76rem; line-height: 1.55; }
.review-content h2 { max-width: 12ch; }
.review-list blockquote { margin: 0; padding: 28px 0; border-bottom: 1px solid var(--line); }
.review-list blockquote:first-child { padding-top: 8px; }
.review-list p { margin-bottom: 14px; color: var(--ink-deep); font-size: 1.15rem; line-height: 1.55; }
.review-list footer { color: var(--muted); font-size: .8rem; }

.delivery-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; }
.package-visual { position: relative; min-height: 360px; background: var(--soft-blue); border-radius: var(--radius); }
.package-layer { position: absolute; display: flex; align-items: flex-end; padding: 18px; color: var(--muted); background: var(--white); border: 1px solid #cfd8e6; border-radius: 8px; font-size: .65rem; font-weight: 700; box-shadow: 0 13px 28px rgba(50, 67, 94, .09); }
.package-layer--outer { inset: 52px 130px 50px 80px; }
.package-layer--middle { inset: 82px 95px 80px 120px; color: var(--blue-dark); background: #eaf8fd; }
.package-layer--inner { inset: 114px 55px 112px 165px; color: var(--white); background: var(--ink-deep); border-color: var(--ink-deep); }
.delivery-points { display: flex; flex-direction: column; }
.delivery-points > div { display: flex; gap: 17px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.delivery-points > div:last-child { border-bottom: 0; }
.delivery-points svg { width: 34px; height: 34px; flex: 0 0 auto; fill: none; stroke: var(--blue); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.delivery-points span { display: flex; flex-direction: column; }.delivery-points strong { color: var(--ink-deep); font-size: .92rem; }.delivery-points small { color: var(--muted); font-size: .78rem; }

.faq { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; }
.faq-intro { position: sticky; top: 130px; align-self: start; }.faq-intro p { max-width: 40ch; }
.accordion-item { border-top: 1px solid var(--line); }.accordion-item:last-child { border-bottom: 1px solid var(--line); }
.accordion-item h3 { margin: 0; }
.accordion-item button { display: flex; width: 100%; min-height: 78px; align-items: center; justify-content: space-between; gap: 25px; padding: 18px 0; background: transparent; border: 0; text-align: left; cursor: pointer; }
.accordion-item button span { color: var(--ink-deep); font-weight: 600; }
.accordion-item button svg { width: 22px; flex: 0 0 auto; fill: none; stroke: var(--blue-dark); stroke-width: 2; transition: transform .2s ease; }
.accordion-item button[aria-expanded="true"] svg { transform: rotate(180deg); }
.accordion-panel { padding: 0 45px 24px 0; }.accordion-panel p { margin: 0; font-size: .9rem; line-height: 1.7; }

.final-cta { display: grid; grid-template-columns: 1fr auto; gap: 45px; align-items: center; width: min(calc(100% - 48px), var(--container)); margin: 40px auto 0; padding: 58px; color: var(--white); background: var(--blue-dark); border-radius: var(--radius); }
.final-cta h2 { max-width: 14ch; color: var(--white); }.final-cta p { max-width: 620px; margin-bottom: 0; color: #e5f8ff; }
.final-buy { display: flex; min-width: 250px; flex-direction: column; gap: 18px; align-items: stretch; }
.final-buy > div { display: flex; flex-direction: column; }.final-buy strong { font-size: 2.3rem; font-variant-numeric: tabular-nums; }.final-buy span { font-size: .78rem; }
.final-note { grid-column: 1/-1; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.28); font-size: .78rem; }
.order-preview { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; width: min(calc(100% - 48px), var(--container)); margin: 0 auto; padding: 100px 0; }
.order-preview h2 { font-size: 2.2rem; }.order-preview p { max-width: 42ch; }
.order-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.order-form label { display: flex; flex-direction: column; gap: 7px; color: var(--ink-deep); font-size: .72rem; font-weight: 700; }
.order-form input { min-height: 52px; padding: 12px 14px; color: var(--ink); background: var(--white); border: 1px solid #ccd5e2; border-radius: 10px; outline: none; }
.order-form input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0, 174, 234, .14); }
.order-form input::placeholder { color: #5f6879; }
.order-form .button { grid-column: 1/-1; }
.form-status { grid-column: 1/-1; min-height: 24px; margin: 0; font-size: .75rem; }.form-status.is-error { color: #a33838; }.form-status.is-success { color: var(--green); }

.footer { display: grid; grid-template-columns: 160px 1fr auto; gap: 24px; align-items: center; padding: 45px max(24px, calc((100% - var(--container))/2)); background: var(--soft); border-top: 1px solid var(--line); }
.footer img { width: 118px; }.footer p { margin: 0; font-size: .75rem; }.footer div { display: flex; gap: 20px; }.footer a { color: var(--muted); font-size: .7rem; }.footer small { grid-column: 1/-1; color: #7b8496; font-size: .65rem; }
.mobile-buy { display: none; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 112px 1fr auto; }
  .site-nav { gap: 13px; }.site-nav a { font-size: .72rem; }
  .header-login { display: none; }
  .hero { grid-template-columns: 1fr 410px; gap: 34px; }
  .hero-visual { min-height: 560px; }
  .hero-image-wrap { left: 20px; }
  .trust-strip div { padding: 2px 14px; }
  .family-mini { opacity: .82; transform: scale(.82); transform-origin: right bottom; }
  .demo-section, .inside, .faq { gap: 38px; }
  .purchase-line { grid-template-columns: 190px 1fr; }.purchase-line .button { grid-column: 1/-1; }
  .package-layer--outer { left: 35px; }.package-layer--middle { left: 72px; }.package-layer--inner { left: 112px; }
}

@media (max-width: 860px) {
  body { padding-bottom: 76px; }
  .prototype-note { align-items: flex-start; gap: 5px; flex-direction: column; padding: 7px 16px; text-align: left; }
  .site-header { grid-template-columns: 1fr auto; width: calc(100% - 24px); min-height: 68px; margin-top: 10px; padding: 8px 10px 8px 16px; }
  .brand img { width: 104px; }
  .menu-button { display: grid; place-items: center; }
  .site-nav { position: fixed; inset: 0; z-index: -1; display: flex; visibility: hidden; align-items: flex-start; justify-content: flex-start; flex-direction: column; gap: 0; padding: 115px 28px 100px; background: var(--white); opacity: 0; pointer-events: none; transition: opacity .2s ease, visibility .2s ease; }
  .site-nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
  .site-nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .site-nav a::after { display: none; }
  .site-header > .button, .header-login { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 56px; }
  .hero-copy { max-width: 690px; }
  .hero-visual { min-height: 650px; }
  .hero-image-wrap { right: 45px; left: 45px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip div { padding: 16px 20px; border-right: 0; border-bottom: 1px solid #dce2ec; }.trust-strip div:nth-child(odd) { border-right: 1px solid #dce2ec; }.trust-strip div:nth-last-child(-n+2) { border-bottom: 0; }
  .section { padding: 78px 0; }
  .value-split, .demo-section, .inside, .reviews, .delivery-layout, .faq, .order-preview { grid-template-columns: 1fr; }
  .value-panel { min-height: 500px; }
  .demo-copy h2 { max-width: 14ch; }.app-window { min-height: 490px; }
  .inside-intro, .reviews-summary, .faq-intro { position: static; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: auto; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }.steps li:last-child { border-bottom: 0; }
  .plan-grid { grid-template-columns: 1fr; }.plan-card { min-height: auto; }.plan-card .check-list { min-height: 0; }
  .occasion-grid { grid-template-columns: 1fr 1fr; }.occasion-grid article:nth-child(2) { border-right: 0; }.occasion-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .reviews-summary { display: grid; grid-template-columns: auto 1fr; gap: 8px 20px; }.reviews-summary .stars { align-self: center; }.reviews-summary p, .reviews-summary small { grid-column: 1/-1; }
  .package-visual { min-height: 340px; }
  .final-cta { grid-template-columns: 1fr; padding: 42px; }.final-buy { min-width: 0; }.final-note { grid-column: 1; }
  .order-preview { gap: 30px; }
  .footer { grid-template-columns: 1fr auto; }.footer p { display: none; }.footer div { flex-wrap: wrap; justify-content: flex-end; }
  .mobile-buy { position: fixed; z-index: 200; right: 10px; bottom: 10px; left: 10px; display: flex; min-height: 64px; align-items: center; justify-content: space-between; padding: 8px 9px 8px 17px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 12px 35px rgba(34, 44, 67, .2); }
  .mobile-buy span { display: flex; flex-direction: column; }.mobile-buy strong { color: var(--ink-deep); font-size: 1rem; }.mobile-buy small { color: var(--muted); font-size: .6rem; }.mobile-buy .button { min-height: 46px; }
}

@media (max-width: 560px) {
  h1 { max-width: 13ch; font-size: clamp(2.4rem, 11vw, 3.4rem); }
  h2 { font-size: 2.05rem; }
  .hero, .section, .trust-strip, .final-cta, .order-preview { width: calc(100% - 30px); }
  .hero { gap: 38px; padding-top: 44px; }
  .product-mark { align-items: flex-start; font-size: .7rem; }
  .hero-actions { flex-direction: column; }.hero-actions .button { width: 100%; }
  .hero-facts { grid-template-columns: 1fr 1fr; }.hero-facts li:last-child { grid-column: 1/-1; }
  .hero-visual { min-height: 505px; }
  .hero-image-wrap { inset: 0 0 0 0; }
  .gift-card { top: 24px; left: -7px; }.scan-card { right: -7px; bottom: 24px; }
  .gift-card, .scan-card { padding: 10px 12px; }.gift-card svg, .scan-card svg { width: 24px; }.scan-icon { width: 36px; height: 36px; }
  .trust-strip { padding: 10px; }.trust-strip div { padding: 14px 10px; }.trust-strip strong { font-size: .9rem; }
  .section { padding: 64px 0; }.section-heading { margin-bottom: 34px; }
  .value-content { padding: 32px 28px; }.value-panel { min-height: 530px; }.value-panel h3 { font-size: 1.7rem; }
  .object-mini { width: 220px; height: 220px; }.family-mini { right: -42px; }
  .demo-section { gap: 34px; }.demo-tabs { overflow-x: auto; }.demo-tab { min-width: 92px; }
  .app-window { min-height: 440px; }.app-toolbar { height: 55px; }.app-canvas { height: 385px; padding: 18px; }
  .tree-node { width: 142px; min-height: 64px; grid-template-columns: 38px 1fr; }.tree-node--a { left: calc(50% - 71px); }.tree-node--b { top: 170px; left: 9px; }.tree-node--c { top: 170px; right: 9px; }.tree-node--d { left: calc(50% - 71px); }
  .tree-links { transform: scaleY(.82); transform-origin: center top; }.tree-node b { font-size: .58rem; }.avatar { width: 31px; height: 31px; }
  .app-canvas--story, .app-canvas--invite { padding: 28px; }.app-canvas blockquote { margin: 32px 0 26px; font-size: 1.12rem; }
  .inside-row { grid-template-columns: 1fr; gap: 4px; padding: 17px; }.inside-row--head { display: none; }.inside-row strong { padding-left: 34px; color: var(--blue-dark); }
  .plans { padding-right: 15px; padding-left: 15px; }.purchase-line { grid-template-columns: 1fr; gap: 18px; padding: 25px; }.purchase-line .button { grid-column: 1; }
  .subscription-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .occasion-grid { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 12px; border-bottom: 0; scroll-snap-type: x mandatory; }.occasion-grid article { min-height: 185px; flex: 0 0 82%; padding: 24px; background: var(--soft); border: 0; border-radius: var(--radius); scroll-snap-align: start; }.occasion-grid article:nth-child(-n+2) { border-bottom: 0; }
  .reviews-summary { grid-template-columns: 1fr; }.reviews-summary p, .reviews-summary small { grid-column: 1; }
  .review-list { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; }.review-list blockquote { min-height: 245px; flex: 0 0 88%; padding: 24px; background: var(--soft); border: 0; border-radius: var(--radius); scroll-snap-align: start; }.review-list p { font-size: 1rem; }
  .package-visual { min-height: 290px; }.package-layer { padding: 10px; font-size: .56rem; }.package-layer--outer { inset: 35px 68px 35px 18px; }.package-layer--middle { inset: 66px 35px 66px 54px; }.package-layer--inner { inset: 95px 10px 95px 91px; }
  .final-cta { margin-top: 10px; padding: 32px 25px; }.final-cta h2 { font-size: 2.15rem; }
  .order-form { grid-template-columns: 1fr; }.order-form .button { grid-column: 1; }
  .footer { grid-template-columns: 1fr; padding: 35px 20px 100px; }.footer div { justify-content: flex-start; }
  .price-caption, .terms-note span, .renewal-copy, .reviews-summary small, .final-note { font-size: 1rem; line-height: 1.55; }
  .hero-facts span, .trust-strip span, .delivery-points small { font-size: .875rem; line-height: 1.45; }
}

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