/* ============================================================
   Иллюстратор 2030 — Landing (brand design-system aligned)
   Cool-grey canvas + white cards, indigo brand, red energy accent,
   green confirmation. Onest everywhere (matches the main site).
   Classic cursor; restrained motion.
   ============================================================ */

:root {
  /* surfaces — from the design system */
  --paper:   #EEF1F5;   /* page canvas */
  --card:    #FFFFFF;   /* cards */
  --panel:   #E6EAEF;   /* slightly deeper panel */
  --ink:     #181818;   /* primary text */
  --ink-soft: rgba(24,24,24,0.66);
  --ink-faint: rgba(24,24,24,0.12);
  --hair:    rgba(24,24,24,0.10);

  /* brand */
  --brand:   #434373;   /* indigo — primary buttons, structure */
  --brand-deep: #2B2B61;/* deep indigo band */
  --brand-hover: #363659;
  --accent:  #FF2D44;   /* red — energy accent: highlights, numbers */
  --accent-deep: #E01E36;
  --green:   #3DB83D;   /* confirmation / checks */

  /* both faces are Onest — single brand typeface */
  --serif: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --grotesk: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw: 1320px;
  --gut: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0.05, 0.36, 1);
}

/* ---- reset / base ---- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body.site {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--grotesk);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

h1, h2, h3, p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { position: relative; padding-block: clamp(64px, 11vh, 140px); }

/* fine eyebrow label */
.eyebrow {
  font-family: var(--grotesk);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--accent); display: inline-block; }

.lead { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.45; color: var(--ink-soft); }

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--paper);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
}
#preloader .pl-mark {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(40px, 8vw, 96px); line-height: 0.95;
  letter-spacing: -0.02em; text-align: center; color: var(--ink);
  overflow: hidden;
}
#preloader .pl-mark em { color: var(--accent); font-style: normal; }
#preloader .pl-mark .pl-line { display: block; overflow: hidden; }
#preloader .pl-mark .pl-line span { display: block; transform: translateY(110%); }
#preloader .pl-bar-wrap {
  width: min(360px, 64vw); height: 2px; background: var(--ink-faint); position: relative; overflow: hidden;
}
#preloader .pl-bar { position: absolute; inset: 0; transform-origin: left; transform: scaleX(0); background: var(--accent); }
#preloader .pl-pct {
  font-family: var(--grotesk); font-variant-numeric: tabular-nums;
  font-size: 13px; letter-spacing: 0.1em; color: var(--ink-soft);
}
body.is-loading { overflow: hidden; height: 100vh; }

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--gut);
  background: rgba(238,241,245,0.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hair);
}
.site-header .logo { font-family: var(--serif); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; color: var(--ink); }
.header-right { display: flex; align-items: center; gap: 28px; }
.site-header nav { display: flex; gap: 28px; }
.site-header nav a { font-size: 14px; font-weight: 500; color: var(--ink-soft); transition: color .25s var(--ease); }
.site-header nav a:hover { color: var(--ink); }
.site-header .header-cta { height: 40px; padding: 0 20px; font-size: 14px; }
@media (max-width: 720px) { .site-header nav { display: none; } }

