@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/BricolageGrotesque.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("assets/fonts/SourceSans3.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #172b2a;
  --blue: #4255e8;
  --blue-deep: #3042c9;
  --lime: #e8f55f;
  --coral: #ff7b66;
  --pool: #bdebff;
  --mint: #cbebdd;
  --lilac: #e4daff;
  --paper: #fffdf7;
  --mist: #f3f1ea;
  --white: #fff;
  --muted: #50615f;
  --line: rgba(23, 43, 42, .18);
  --shadow: 0 24px 68px rgba(23, 43, 42, .16);
  --display: "Bricolage Grotesque", "Arial Narrow", Arial, sans-serif;
  --body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --shell: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 4px; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -.04em; line-height: .98; }
h2 { font-size: clamp(44px, 5.4vw, 78px); margin-bottom: 26px; }
h3 { font-size: 30px; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(88px, 10vw, 150px); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 4px solid var(--lime); outline-offset: 4px; }

.site-header {
  position: relative;
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
}

.brand-name {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 760;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.brand-symbol {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
  flex: 0 0 48px;
}

.brand-symbol i,
.brand-symbol b {
  position: absolute;
  width: 22px;
  height: 8px;
  border-radius: 20px;
}
.brand-symbol i { left: 0; top: 5px; background: var(--coral); }
.brand-symbol b { right: 0; bottom: 5px; background: var(--blue); }
.brand-symbol em {
  position: absolute;
  left: 20px;
  top: 10px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
}

.primary-nav { display: flex; gap: 32px; margin-left: auto; }
.primary-nav a {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.primary-nav a:hover { text-decoration: underline; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 13px 20px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--lime);
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--lime); }
.button span { color: var(--lime); }
.button-small { min-height: 46px; padding: 11px 17px; font-size: 15px; box-shadow: none; }
.button-small:hover { box-shadow: 4px 4px 0 var(--lime); }
.button-large { min-height: 58px; padding: 17px 24px; font-size: 18px; }
.button-full { width: 100%; }
.button-sun { background: var(--lime); color: var(--ink); box-shadow: 5px 5px 0 var(--coral); }
.button-sun:hover { box-shadow: 8px 8px 0 var(--coral); }
.button-secondary { background: var(--paper); color: var(--ink); box-shadow: none; }

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -1px;
  height: 190px;
  background: var(--paper);
  clip-path: polygon(0 54%, 22% 35%, 57% 58%, 100% 25%, 100% 100%, 0 100%);
}

.hero-orbit {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  pointer-events: none;
}
.hero-orbit-one { width: 460px; height: 460px; right: -170px; top: -150px; }
.hero-orbit-two { width: 260px; height: 260px; left: -150px; top: 290px; }

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 920px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  grid-template-rows: auto;
  gap: 36px;
  padding-top: clamp(64px, 7vw, 94px);
  padding-bottom: 120px;
}

.hero-copy { position: relative; z-index: 3; align-self: start; }
.tag, .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.tag span { width: 12px; height: 12px; border-radius: 50%; background: var(--lime); border: 2px solid var(--ink); }

.hero h1 {
  max-width: 900px;
  margin-bottom: 30px;
  font-size: clamp(62px, 6.9vw, 98px);
  font-weight: 760;
  line-height: .91;
  letter-spacing: -.065em;
}
.hero h1 span {
  position: relative;
  color: var(--lime);
}
.hero h1 span::after {
  content: "";
  position: absolute;
  left: .04em;
  right: .03em;
  bottom: .02em;
  height: .055em;
  border-radius: 20px;
  background: var(--coral);
}
.hero-lede { max-width: 660px; margin-bottom: 30px; font-size: 23px; line-height: 1.42; color: rgba(255, 255, 255, .9); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-bottom: 34px; }
.hero .button { background: var(--lime); color: var(--ink); box-shadow: 5px 5px 0 var(--coral); }
.hero .button span { color: var(--blue-deep); }
.text-link { color: var(--white); font-weight: 800; text-decoration-thickness: 2px; }
.text-link span { margin-left: 5px; color: var(--lime); }
.hero-proof { display: flex; gap: 0; margin: 0; padding: 0; list-style: none; }
.hero-proof li { min-width: 160px; padding: 0 22px; border-left: 1px solid rgba(255, 255, 255, .3); }
.hero-proof li:first-child { padding-left: 0; border-left: 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-family: var(--display); font-size: 20px; line-height: 1.2; }
.hero-proof span { margin-top: 2px; font-size: 14px; color: rgba(255, 255, 255, .73); }