/* ============ CONTACT MODAL ============ */
.contact-overlay {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(24,24,24,0.5); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.contact-overlay.open { opacity: 1; visibility: visible; }
.contact-dialog {
  position: relative; width: 100%; max-width: 440px;
  background: var(--card); border-radius: 24px; padding: 40px;
  box-shadow: 0 40px 90px rgba(43,43,97,0.3);
  transform: translateY(16px) scale(0.98); transition: transform .35s var(--ease);
}
.contact-overlay.open .contact-dialog { transform: none; }
.contact-close {
  position: absolute; top: 18px; right: 18px; width: 40px; height: 40px;
  border: none; border-radius: 50%; background: var(--paper); color: var(--ink);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .25s var(--ease);
}
.contact-close:hover { background: var(--panel); }
.contact-title { font-family: var(--serif); font-weight: 700; font-size: 30px; letter-spacing: -0.02em; }
.contact-sub { margin-top: 12px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.5; }
.contact-links { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }
.contact-link {
  display: flex; align-items: center; justify-content: space-between;
  height: 58px; padding: 0 24px; border-radius: 100px;
  background: var(--paper); font-size: 16px; font-weight: 600; color: var(--ink);
  transition: background .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
}
.contact-link .ca { color: var(--accent); transition: transform .25s var(--ease); }
.contact-link:hover { background: var(--brand); color: #fff; transform: translateX(4px); }
.contact-link:hover .ca { color: #fff; transform: translateX(4px); }
@media (max-width: 720px) { .contact-dialog { padding: 32px 24px; } }

/* ============ HERO ============ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 120px 0 56px; }
.hero-grid {
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut);
  display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(28px, 5vw, 72px); align-items: center;
}
.hero-left { position: relative; z-index: 2; }
.hero-headline {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(38px, 5.6vw, 82px); line-height: 1.0; letter-spacing: -0.025em;
}
.hero-headline em { font-style: normal; color: var(--accent); }
.hero-headline .ln { display: block; overflow: hidden; }
.hero-headline .ln > span { display: inline-block; will-change: transform; }
.hero-lead { margin-top: clamp(20px, 3vh, 30px); max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* ONE strong visual statement */
.hero-visual {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 5 / 6; box-shadow: 0 40px 90px rgba(43,43,97,0.28);
  z-index: 1;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(255,45,68,0.18), rgba(43,43,97,0.30));
  mix-blend-mode: multiply;
}
.hero-visual .tag {
  position: absolute; left: 20px; bottom: 20px; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px; border-radius: 100px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  font-size: 14px; font-weight: 600; color: var(--ink);
}
.hero-visual .tag::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { aspect-ratio: 16 / 11; }
}

/* ============ BUTTONS ============ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 56px; padding: 0 30px; border: none; border-radius: 100px;
  font-family: var(--grotesk); font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  cursor: pointer; white-space: nowrap; overflow: hidden;
  will-change: transform;
}
.btn span { position: relative; z-index: 2; }
.btn--accent { background: var(--brand); color: #fff; }
.btn--accent::after { content:''; position:absolute; inset:0; background: var(--brand-deep); transform: translateY(101%); transition: transform .4s var(--ease); z-index: 1; }
.btn--accent:hover::after { transform: translateY(0); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink::after { content:''; position:absolute; inset:0; background: var(--brand); transform: translateY(101%); transition: transform .4s var(--ease); z-index: 1; }
.btn--ink:hover::after { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--ghost::after { content:''; position:absolute; inset:0; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); z-index: 1; }
.btn--ghost:hover { color: var(--paper); }
.btn--ghost:hover::after { transform: scaleX(1); }
.btn--lg { height: 62px; padding: 0 36px; font-size: 17px; }

/* ============ MARQUEE ============ */
.marquee { overflow: hidden; border-block: 1.5px solid var(--ink); padding-block: 20px; background: var(--card); }
.marquee-track { display: flex; gap: 0; white-space: nowrap; width: max-content; will-change: transform; }
.marquee-track .m {
  font-family: var(--serif); font-weight: 700; font-size: clamp(30px, 4.4vw, 60px); line-height: 1;
  letter-spacing: -0.02em; padding-inline: 34px; display: inline-flex; align-items: center; gap: 34px; color: var(--ink);
}
.marquee-track .m em { font-style: normal; color: var(--accent); }
.marquee-track .m::after { content: '✦'; font-size: 0.5em; color: var(--accent); -webkit-text-fill-color: var(--accent); }
.marquee .out { -webkit-text-fill-color: transparent; -webkit-text-stroke: 1.4px var(--ink); }

/* ============ shared section heads ============ */
.sec-head { display: grid; grid-template-columns: repeat(12,1fr); gap: 16px; align-items: end; margin-bottom: clamp(34px,5vw,60px); }
.sec-head .h {
  grid-column: 1 / 10;
  font-family: var(--serif); font-weight: 700; letter-spacing: -0.025em; line-height: 1.02;
  font-size: clamp(32px, 4.8vw, 72px);
}
.sec-head .h em { font-style: normal; color: var(--accent); }
.sec-head .aside { grid-column: 10 / 13; align-self: end; }
@media (max-width: 820px){ .sec-head .h, .sec-head .aside { grid-column: 1 / 13; } }

/* reveal primitives */
[data-reveal] .word, [data-reveal-lines] .ln > span { will-change: transform; }
[data-fade] { opacity: 0; transform: translateY(28px); }

/* ============ PROBLEM ============ */
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); }
.prob-col { padding: 36px 28px; border-right: 1px solid var(--hair); }
.prob-col:last-child { border-right: none; }
.prob-col .n { font-family: var(--serif); font-weight: 700; font-size: 36px; color: var(--accent); line-height: 1; }
.prob-col .p { margin-top: 18px; font-size: 19px; color: var(--ink-soft); }
.prob-col .arrow { margin: 16px 0; color: var(--accent); font-size: 20px; }
.prob-col .s { font-size: 21px; font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; }
.prob-note { margin-top: 40px; font-family: var(--serif); font-weight: 500; font-size: clamp(21px,2.4vw,34px); line-height: 1.3; max-width: 980px; letter-spacing: -0.01em; }
.prob-note b { font-weight: 700; color: var(--accent); }
@media (max-width: 820px){ .prob-col { border-right: none; border-bottom: 1px solid var(--hair); } .prob-grid{ grid-template-columns: 1fr; } }