.hero-board {
  position: relative;
  z-index: 4;
  align-self: end;
  margin-bottom: 5px;
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 14px 14px 0 var(--lime), var(--shadow);
  transform: rotate(1.2deg);
}
.board-topline, .board-caption { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.board-topline { margin-bottom: 14px; font-family: var(--display); font-weight: 750; }
.board-dots { display: flex; gap: 5px; }
.board-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--ink); }
.page-stage { position: relative; min-height: 535px; border-radius: 18px; background: var(--pool); overflow: hidden; }
.stage-page { position: absolute; width: 276px; height: auto; border: 1px solid rgba(23,43,42,.18); box-shadow: 0 16px 28px rgba(23,43,42,.2); }
.stage-page-back { left: 30px; top: 55px; transform: rotate(-3deg); }
.stage-page-front { right: 23px; top: 27px; transform: rotate(2deg); }
.stage-label { position: absolute; z-index: 5; padding: 8px 13px; border: 2px solid var(--ink); border-radius: 30px; font-size: 14px; font-weight: 800; line-height: 1; }
.stage-label-owner { left: 16px; top: 18px; background: var(--coral); transform: rotate(-2deg); }
.stage-label-helper { right: 14px; bottom: 17px; background: var(--lime); transform: rotate(1deg); }
.stage-path { position: absolute; z-index: 6; left: 31%; top: 49%; width: 40%; height: 20px; display: flex; align-items: center; filter: drop-shadow(0 3px 0 rgba(23,43,42,.18)); }
.stage-path i, .stage-path em { height: 7px; flex: 1; border-radius: 20px; }
.stage-path i { background: var(--coral); }
.stage-path em { background: var(--blue); }
.stage-path b { width: 20px; height: 20px; flex: 0 0 20px; border: 3px solid var(--ink); border-radius: 50%; background: var(--lime); }
.board-caption { margin: 15px 3px 0; font-size: 13px; }
.board-caption span { font-weight: 800; }
.board-caption strong { color: var(--muted); }

.signal-strip { position: relative; z-index: 6; margin-top: -1px; padding: 18px 0 28px; background: var(--paper); }
.signal-inner { display: flex; justify-content: center; }
.signal-inner p { width: min(900px, 100%); display: grid; grid-template-columns: 1fr 80px 22px 80px 1fr; align-items: center; margin: 0; text-align: center; font-family: var(--display); font-size: 21px; font-weight: 730; }
.signal-inner i { height: 5px; background: currentColor; }
.signal-inner i:nth-of-type(1) { color: var(--coral); border-radius: 8px 0 0 8px; }
.signal-inner i:nth-of-type(2) { color: var(--blue); border-radius: 0 8px 8px 0; }
.signal-inner b { width: 22px; height: 22px; border: 3px solid var(--ink); border-radius: 50%; background: var(--lime); }

.section-tag { margin-bottom: 20px; color: var(--blue-deep); }
.section-tag::before { content: ""; width: 30px; height: 8px; border-radius: 10px; background: var(--coral); }

.scattered { background: var(--paper); }
.scattered-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(55px, 8vw, 120px); align-items: center; }
.scattered-copy p:not(.section-tag) { max-width: 590px; color: var(--muted); font-size: 20px; }
.scatter-visual { position: relative; min-height: 590px; border: 2px solid var(--ink); border-radius: var(--radius-lg); background: var(--lilac); overflow: hidden; box-shadow: 12px 12px 0 var(--coral); }
.message { position: absolute; max-width: 245px; padding: 14px 18px; border: 2px solid var(--ink); border-radius: 18px 18px 18px 4px; background: var(--white); font-weight: 700; line-height: 1.28; box-shadow: 5px 5px 0 rgba(23,43,42,.12); }
.message span { display: block; margin-bottom: 3px; font-size: 12px; color: var(--muted); }
.message-one { left: 35px; top: 40px; transform: rotate(-3deg); }
.message-two { right: 34px; top: 123px; transform: rotate(3deg); }
.message-three { left: 62px; top: 220px; transform: rotate(2deg); }
.clear-note { position: absolute; right: 42px; bottom: 39px; width: 360px; padding: 31px 32px; border: 2px solid var(--ink); border-radius: 24px; background: var(--lime); box-shadow: 8px 8px 0 var(--blue); transform: rotate(-1deg); }
.clear-note p { margin-bottom: 18px; color: var(--blue-deep); font-size: 13px; font-weight: 900; }
.clear-note strong { display: block; padding: 10px 0; border-top: 1px solid rgba(23,43,42,.32); font-family: var(--display); font-size: 21px; }
.clear-note span { display: inline-block; margin-top: 20px; padding: 7px 11px; border-radius: 20px; background: var(--ink); color: var(--white); font-size: 13px; font-weight: 800; }
.scatter-arrow { position: absolute; left: 35%; top: 53%; color: var(--blue-deep); font-family: var(--display); font-size: 60px; font-weight: 800; transform: rotate(18deg); }

.inside { background: var(--ink); color: var(--white); }
.inside .section-tag { color: var(--lime); }
.inside-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; margin-bottom: 68px; }
.inside-heading h2 { max-width: 760px; margin-bottom: 0; }
.inside-heading > p { max-width: 480px; margin: 0 0 10px; color: rgba(255,255,255,.74); font-size: 19px; }
.page-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.showcase-card { position: relative; margin: 0; padding: 24px; border-radius: 28px; color: var(--ink); }
.showcase-card-sun { background: var(--lime); }
.showcase-card-pool { background: var(--pool); }
.showcase-card-leaf { background: var(--mint); }
.page-number { position: absolute; z-index: 3; top: 14px; right: 14px; display: grid; place-items: center; width: 52px; height: 52px; border: 2px solid var(--ink); border-radius: 50%; background: var(--paper); font-family: var(--display); font-weight: 800; }
.page-frame { margin: 28px 14px 22px; padding: 8px; background: var(--white); box-shadow: 0 17px 33px rgba(23,43,42,.22); }
.page-frame img { width: 100%; height: auto; }
.showcase-card figcaption strong, .showcase-card figcaption span { display: block; }
.showcase-card figcaption strong { font-family: var(--display); font-size: 25px; line-height: 1.1; }
.showcase-card figcaption span { margin-top: 6px; font-size: 15px; }
.showcase-note { margin: 30px 0 0; color: rgba(255,255,255,.66); text-align: center; font-size: 15px; }
.showcase-note span { color: var(--lime); font-size: 24px; }

.how { background: var(--paper); }
.how-heading { max-width: 920px; margin-bottom: 66px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; }
.step { position: relative; min-height: 500px; padding: 34px; border: 2px solid var(--ink); }
.step:first-child { border-radius: 30px 0 0 30px; }
.step:last-child { border-radius: 0 30px 30px 0; }
.step + .step { border-left: 0; }
.step-one { background: var(--pool); transform: translateY(18px); }
.step-two { background: var(--coral); }
.step-three { background: var(--mint); transform: translateY(18px); }
.step-number { font-family: var(--display); font-size: 18px; font-weight: 800; }
.step-icon { width: 116px; height: 82px; position: relative; margin: 50px 0 34px; }
.step-icon i { position: absolute; width: 65px; height: 48px; border: 2px solid var(--ink); border-radius: 8px; background: var(--paper); }
.step-icon i:nth-child(1) { left: 0; top: 18px; transform: rotate(-9deg); }
.step-icon i:nth-child(2) { left: 23px; top: 7px; transform: rotate(3deg); background: var(--lilac); }
.step-icon i:nth-child(3) { left: 48px; top: 24px; transform: rotate(9deg); background: var(--lime); }
.step-icon-write i { width: 82px; height: 7px; left: 0 !important; border-radius: 20px; transform: none !important; }
.step-icon-write i:nth-child(1) { top: 8px; }
.step-icon-write i:nth-child(2) { top: 33px; width: 100px; background: var(--paper); }
.step-icon-write i:nth-child(3) { top: 58px; width: 60px; background: var(--lime); }
.step-icon-pass i:nth-child(1), .step-icon-pass i:nth-child(3) { width: 38px; height: 38px; border-radius: 50%; top: 20px; }
.step-icon-pass i:nth-child(1) { left: 0; background: var(--coral); }
.step-icon-pass i:nth-child(2) { width: 55px; height: 7px; left: 31px; top: 36px; border-radius: 20px; transform: none; background: var(--lime); }
.step-icon-pass i:nth-child(3) { left: 77px; background: var(--blue); }
.step h3 { margin-bottom: 16px; font-size: 34px; }
.step p { margin-bottom: 28px; line-height: 1.48; }
.step small { position: absolute; left: 34px; bottom: 32px; padding: 7px 11px; border: 1px solid var(--ink); border-radius: 20px; font-weight: 800; }