/* ============ PERSONAS ============ */
.persona-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.persona {
  position: relative; padding: 32px 30px 36px; border-radius: 20px;
  background: var(--card); box-shadow: 0 4px 4px rgba(0,0,0,0.05); overflow: hidden; min-height: 300px;
  display: flex; flex-direction: column;
}
.persona .idx { font-family: var(--serif); font-weight: 700; font-size: 56px; color: var(--ink-faint); line-height: 0.8; }
.persona h3 { font-family: var(--serif); font-weight: 700; font-size: 25px; letter-spacing: -0.015em; margin-top: 14px; }
.persona p { margin-top: 14px; font-size: 15.5px; color: var(--ink-soft); line-height: 1.5; }
.persona::after { content:''; position:absolute; left:0; right:0; bottom:0; height: 4px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.persona:hover::after { transform: scaleX(1); }
@media (max-width: 820px){ .persona-grid { grid-template-columns: 1fr; } }

/* ============ RESULT ============ */
.result-list { border-top: 1.5px solid var(--ink); }
.result-row {
  display: grid; grid-template-columns: 80px 1fr 1.1fr; gap: 24px; align-items: center;
  padding: 28px 4px; border-bottom: 1px solid var(--hair);
  transition: padding .4s var(--ease), background .4s var(--ease);
}
.result-row .ri { font-family: var(--serif); font-weight: 700; font-size: 30px; color: var(--accent); }
.result-row .rt { font-family: var(--serif); font-weight: 700; font-size: clamp(21px,2.2vw,30px); letter-spacing: -0.015em; }
.result-row .rd { font-size: 15.5px; color: var(--ink-soft); line-height: 1.5; }
.result-row:hover { padding-inline: 22px; background: var(--card); }
@media (max-width: 820px){ .result-row { grid-template-columns: 46px 1fr; } .result-row .rd { grid-column: 1 / 3; } }

/* ============ PROGRAM accordion ============ */
.prog-item { border-top: 1.5px solid var(--ink); }
.prog-list { border-bottom: 1.5px solid var(--ink); }
.prog-head { display: grid; grid-template-columns: 110px 1fr auto; gap: 20px; align-items: center; padding: 26px 4px; cursor: pointer; }
.prog-head .pn { font-family: var(--serif); font-weight: 700; font-size: clamp(34px,3.6vw,54px); color: var(--accent); line-height: 0.9; }
.prog-head .pt { font-family: var(--serif); font-weight: 700; font-size: clamp(21px,2.2vw,30px); letter-spacing: -0.015em; }
.prog-head .pr { font-size: 14px; color: var(--ink-soft); margin-top: 6px; }
.prog-toggle { width: 44px; height: 44px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px var(--ink); display: flex; align-items: center; justify-content: center; transition: background .3s var(--ease), color .3s, box-shadow .3s; flex-shrink: 0; }
.prog-toggle svg { transition: transform .4s var(--ease); }
.prog-item.open .prog-toggle { background: var(--brand); color: #fff; box-shadow: none; }
.prog-item.open .prog-toggle svg { transform: rotate(45deg); }
.prog-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease-io); }
.prog-item.open .prog-body { grid-template-rows: 1fr; }
.prog-body > div { overflow: hidden; }
.prog-body ul { margin: 0; padding: 0 4px 30px 130px; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 30px; }
.prog-body li { font-size: 16px; color: var(--ink-soft); padding-left: 22px; position: relative; }
.prog-body li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }
@media (max-width: 820px){ .prog-head { grid-template-columns: 60px 1fr auto; } .prog-body ul { padding-left: 60px; grid-template-columns: 1fr; } }