.paths { position: relative; overflow: hidden; background: var(--blue); color: var(--white); }
.paths::before, .paths::after { content: ""; position: absolute; border: 2px solid rgba(255,255,255,.14); border-radius: 50%; pointer-events: none; }
.paths::before { width: 430px; height: 430px; left: -260px; top: -140px; }
.paths::after { width: 540px; height: 540px; right: -330px; bottom: -330px; }
.paths .shell { position: relative; z-index: 2; }
.paths .section-tag { color: var(--lime); }
.paths-heading { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 60px; align-items: end; margin-bottom: 62px; }
.paths-heading .section-tag { grid-column: 1 / -1; margin-bottom: -24px; }
.paths-heading h2 { max-width: 790px; margin-bottom: 0; }
.paths-heading > p { margin: 0 0 9px; color: rgba(255,255,255,.79); font-size: 20px; }
.path-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; }
.path-card { min-height: 595px; padding: clamp(32px, 4.5vw, 58px); border: 2px solid var(--ink); border-radius: 34px; color: var(--ink); box-shadow: 10px 10px 0 rgba(23,43,42,.28); }
.path-card-start { background: var(--lime); transform: rotate(-.5deg); }
.path-card-later { background: var(--lilac); transform: rotate(.5deg); }
.path-card-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 24px; border-bottom: 2px solid var(--ink); }
.path-card-top span { padding: 7px 11px; border-radius: 30px; background: var(--ink); color: var(--white); font-size: 13px; font-weight: 900; letter-spacing: .04em; }
.path-card-top strong { font-family: var(--display); font-size: 23px; }
.path-card h3 { max-width: 530px; margin: 38px 0 32px; font-size: clamp(38px, 4vw, 57px); }
.path-card ol, .path-card ul { margin: 0; padding: 0; list-style: none; counter-reset: path-step; }
.path-card li { position: relative; padding: 13px 12px 13px 48px; border-top: 1px solid rgba(23,43,42,.27); font-weight: 760; }
.path-card ol li { counter-increment: path-step; }
.path-card ol li::before { content: counter(path-step, decimal-leading-zero); position: absolute; left: 5px; color: var(--blue-deep); font-family: var(--display); font-weight: 800; }
.path-card ul li::before { content: "+"; position: absolute; left: 8px; color: var(--blue-deep); font-family: var(--display); font-size: 24px; font-weight: 800; line-height: 1; }
.path-result { display: inline-block; margin: 30px 0 0; padding: 9px 13px; border: 2px solid var(--ink); border-radius: 9px; background: var(--paper); font-family: var(--display); font-weight: 800; box-shadow: 4px 4px 0 var(--coral); }
.paths-foot { margin: 40px 0 0; color: rgba(255,255,255,.76); text-align: center; }
.paths-foot strong { color: var(--white); }

.perspectives { background: var(--lilac); }
.perspectives-heading { max-width: 880px; margin-bottom: 65px; }
.perspective-stage { display: grid; grid-template-columns: 1fr 300px 1fr; align-items: center; }
.perspective-card { min-height: 490px; padding: 50px; border: 2px solid var(--ink); }
.perspective-card > p { font-size: 14px; font-weight: 900; text-transform: uppercase; }
.perspective-card h3 { max-width: 410px; margin: 42px 0 38px; font-size: 45px; }
.perspective-card ul { margin: 0; padding: 0; list-style: none; }
.perspective-card li { padding: 12px 0; border-top: 1px solid rgba(23,43,42,.28); font-weight: 700; }
.owner-card { padding-right: 100px; border-radius: 34px 0 0 34px; background: var(--coral); }
.helper-card { padding-left: 100px; border-left: 0; border-radius: 0 34px 34px 0; background: var(--pool); }
.perspective-product { position: relative; z-index: 3; margin-inline: -54px; padding: 11px; background: var(--white); box-shadow: var(--shadow); transform: rotate(1.3deg); }
.perspective-product img { width: 100%; height: auto; }
.perspective-transfer { position: absolute; left: -30px; right: -30px; top: 46%; display: flex; align-items: center; filter: drop-shadow(0 2px 0 rgba(23,43,42,.25)); }
.perspective-transfer i, .perspective-transfer em { flex: 1; height: 7px; border-radius: 20px; }
.perspective-transfer i { background: var(--coral); }
.perspective-transfer em { background: var(--blue); }
.perspective-transfer b { width: 20px; height: 20px; border: 3px solid var(--ink); border-radius: 50%; background: var(--lime); }