/* ============ GALLERY (clear card grid) ============ */
.gal-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.gal-tab { height: 44px; padding: 0 22px; border-radius: 100px; box-shadow: inset 0 0 0 1.5px var(--ink-faint); background: transparent; color: var(--ink-soft); font-size: 14px; font-weight: 600; cursor: pointer; transition: all .3s var(--ease); }
.gal-tab:hover { box-shadow: inset 0 0 0 1.5px var(--ink); color: var(--ink); }
.gal-tab.active { background: var(--brand); color: #fff; box-shadow: none; }
.gal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.gal-card { border-radius: 18px; overflow: hidden; background: var(--card); box-shadow: 0 4px 4px rgba(0,0,0,0.05); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.gal-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(43,43,97,0.16); }
.gal-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.gal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gal-card:hover .gal-img img { transform: scale(1.05); }
.gal-cap { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 20px; }
.gal-cap .gname { font-family: var(--serif); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.gal-cap .gmeta { font-size: 12px; color: var(--ink-soft); letter-spacing: .04em; text-transform: uppercase; text-align: right; }
@media (max-width: 820px){ .gal-grid { grid-template-columns: 1fr; } }

/* ============ AUTHOR (deep indigo band) ============ */
.author { background: var(--brand-deep); color: #fff; }
.author-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px,5vw,64px); align-items: center; }
.author-photo { border-radius: 18px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.45); }
.author-grid .eyebrow { color: #ff8a98; }
.author-grid .eyebrow::before { background: #ff8a98; }
.author h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(28px,3.4vw,50px); line-height: 1.1; letter-spacing: -0.02em; margin: 18px 0; color: #fff; }
.author h2 em { font-style: normal; color: #ff8a98; }
.author p { color: rgba(255,255,255,0.80); font-size: 16.5px; line-height: 1.6; max-width: 600px; }
.author p + p { margin-top: 14px; }
.author-clients { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0; }
.author-clients span { font-size: 13.5px; font-weight: 500; padding: 9px 16px; border-radius: 100px; background: rgba(255,255,255,0.12); color: #fff; }
.author-links { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 820px){ .author-grid { grid-template-columns: 1fr; } }

/* ============ TARIFFS ============ */
.tariffs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: stretch; }
.tariff { display: flex; flex-direction: column; padding: 32px 28px; border-radius: 20px; background: var(--card); box-shadow: 0 4px 4px rgba(0,0,0,0.05); }
.tariff.feat { background: var(--brand); color: #fff; box-shadow: 0 18px 44px rgba(43,43,97,0.25); }
.tariff .tname { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.tariff.feat .tname { color: #ff9aa6; }
.tariff .tcap { font-family: var(--serif); font-weight: 700; font-size: 24px; letter-spacing: -0.015em; margin: 14px 0 12px; line-height: 1.15; }
.tariff .tdesc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; margin: 0 0 4px; }
.tariff.feat .tdesc { color: rgba(255,255,255,0.82); }
.tariff .btn { width: 100%; font-size: 14px; padding-inline: 16px; margin-top: 4px; }
.tariff-note { margin-top: 22px; font-size: 14.5px; color: var(--ink-soft); text-align: center; }
.tariff .tprice { font-family: var(--serif); font-weight: 700; font-size: clamp(34px,3.2vw,42px); letter-spacing: -0.02em; display: flex; align-items: baseline; flex-wrap: wrap; column-gap: 12px; row-gap: 2px; white-space: nowrap; }
.tariff .told { font-family: var(--grotesk); font-size: 18px; text-decoration: line-through; opacity: .5; font-weight: 400; }
.tariff .tnote { font-size: 13.5px; color: var(--ink-soft); margin-top: 6px; }
.tariff.feat .tnote { color: rgba(255,255,255,0.7); }
.tariff ul { list-style: none; margin: 22px 0; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tariff li { font-size: 15px; line-height: 1.4; padding-left: 28px; position: relative; color: var(--ink-soft); }
.tariff.feat li { color: rgba(255,255,255,0.85); }
.tariff li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--green); color: #fff; font-size: 11px; display: flex; align-items: center; justify-content: center; }
.tariff li.no { opacity: .5; }
.tariff li.no::before { content: ''; background: transparent; box-shadow: inset 0 0 0 1.5px currentColor; }
@media (max-width: 820px){ .tariffs-grid { grid-template-columns: 1fr; } }

/* ============ FORMAT (unchanged design — kept) ============ */
.fmt-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.fmt-cell { padding: 26px 22px; border-radius: 16px; background: var(--card); box-shadow: 0 4px 4px rgba(0,0,0,0.05); min-height: 150px; display: flex; flex-direction: column; gap: 14px; }
.fmt-cell .fi { font-family: var(--serif); font-weight: 700; font-size: 28px; color: var(--accent); }
.fmt-cell .ft { font-size: 16px; font-weight: 500; line-height: 1.3; margin-top: auto; }
.fmt-help { margin-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 26px 30px; border-radius: 18px; background: var(--panel); }
.fmt-help .q { font-family: var(--serif); font-size: 22px; font-weight: 600; max-width: 540px; letter-spacing: -0.01em; }
@media (max-width: 820px){ .fmt-grid { grid-template-columns: 1fr 1fr; } }

/* ============ FAQ ============ */
.faq-item { border-top: 1px solid var(--hair); }
.faq-list { border-bottom: 1px solid var(--hair); }
.faq-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 4px; cursor: pointer; }
.faq-head .fq { font-family: var(--serif); font-weight: 600; font-size: clamp(18px,2vw,25px); letter-spacing: -0.01em; }
.faq-item .faq-toggle { flex-shrink: 0; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; color: var(--accent); transition: transform .4s var(--ease); }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease-io); }
.faq-item.open .faq-body { grid-template-rows: 1fr; }
.faq-body > div { overflow: hidden; }
.faq-body p { padding: 0 60px 26px 4px; font-size: 16.5px; color: var(--ink-soft); line-height: 1.55; max-width: 820px; }

/* ============ FINAL CTA ============ */
.final { background: var(--ink); color: #fff; text-align: center; overflow: hidden; position: relative; }
.final h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(38px,7vw,108px); line-height: 1.0; letter-spacing: -0.025em; color: #fff; }
.final h2 em { font-style: normal; color: var(--accent); }
.final p { max-width: 680px; margin: 28px auto 38px; color: rgba(255,255,255,0.78); font-size: 17px; line-height: 1.6; }
.final-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final .btn--ghost { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.5); color: #fff; }
.final .btn--ghost::after { background: #fff; }
.final .btn--ghost:hover { color: var(--ink); }

/* ============ FOOTER ============ */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 30px var(--gut); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.12); }
.site-footer .logo { font-family: var(--serif); font-weight: 700; color: #fff; font-size: 18px; }

/* ============ THROUGH-LINE (fixed self-drawing rail) ============ */
#thread { position: fixed; top: 0; left: clamp(8px, 2.5vw, 34px); width: 48px; height: 100vh; z-index: 80; pointer-events: none; overflow: visible; }
#thread path { fill: none; stroke: var(--accent); stroke-width: 2; vector-effect: non-scaling-stroke; stroke-linecap: round; opacity: 0.5; }
@media (max-width: 720px) { #thread { display: none; } }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  [data-fade] { opacity: 1 !important; transform: none !important; }
}