.privacy-section { background: var(--paper); }
.privacy-grid { display: grid; grid-template-columns: .8fr 1.2fr; border: 2px solid var(--ink); border-radius: 38px; overflow: hidden; box-shadow: 12px 12px 0 var(--lime); }
.privacy-title-block { padding: clamp(40px, 6vw, 80px); background: var(--blue); color: var(--white); }
.privacy-title-block .section-tag { color: var(--lime); }
.privacy-title-block h2 { font-size: clamp(42px, 5vw, 67px); }
.privacy-title-block > p:last-child { color: rgba(255,255,255,.79); }
.privacy-lock { position: relative; display: block; width: 74px; height: 68px; margin-bottom: 45px; border: 3px solid var(--ink); border-radius: 16px; background: var(--lime); }
.privacy-lock::before { content: ""; position: absolute; left: 18px; top: -28px; width: 32px; height: 33px; border: 4px solid var(--ink); border-bottom: 0; border-radius: 18px 18px 0 0; }
.privacy-lock i { position: absolute; left: 31px; top: 21px; width: 9px; height: 18px; border-radius: 10px; background: var(--ink); }
.privacy-rules { display: grid; background: var(--white); }
.privacy-rules article { padding: 42px 50px; border-bottom: 1px solid var(--line); }
.privacy-rules article:last-child { border-bottom: 0; }
.privacy-rules span { display: inline-block; min-width: 78px; margin-bottom: 13px; padding: 5px 9px; border: 1px solid var(--ink); border-radius: 20px; color: var(--blue-deep); font-size: 12px; font-weight: 900; text-align: center; }
.privacy-rules h3 { margin-bottom: 10px; font-size: 27px; }
.privacy-rules p { margin: 0; color: var(--muted); }

.included { background: var(--mint); }
.included-grid { display: grid; grid-template-columns: 1fr 470px; gap: clamp(55px, 8vw, 110px); align-items: center; }
.included-copy > ul { margin: 55px 0 0; padding: 0; list-style: none; }
.included-copy > ul > li { display: grid; grid-template-columns: 72px 1fr; gap: 24px; padding: 26px 0; border-top: 2px solid rgba(23,43,42,.22); }
.included-copy > ul > li > span { font-family: var(--display); font-size: 52px; font-weight: 800; line-height: 1; color: var(--blue-deep); }
.included-copy strong { font-family: var(--display); font-size: 24px; line-height: 1.15; }
.included-copy p { margin: 8px 0 0; color: var(--muted); }
.offer-card { padding: 34px; border: 2px solid var(--ink); border-radius: 30px; background: var(--paper); box-shadow: 12px 12px 0 var(--coral); }
.offer-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 20px; border-bottom: 2px solid var(--ink); }
.offer-top p { margin: 0; font-size: 13px; font-weight: 900; }
.offer-top span { padding: 6px 10px; border-radius: 20px; background: var(--lime); font-size: 12px; font-weight: 900; }
.offer-price { display: flex; align-items: baseline; gap: 16px; margin: 32px 0 12px; }
.offer-price strong { font-family: var(--display); font-size: 82px; line-height: .9; }
.offer-price span { color: var(--muted); font-weight: 700; }
.offer-description { font-size: 20px; }
.offer-checks { margin: 28px 0 0; padding: 0; list-style: none; }
.offer-checks li { position: relative; padding: 7px 0 7px 27px; }
.offer-checks li::before { content: "✓"; position: absolute; left: 0; font-weight: 900; color: var(--blue-deep); }
.offer-foot { margin: 25px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }

.questions { background: var(--paper); }
.questions-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(60px, 9vw, 130px); align-items: start; }
.questions-heading { position: sticky; top: 115px; }
.questions-heading h2 { font-size: clamp(46px, 5vw, 70px); }
.questions-heading > p:last-child { color: var(--muted); }
.faq { border-top: 2px solid var(--ink); }
.faq details { border-bottom: 2px solid var(--ink); }
.faq summary { position: relative; padding: 28px 56px 28px 0; cursor: pointer; list-style: none; font-family: var(--display); font-size: 25px; font-weight: 700; line-height: 1.2; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 8px; top: 22px; display: grid; place-items: center; width: 38px; height: 38px; border: 2px solid var(--ink); border-radius: 50%; background: var(--lime); font-family: var(--body); font-size: 28px; line-height: 1; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { max-width: 700px; margin: -3px 55px 28px 0; color: var(--muted); }

.final-cta { background: var(--paper); padding-top: 20px; }
.final-panel { position: relative; display: grid; grid-template-columns: 110px 1fr 300px; gap: 45px; align-items: center; padding: clamp(45px, 7vw, 85px); border: 2px solid var(--ink); border-radius: 40px; background: var(--blue); color: var(--white); overflow: hidden; }
.final-panel::after { content: ""; position: absolute; right: -80px; bottom: -140px; width: 330px; height: 330px; border: 65px solid rgba(232,245,95,.14); border-radius: 50%; }
.final-panel .section-tag { color: var(--lime); }
.final-panel h2 { max-width: 700px; margin-bottom: 18px; }
.final-panel p { margin-bottom: 0; }
.final-symbol { position: relative; width: 102px; height: 76px; }
.final-symbol i, .final-symbol em { position: absolute; width: 54px; height: 14px; border-radius: 30px; }
.final-symbol i { left: 0; top: 12px; background: var(--coral); }
.final-symbol em { right: 0; bottom: 10px; background: var(--pool); }
.final-symbol b { position: absolute; z-index: 2; left: 42px; top: 28px; width: 24px; height: 24px; border: 3px solid var(--ink); border-radius: 50%; background: var(--lime); }
.final-buy { position: relative; z-index: 2; text-align: center; }
.final-buy > p { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-bottom: 18px; }
.final-buy > p strong { font-family: var(--display); font-size: 52px; }
.final-buy > p span { font-size: 13px; }
.final-buy small { display: block; margin-top: 13px; color: rgba(255,255,255,.72); }

.site-footer { padding: 70px 0 35px; background: var(--ink); color: var(--white); }
.footer-main { display: flex; justify-content: space-between; gap: 70px; }
.footer-brand { color: var(--white); }
.footer-main > div > p { max-width: 420px; margin: 20px 0 0; color: rgba(255,255,255,.62); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 28px; }
.footer-links a, .link-button { color: var(--white); font-size: 15px; }
.link-button { padding: 0; border: 0; background: none; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; gap: 40px; margin-top: 65px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.55); font-size: 13px; }
.footer-bottom p { margin: 0; }

.cookie-banner {
  position: fixed;
  z-index: 100;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 10px 10px 0 var(--lime), 0 20px 60px rgba(23,43,42,.28);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { margin-bottom: 6px; font-size: 26px; }
.cookie-banner p { margin: 0 0 5px; font-size: 15px; line-height: 1.4; }
.cookie-banner a { font-size: 14px; }
.cookie-actions { display: flex; gap: 12px; }
.cookie-actions .button { min-height: 44px; padding: 10px 15px; box-shadow: none; font-size: 14px; cursor: pointer; }

.mobile-buy { display: none; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Policy pages */
.policy-page { background: var(--paper); }
.policy-header { background: var(--paper); }
.back-link { margin-left: auto; font-weight: 800; }
.policy-main { padding: 80px 0 120px; }
.policy-wrap { width: min(850px, calc(100vw - 48px)); margin-inline: auto; }
.policy-intro { padding: 60px; border: 2px solid var(--ink); border-radius: 32px; background: var(--pool); box-shadow: 10px 10px 0 var(--lime); }
.policy-intro h1 { margin-bottom: 24px; font-size: clamp(54px, 8vw, 84px); }
.policy-intro > p:not(.eyebrow):not(.effective-date) { max-width: 650px; font-size: 21px; }
.eyebrow { margin-bottom: 16px; color: var(--blue-deep); font-size: 14px; font-weight: 900; text-transform: uppercase; }
.effective-date { margin: 28px 0 0; font-size: 14px; font-weight: 800; }
.policy-content { margin-top: 70px; }
.policy-content section { padding: 38px 0; border-bottom: 1px solid var(--line); }
.policy-content h2 { margin-bottom: 20px; font-size: 34px; }
.policy-content h3 { margin: 25px 0 10px; font-size: 24px; }
.policy-content p, .policy-content li { color: var(--muted); }
.policy-content li + li { margin-top: 12px; }
.policy-note, .policy-contact { padding-inline: 32px !important; border: 2px solid var(--ink) !important; border-radius: 22px; background: var(--mint); }
.policy-contact { margin-top: 38px; background: var(--lilac); }

@media (max-width: 1080px) {
  .hero { min-height: 1030px; }
  .hero-grid { min-height: 1030px; grid-template-columns: minmax(0, 1fr) 390px; padding-top: 76px; }
  .hero h1 { font-size: clamp(58px, 8.5vw, 86px); }
  .hero-lede { max-width: 560px; }
  .hero-proof { flex-wrap: wrap; row-gap: 16px; }
  .hero-board { margin-bottom: 50px; }
  .page-stage { min-height: 460px; }
  .stage-page { width: 236px; }
  .stage-page-back { left: 20px; }
  .stage-page-front { right: 16px; }
  .inside-heading { grid-template-columns: 1fr; gap: 10px; }
  .page-showcase { gap: 14px; }
  .showcase-card { padding: 16px; }
  .paths-heading { grid-template-columns: 1fr 320px; gap: 35px; }
  .perspective-stage { grid-template-columns: 1fr 230px 1fr; }
  .perspective-card { min-height: 450px; padding: 36px; }
  .owner-card { padding-right: 75px; }
  .helper-card { padding-left: 75px; }
  .perspective-card h3 { font-size: 36px; }
  .final-panel { grid-template-columns: 80px 1fr 250px; padding: 55px 42px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 36px, 680px); }
  body { font-size: 17px; }
  .section { padding-block: 90px; }
  .primary-nav { display: none; }
  .header-inner { min-height: 74px; }
  .header-inner > .button { margin-left: auto; }
  .hero { min-height: 0; padding-bottom: 125px; }
  .hero::after { height: 95px; clip-path: polygon(0 62%, 40% 30%, 100% 58%, 100% 100%, 0 100%); }
  .hero-grid { min-height: 0; display: flex; flex-direction: column; gap: 52px; padding-top: 65px; padding-bottom: 15px; }
  .hero h1 { max-width: 700px; font-size: clamp(54px, 12vw, 80px); }
  .hero-board { width: min(520px, 90%); align-self: center; margin-bottom: 0; transform: rotate(.7deg); }
  .page-stage { min-height: 500px; }
  .stage-page { width: 270px; }
  .signal-inner p { grid-template-columns: 1fr 45px 18px 45px 1fr; font-size: 17px; }
  .signal-inner b { width: 18px; height: 18px; }
  .scattered-grid, .included-grid, .questions-grid { grid-template-columns: 1fr; }
  .scatter-visual { min-height: 560px; }
  .page-showcase { grid-template-columns: 1fr; gap: 22px; }
  .showcase-card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(150px, .7fr); gap: 24px; align-items: center; padding: 25px; }
  .page-frame { margin: 0; }
  .showcase-card figcaption { padding-right: 8px; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 390px; border-radius: 24px !important; transform: none; }
  .step + .step { border-left: 2px solid var(--ink); border-top: 0; }
  .step-icon { margin-top: 38px; }
  .paths-heading { grid-template-columns: 1fr; gap: 20px; }
  .paths-heading .section-tag { grid-column: auto; margin-bottom: 0; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 0; transform: none; }
  .perspective-stage { grid-template-columns: 1fr; }
  .perspective-card { min-height: 0; padding: 45px; }
  .owner-card { padding-bottom: 110px; padding-right: 45px; border-radius: 28px 28px 0 0; }
  .helper-card { padding-top: 110px; padding-left: 45px; border-left: 2px solid var(--ink); border-top: 0; border-radius: 0 0 28px 28px; }
  .perspective-product { width: 260px; margin: -80px auto; }
  .privacy-grid { grid-template-columns: 1fr; }
  .questions-heading { position: static; }
  .final-panel { grid-template-columns: 1fr; text-align: left; }
  .final-symbol { width: 90px; }
  .final-buy { text-align: left; }
  .final-buy > p { justify-content: flex-start; }
  .footer-main, .footer-bottom { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 540px) {
  :root { --shell: calc(100vw - 28px); }
  h2 { font-size: 43px; line-height: 1; }
  .header-inner { min-height: 68px; }
  .brand-name { font-size: 17px; }
  .brand-symbol { width: 42px; flex-basis: 42px; }
  .brand-symbol i, .brand-symbol b { width: 20px; }
  .header-inner > .button { min-width: 62px; width: 62px; height: 48px; padding: 0; overflow: hidden; color: transparent; font-size: 0; gap: 0; border-radius: 24px; }
  .header-inner > .button span { display: block; color: var(--lime); font-size: 15px; line-height: 1; }
  .hero { padding-bottom: 82px; }
  .hero-grid { gap: 38px; padding-top: 44px; }
  .tag { margin-bottom: 20px; font-size: 13px; }
  .hero h1 { margin-bottom: 24px; font-size: clamp(48px, 15vw, 66px); line-height: .92; letter-spacing: -.06em; }
  .hero-lede { margin-bottom: 25px; font-size: 20px; line-height: 1.42; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .text-link { align-self: center; }
  .hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
  .hero-proof li { min-width: 0; padding: 0 10px; }
  .hero-proof strong { font-size: 16px; }
  .hero-proof span { font-size: 12px; line-height: 1.25; }
  .hero-board { width: calc(100% - 4px); padding: 14px; border-radius: 21px; box-shadow: 8px 8px 0 var(--lime); }
  .board-topline { font-size: 15px; }
  .page-stage { min-height: 390px; }
  .stage-page { width: 205px; }
  .stage-page-back { left: 13px; top: 53px; }
  .stage-page-front { right: 9px; top: 24px; }
  .stage-label { font-size: 11px; }
  .stage-label-owner { left: 8px; top: 12px; }
  .stage-label-helper { right: 8px; bottom: 10px; }
  .board-caption { font-size: 11px; }
  .signal-strip { padding-top: 10px; }
  .signal-inner p { grid-template-columns: 1fr 22px 16px 22px 1fr; font-size: 14px; line-height: 1.2; }
  .signal-inner i { height: 4px; }
  .signal-inner b { width: 16px; height: 16px; border-width: 2px; }
  .scattered-copy p:not(.section-tag) { font-size: 18px; }
  .scatter-visual { min-height: 525px; border-radius: 28px; box-shadow: 7px 7px 0 var(--coral); }
  .message { max-width: 205px; padding: 12px 14px; font-size: 15px; }
  .message-one { left: 16px; top: 22px; }
  .message-two { right: 16px; top: 115px; }
  .message-three { left: 22px; top: 203px; }
  .clear-note { right: 18px; bottom: 22px; width: calc(100% - 56px); padding: 24px; }
  .clear-note strong { font-size: 19px; }
  .scatter-arrow { display: none; }
  .inside-heading { margin-bottom: 42px; }
  .showcase-card { grid-template-columns: 1fr; gap: 17px; padding: 20px; }
  .showcase-card figcaption { padding: 0 4px 4px; }
  .page-number { top: 12px; right: 12px; }
  .step { min-height: 420px; padding: 28px; }
  .step small { left: 28px; }
  .path-card { padding: 30px 26px; border-radius: 26px; box-shadow: 7px 7px 0 rgba(23,43,42,.28); }
  .path-card h3 { margin: 30px 0 26px; font-size: 40px; }
  .path-card li { padding-left: 42px; }
  .perspective-card { padding: 34px; }
  .owner-card { padding-bottom: 105px; }
  .helper-card { padding-top: 105px; }
  .perspective-card h3 { font-size: 36px; }
  .perspective-product { width: 220px; }
  .privacy-grid { border-radius: 28px; box-shadow: 7px 7px 0 var(--lime); }
  .privacy-title-block { padding: 36px 28px 42px; }
  .privacy-title-block h2 { font-size: 42px; }
  .privacy-rules article { padding: 30px 28px; }
  .included-copy > ul > li { grid-template-columns: 55px 1fr; gap: 14px; }
  .included-copy > ul > li > span { font-size: 42px; }
  .offer-card { padding: 25px; box-shadow: 7px 7px 0 var(--coral); }
  .offer-price strong { font-size: 70px; }
  .faq summary { padding: 24px 50px 24px 0; font-size: 22px; }
  .faq summary::after { top: 18px; }
  .final-panel { padding: 37px 28px; border-radius: 28px; }
  .footer-links { flex-direction: column; align-items: flex-start; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .mobile-buy { position: fixed; z-index: 80; left: 8px; right: 8px; bottom: 8px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 10px 9px 16px; border: 2px solid var(--ink); border-radius: 17px; background: var(--paper); box-shadow: 0 12px 34px rgba(23,43,42,.24); transform: translateY(160%); transition: transform .25s ease; }
  .mobile-buy.is-visible { transform: translateY(0); }
  .mobile-buy.is-cookie-suppressed { transform: translateY(160%); }
  .mobile-buy > div strong, .mobile-buy > div span { display: block; line-height: 1.1; }
  .mobile-buy > div strong { font-family: var(--display); font-size: 24px; }
  .mobile-buy > div span { font-size: 11px; color: var(--muted); }
  .mobile-buy .button { min-height: 46px; padding: 12px 15px; font-size: 14px; box-shadow: none; }
  .policy-main { padding-top: 45px; }
  .policy-wrap { width: calc(100vw - 28px); }
  .policy-intro { padding: 35px 26px; border-radius: 24px; box-shadow: 7px 7px 0 var(--lime); }
  .policy-intro h1 { font-size: 50px; }
  .policy-note, .policy-contact { padding-inline: 22px !important; }
}

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

@media print {
  .site-header, .site-footer, .cookie-banner, .mobile-buy, .button { display: none !important; }
  body { color: #000; background: #fff; }
  .section, .hero { padding: 30px 0; background: #fff !important; color: #000 !important; }
  .hero { min-height: 0; }
  .hero::after, .hero-orbit, .hero-board { display: none; }
}
