/* ==========================================================================
   STOPMELT: watercolor storybook site
   Designed & built by BUILDYOURSNOW
   ========================================================================== */

:root {
  --paper: #faf6ee;
  --paper-2: #f4efe4;
  --ink: #1f5a43;
  --ink-deep: #153f2f;
  --ink-2: #2d6a55;
  --body: #4b5853;
  --muted: #7b8782;
  --ice: #cfe4ef;
  --ice-2: #b3d4e6;
  --ice-3: #8fc5e0;
  --sage: #e8ecd8;
  --coral: #ec7a6c;
  --coral-2: #de6758;
  --sun: #f6b25c;
  --spark: #f5a453;
  --peach: #fbe0c4;
  --blush: #f08e86;
  --night: #04090f;
  --night-2: #0b1524;
  --frost: #e3faff;
  --cyan: #a9e9f8;
  --amber: #efb95f;

  --f-brush: "Chewy", "Comic Sans MS", cursive;
  --f-serif: "Fraunces", Georgia, serif;
  --f-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-hand: "Reenie Beanie", "Bradley Hand", cursive;
  --f-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  --f-bys: "Inter Tight", system-ui, sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-back: cubic-bezier(.34, 1.56, .64, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);
  --gutter: clamp(20px, 5vw, 80px);
  --maxw: 1200px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font: 400 17px/1.65 var(--f-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, canvas { display: block; }
a { color: inherit; }
button, input { font: inherit; }
h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--ice-2); color: var(--ink-deep); }
:focus-visible { outline: 2.5px solid var(--coral); outline-offset: 4px; border-radius: 8px; }

.defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 200; padding: 10px 16px; border-radius: 10px; background: var(--ink); color: #fff; text-decoration: none; font-weight: 600; transition: top .3s var(--ease); }
.skip-link:focus { top: 16px; }

/* paper grain over everything (static image, no blend cost) */
.grain {
  position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: .55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .45 0 0 0 0 .38 0 0 0 0 .3 0 0 0 .09 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Type helpers ---------- */
.hand { font-family: var(--f-hand); font-weight: 400; color: var(--ink-2); line-height: 1.02; font-size: 27px; letter-spacing: .01em; }
.note { position: absolute; margin: 0; pointer-events: none; }
.eyebrow, .kicker {
  font: 600 12px/1.4 var(--f-sans); letter-spacing: .32em; text-transform: uppercase; color: var(--ink-2);
}
.h2 {
  font: 500 clamp(40px, 5.4vw, 76px)/1.02 var(--f-serif);
  font-variation-settings: "opsz" 144;
  letter-spacing: -.03em; color: var(--ink);
}
.h2 em { font-style: italic; font-weight: 400; color: var(--ink-2); }
.lede { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.6; color: var(--body); max-width: 560px; }

.section { position: relative; padding: clamp(80px, 10vw, 136px) var(--gutter); }
.sec-head { max-width: 760px; margin: 0 auto clamp(48px, 6vw, 80px); text-align: center; position: relative; z-index: 2; }
.sec-head .h2 { margin: 18px 0 20px; }
.sec-head .lede { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: #fff; --hover: var(--coral);
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  height: 54px; padding: 0 30px; border-radius: 999px; border: 0;
  background: var(--bg); color: var(--fg); text-decoration: none; cursor: pointer;
  font: 600 16px/1 var(--f-sans); letter-spacing: -.005em; white-space: nowrap;
  transition: transform .6s var(--ease), box-shadow .5s var(--ease), color .3s;
}
.btn::before {
  content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit;
  background: var(--hover); transform: translateY(101%); transition: transform .55s var(--ease);
}
.btn:hover::before { transform: none; }
.btn-label { display: inline-block; overflow: hidden; height: 1.25em; line-height: 1.25; }
.btn-label > span { display: inline-block; text-shadow: 0 1.25em currentColor; transition: transform .55s var(--ease); }
.btn:hover .btn-label > span { transform: translateY(-1.25em); }
.btn-arrow { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .55s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn--coral { --bg: var(--coral); --hover: var(--ink); box-shadow: 0 16px 30px -14px rgba(222, 103, 88, .75), inset 0 1px 0 rgba(255,255,255,.25); }
.btn--coral:hover { box-shadow: 0 20px 36px -14px rgba(31, 90, 67, .6); }
.btn--ink { --bg: var(--ink); --hover: var(--coral); }
.btn--ice { --bg: var(--cyan); --fg: var(--night); --hover: var(--frost); box-shadow: 0 0 0 0 rgba(169,233,248,.4), 0 18px 40px -16px rgba(169,233,248,.55); }
.btn--line { --bg: transparent; --fg: var(--frost); --hover: rgba(227,250,255,.12); box-shadow: inset 0 0 0 1.5px rgba(227,250,255,.35); }
.btn--sm { height: 42px; padding: 0 20px; font-size: 14px; }
.btn--lg { height: 60px; padding: 0 34px; font-size: 17px; }

/* ---------- Globe (the O) ---------- */
.globe { position: relative; display: inline-block; flex: none; width: .8em; height: .8em; vertical-align: middle; }
.globe-ball { position: absolute; inset: 0; border-radius: 50%; overflow: hidden; isolation: isolate; background: #8fc5e0; }
.globe-ball::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  box-shadow: inset 0 0 0 .065em var(--ink), inset -.1em -.1em .2em rgba(24, 70, 100, .28), inset .08em .08em .16em rgba(255, 255, 255, .4);
}
.globe-sea { position: absolute; inset: -4%; width: 108%; height: 108%; }
.globe-land { position: absolute; inset: 0; display: flex; width: 200%; height: 100%; animation: globe-spin 16s linear infinite; }
.globe-land svg { width: 50%; height: 100%; flex: none; }
.globe-sprout { position: absolute; width: .46em; left: 50%; bottom: 90%; margin-left: -.21em; transform-origin: 50% 100%; }
.globe-feet { position: absolute; width: .5em; left: 50%; top: 93%; margin-left: -.25em; }
@keyframes globe-spin { to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 60;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
  padding: 18px var(--gutter);
  transition: transform .7s var(--ease), padding .5s var(--ease), color .4s;
  color: var(--ink);
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: rgba(250, 246, 238, .84); -webkit-backdrop-filter: blur(14px) saturate(1.3); backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid rgba(31, 90, 67, .08); transition: opacity .4s, background .4s, border-color .4s;
}
.site-header.is-scrolled { padding-top: 11px; padding-bottom: 11px; }
.site-header.is-scrolled::before { opacity: 1; }
.site-header.is-hidden { transform: translateY(-110%); }
.site-header.is-dark { color: var(--frost); }
.site-header.is-dark::before { background: rgba(4, 9, 15, .62); border-color: rgba(227, 250, 255, .07); }
.site-header.is-dark .btn--ink { --bg: var(--cyan); --fg: var(--night); --hover: var(--frost); }

.logo { justify-self: start; display: flex; align-items: flex-start; gap: 14px; text-decoration: none; color: inherit; }
.logo-word { display: inline-flex; align-items: center; font: 400 30px/1 var(--f-brush); letter-spacing: .01em; filter: url(#wc-text); }
.logo-word .globe { font-size: .92em; margin: 0 .02em; top: .02em; }
.logo-note { font-size: 19px; margin-top: 3px; transform: rotate(-4deg); color: inherit; opacity: .85; transition: opacity .4s; }
.is-scrolled .logo-note { opacity: 0; }
.nav { display: flex; gap: clamp(20px, 2.6vw, 38px); }
.nav a { position: relative; padding: 6px 0; font: 500 14.5px/1 var(--f-sans); text-decoration: none; color: inherit; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='6'%3E%3Cpath d='M0 3q4-4 8 0t8 0' fill='none' stroke='%23ec7a6c' stroke-width='1.8'/%3E%3C/svg%3E") repeat-x 0 0 / 16px 6px;
  clip-path: inset(0 100% 0 0); transition: clip-path .5s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { clip-path: inset(0 0 0 0); }
.site-header > .btn { justify-self: end; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: max(100svh, 760px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(104px, 14vh, 140px) var(--gutter) 0;
  background: radial-gradient(ellipse 55% 42% at 50% 32%, #fffdf8 0%, rgba(255, 253, 248, 0) 72%), var(--paper);
}
.hero-content { position: relative; z-index: 5; width: 100%; max-width: 860px; text-align: center; padding-bottom: clamp(110px, 10vw, 150px); }
.wordmark { margin: .26em 0 .2em; font: 400 clamp(76px, 12.2vw, 176px)/.9 var(--f-brush); color: var(--ink); letter-spacing: .005em; }
.wm { display: inline-flex; align-items: center; justify-content: center; }
.wm-l { display: inline-block; filter: url(#wc-text); }
.wm-o { filter: none; margin: 0 .03em 0 .01em; }
.wm-o .globe { width: .72em; height: .72em; top: .03em; }
.hero-kicker { margin: 0 0 14px; font: 600 clamp(12px, 1.05vw, 15px)/1.4 var(--f-sans); letter-spacing: .3em; text-transform: uppercase; color: var(--ink); }
.hero-copy { max-width: 580px; margin: 0 auto 32px; font-size: clamp(16px, 1.3vw, 18px); }

.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 660px; margin: 0 auto 28px; }
.pair-card {
  position: relative; display: grid; grid-template-columns: 52px 1fr 36px; align-items: center; gap: 14px;
  padding: 16px 16px 16px 18px; border-radius: 22px; text-align: left; text-decoration: none; color: var(--ink);
  border: 1.5px solid rgba(31, 90, 67, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7), 0 18px 34px -22px rgba(31, 90, 67, .45);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .3s;
}
.pair-card--com { background: linear-gradient(160deg, #f1f2e2, #e4e9d2); }
.pair-card--org { background: linear-gradient(160deg, #eaf3f6, #d9e9f0); }
.pair-card:hover { transform: translateY(-5px) rotate(-.6deg); border-color: rgba(31, 90, 67, .26); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7), 0 26px 40px -22px rgba(31, 90, 67, .5); }
.pair-card--org:hover { transform: translateY(-5px) rotate(.6deg); }
.pair-icon { display: grid; place-items: center; width: 52px; height: 52px; }
.pair-icon .globe { font-size: 58px; }
.pair-icon > svg { width: 56px; height: 56px; }
.pair-text strong { display: block; font: 400 clamp(22px, 2vw, 27px)/1 var(--f-brush); letter-spacing: .015em; filter: url(#wc-text); }
.pair-text strong span { color: var(--ink-2); }
.pair-text small { display: block; margin-top: 7px; font: 600 10.5px/1.2 var(--f-sans); letter-spacing: .2em; text-transform: uppercase; color: var(--ink-2); }
.pair-arrow { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--ink); transition: transform .55s var(--ease), background .3s; }
.pair-arrow svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.pair-card:hover .pair-arrow { transform: translateX(4px); background: var(--coral); }

.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font: 600 15px/1 var(--f-sans); color: var(--ink); text-decoration: none; padding: 4px 0; background: linear-gradient(currentColor, currentColor) no-repeat 100% 100% / 0 1.5px; transition: background-size .5s var(--ease); }
.text-link:hover { background-position: 0 100%; background-size: 100% 1.5px; }
.text-link svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linejoin: round; stroke-linecap: round; }

/* hero sky */
.hero-sky { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.sun { position: relative; aspect-ratio: 1; }
.sun > svg, .sun > span { position: absolute; inset: 0; width: 100%; height: 100%; }
.sun-rays { animation: spin 70s linear infinite; }
.hero-sun { position: absolute; width: clamp(120px, 13vw, 210px); right: clamp(12px, 5vw, 96px); top: clamp(84px, 11vh, 110px); }
.hero-sprig { position: absolute; transform-origin: 25% 98%; animation: sway 7s ease-in-out infinite; }
.hero-sprig--l { left: clamp(4px, 3vw, 64px); top: clamp(96px, 13vh, 130px); width: clamp(76px, 8.4vw, 132px); }
.hero-sprig--r { right: clamp(110px, 21vw, 340px); top: clamp(380px, 47vh, 440px); width: clamp(60px, 6vw, 92px); animation-delay: -3s; animation-duration: 8s; }
.spark { position: absolute; width: 26px; height: 26px; color: var(--spark); animation: twinkle 4s ease-in-out infinite; }
.spark--ink { color: var(--ink); width: 19px; height: 19px; }
.hero-sky .spark--1 { left: 17%; top: 150px; }
.hero-sky .spark--2 { left: 8%; top: 470px; width: 22px; animation-delay: -1.4s; }
.hero-sky .spark--3 { left: 21%; top: 250px; animation-delay: -2.2s; }
.hero-sky .spark--4 { right: 18%; top: 440px; animation-delay: -.8s; }
.hero-sky .spark--5 { right: 14%; top: 500px; animation-delay: -3s; }
.dot { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--ice-3); opacity: .75; animation: twinkle 5s ease-in-out infinite; }
.dot--1 { left: 12%; top: 190px; } .dot--2 { left: 19%; top: 390px; animation-delay: -1s; } .dot--3 { left: 30%; top: 140px; width: 5px; height: 5px; animation-delay: -2s; }
.dot--4 { right: 27%; top: 160px; animation-delay: -3s; } .dot--5 { right: 9%; top: 380px; width: 5px; height: 5px; } .dot--6 { right: 24%; top: 380px; animation-delay: -2.5s; }
.hero-note--l { left: clamp(16px, 4vw, 70px); top: clamp(330px, 40vh, 380px); transform: rotate(-12deg); }
.hero-note--r { right: clamp(16px, 4.5vw, 80px); top: clamp(318px, 38vh, 360px); transform: rotate(9deg); text-align: right; }

/* hero ground */
.hero-ground { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; height: clamp(230px, 30vw, 400px); pointer-events: none; }
.hero-water { position: absolute; left: 0; bottom: 0; width: 100%; height: 58%; }
.hero-bergs { position: absolute; right: -3vw; bottom: 26%; width: clamp(250px, 36vw, 560px); }
.hero-bergs svg { width: 100%; height: auto; }
.hero-bear { position: absolute; left: clamp(-24px, 1.5vw, 40px); bottom: 3%; width: clamp(210px, 25vw, 380px); }
.bob { animation: bob 7s ease-in-out infinite; }
.hero-bear .bear { width: 66%; margin: 0 0 -13% 13%; position: relative; z-index: 1; }
.hero-bear .floe { width: 100%; height: auto; }
.chunk { position: absolute; width: 64px; animation: bob 6s ease-in-out infinite; }
.chunk--1 { right: 33%; bottom: 13%; }
.chunk--2 { right: 22%; bottom: 31%; width: 46px; animation-delay: -2s; }
.chunk--3 { left: 36%; bottom: 5%; width: 56px; animation-delay: -4s; }
.note--water { right: clamp(16px, 7vw, 120px); bottom: 7%; color: #fff; font-size: 25px; letter-spacing: .08em; text-transform: uppercase; transform: rotate(-4deg); z-index: 2; text-shadow: 0 1px 2px rgba(40, 90, 120, .45), 0 2px 14px rgba(40, 90, 120, .35); }
.scroll-cue { position: absolute; left: 50%; bottom: 24px; z-index: 6; width: 26px; height: 42px; margin-left: -13px; border: 2px solid rgba(255,255,255,.9); border-radius: 14px; transition: opacity .4s; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: #fff; animation: cue 2s var(--ease-io) infinite; }

/* hero entrance */
.js .wm-l { opacity: 0; transform: translateY(-.55em) rotate(-9deg); }
.js .wm-o { transform: translateX(-2.6em) rotate(-300deg); }
.js .globe--char .globe-sprout { transform: scale(0); }
.js .globe--char .globe-feet { opacity: 0; transform: translateY(-.1em); }
.js .hero-in { opacity: 0; transform: translateY(20px); }
.js .hero-sun { opacity: 0; }
.js .hero-bear, .js .hero-bergs { opacity: 0; }
.is-ready .wm-l { opacity: 1; transform: none; transition: transform 1s var(--ease-back) calc(.2s + var(--i) * .07s), opacity .35s calc(.2s + var(--i) * .07s); }
.is-ready .wm-o { opacity: 1; transform: none; transition: transform 1.5s var(--ease) .35s, opacity .3s .35s; }
.is-ready .globe--char .globe-sprout { transform: none; transition: transform .8s var(--ease-back) 1.5s; }
.is-ready .globe--char .globe-feet { opacity: 1; transform: none; transition: all .5s var(--ease-back) 1.35s; }
.is-ready .hero-in { opacity: 1; transform: none; transition: opacity 1s var(--ease) var(--d), transform 1.2s var(--ease) var(--d); }
.is-ready .hero-sun { opacity: 1; transition: opacity 1.4s var(--ease) .5s; }
.is-ready .hero-sun > .sun { animation: rise 1.8s var(--ease) .4s both; }
.is-ready .hero-bear { opacity: 1; animation: slide-in-l 1.6s var(--ease) .7s both; }
.is-ready .hero-bergs { opacity: 1; animation: slide-in-r 1.6s var(--ease) .8s both; }
.is-ready .hero .globe--char { animation: hop 5s ease-in-out 3.2s infinite; }

/* ---------- Shared keyframes ---------- */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes sway { 0%, 100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-6px) rotate(.6deg); } }
@keyframes twinkle { 0%, 100% { opacity: 1; transform: scale(1) rotate(0); } 50% { opacity: .45; transform: scale(.72) rotate(25deg); } }
@keyframes cue { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(14px); opacity: 0; } }
@keyframes rise { from { transform: translateY(60px) scale(.85); } to { transform: none; } }
@keyframes slide-in-l { from { transform: translateX(-60px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes slide-in-r { from { transform: translateX(60px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes hop { 0%, 84%, 100% { transform: none; } 88% { transform: translateY(-.09em) rotate(-4deg); } 92% { transform: none; } 95% { transform: translateY(-.04em) rotate(3deg); } }

/* ---------- Reveal system ---------- */
.js [data-reveal] { opacity: 0; translate: 0 34px; transition: opacity 1s var(--ease) var(--d, 0s), translate 1.2s var(--ease) var(--d, 0s); }
.js [data-reveal].is-in { opacity: 1; translate: none; }
[data-split] .w { display: inline-block; overflow: hidden; vertical-align: top; padding: 0 .04em .12em; margin: 0 -.04em -.12em; }
.js [data-split] .w > span { display: inline-block; transform: translateY(110%) rotate(4deg); transform-origin: 0 100%; transition: transform 1.1s var(--ease); transition-delay: calc(var(--wi) * 60ms); }
.js [data-split].is-in .w > span { transform: none; }

/* ---------- Marquee ---------- */
.marquee { position: relative; z-index: 4; padding: 34px 0; overflow: hidden; background: var(--paper); }
.marquee-bg { position: absolute; left: -2%; top: 10px; width: 104%; height: calc(100% - 20px); }
.marquee-track { position: relative; display: flex; width: max-content; will-change: transform; }
.marquee-group { display: flex; align-items: center; gap: 30px; padding-right: 30px; }
.marquee-group span { font: 400 clamp(30px, 3.4vw, 46px)/1 var(--f-brush); color: var(--ink); white-space: nowrap; }
.marquee-group span:nth-of-type(even) { color: var(--coral-2); }
.marquee-group svg { width: 26px; height: 26px; color: var(--spark); flex: none; }

/* ---------- N°01 Melt (pinned) ---------- */
.melt { position: relative; height: 400vh; background: var(--paper); }
.melt-stage {
  position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 100px var(--gutter) 70px;
}
.melt-kicker { position: absolute; top: clamp(96px, 13vh, 130px); left: 0; right: 0; text-align: center; }
.melt-caps { position: relative; width: 100%; max-width: 900px; height: 1.3em; margin-bottom: clamp(36px, 6vh, 70px); font: 400 clamp(26px, 3.1vw, 44px)/1.2 var(--f-serif); font-variation-settings: "opsz" 144; letter-spacing: -.02em; color: var(--ink); text-align: center; }
.melt-cap { position: absolute; inset: 0; opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .9s var(--ease); }
.melt-cap.is-on { opacity: 1; transform: none; }
.melt-cap em { color: var(--coral-2); }
.melt-word { position: relative; display: flex; align-items: center; font: 400 clamp(64px, 15vw, 250px)/.9 var(--f-brush); color: var(--ink); will-change: transform; }
.mw-stop, .mw-melt { position: relative; z-index: 1; display: flex; align-items: center; }
.mw-l { display: inline-block; filter: url(#wc-text); transform-origin: 50% 0; will-change: transform; }
.mw-o { filter: none; margin: 0 .03em 0 .01em; }
.mw-o .globe { width: .72em; height: .72em; top: .03em; }
.mw-base { display: none; }
.drips { position: absolute; left: 0; top: 0; z-index: 0; overflow: visible; pointer-events: none; }
.drips-liquid path { fill: var(--ink); }
.drips-ice path { fill: url(#g-ice); stroke: #97c6de; stroke-width: 1.5; }
.frost { position: absolute; width: .13em; height: .13em; color: #7fb6d3; opacity: 0; }
.frost--1 { left: 60%; top: 112%; } .frost--2 { left: 79%; top: 122%; color: var(--spark); } .frost--3 { left: 97%; top: 104%; }
.melt-final { max-width: 640px; margin-top: clamp(90px, 15vh, 170px); text-align: center; font-size: clamp(17px, 1.5vw, 20px); opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform 1s var(--ease); }
.melt-final strong { color: var(--ink); font-weight: 700; letter-spacing: .02em; }
.melt.is-final .melt-final { opacity: 1; transform: none; }
.melt-hint { position: absolute; left: 0; right: 0; bottom: 28px; text-align: center; font-size: 27px; transition: opacity .5s; animation: nudge 2.4s var(--ease-io) infinite; }
.melt.is-going .melt-hint { opacity: 0; }

.melt-sun { position: absolute; right: clamp(12px, 8vw, 150px); top: clamp(120px, 17vh, 170px); width: clamp(96px, 12vw, 190px); }
.sun-heat { border-radius: 50%; background: radial-gradient(circle, rgba(238, 96, 76, .6) 0 45%, rgba(238, 96, 76, 0) 70%); opacity: 0; }
.face-hot { opacity: 0; }
.sun > .sun-drop { inset: auto; left: 76%; top: 26%; width: 17%; height: auto; opacity: 0; }

.thermo { position: absolute; left: clamp(14px, 8vw, 150px); top: 50%; transform: translateY(-38%); display: flex; flex-direction: column; align-items: center; }
.thermo-tube { position: relative; width: 24px; height: clamp(140px, 26vh, 240px); border: 2.5px solid var(--ink); border-bottom: 0; border-radius: 12px 12px 0 0; background: #fffdf8; overflow: hidden; }
.thermo-fill { position: absolute; left: 4px; right: 4px; top: 5px; bottom: 0; border-radius: 6px 6px 0 0; background: var(--coral); transform-origin: 50% 100%; transform: scaleY(.1); transition: background-color .6s; }
.thermo-tube b { position: absolute; right: 0; width: 7px; height: 2px; background: var(--ink); opacity: .5; }
.thermo-tube b:nth-of-type(1) { top: 20%; } .thermo-tube b:nth-of-type(2) { top: 40%; } .thermo-tube b:nth-of-type(3) { top: 60%; } .thermo-tube b:nth-of-type(4) { top: 80%; }
.thermo-bulb { width: 46px; height: 46px; margin-top: -5px; border: 2.5px solid var(--ink); border-radius: 50%; background: var(--coral); box-shadow: inset -6px -6px 0 rgba(0,0,0,.08), inset 5px 5px 0 rgba(255,255,255,.3); transition: background-color .6s; }
.thermo-read { margin-top: 12px; text-align: center; color: var(--ink); }
.thermo-val { display: block; font-size: 38px; }
.thermo-lbl { display: block; font-size: 23px; color: var(--ink-2); }
.melt.is-frozen .thermo-fill, .melt.is-frozen .thermo-bulb { background-color: var(--ice-3); }

/* ---------- N°02 Domains ---------- */
.domains { background: linear-gradient(180deg, var(--paper), var(--paper-2)); overflow: clip; }
.deco-sprig--domains { position: absolute; left: clamp(-20px, 3vw, 60px); top: 110px; width: clamp(70px, 8vw, 120px); transform: rotate(-14deg); }
.dgrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.4vw, 32px); max-width: var(--maxw); margin: 0 auto; }
.dcard {
  position: relative; isolation: isolate;
  padding: clamp(26px, 3vw, 44px); border-radius: 34px; border: 1.5px solid rgba(31, 90, 67, .12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 40px 70px -50px rgba(31, 90, 67, .55);
  transform: perspective(1200px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .9s var(--ease), box-shadow .6s var(--ease), opacity 1s var(--ease) var(--d, 0s), translate 1.2s var(--ease) var(--d, 0s);
  will-change: transform;
}
.dcard.is-tilting { transition: transform .15s linear, box-shadow .6s var(--ease), opacity 1s var(--ease), translate 1.2s var(--ease); }
.dcard--com { background: linear-gradient(165deg, #f4f5e8 0%, #e5ead3 100%); }
.dcard--org { background: linear-gradient(165deg, #eff6f8 0%, #d9e9f1 100%); }
.dcard::after { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 30%), rgba(255, 255, 255, .7), rgba(255, 255, 255, 0) 62%); opacity: 0; transition: opacity .5s; }
.dcard:hover::after { opacity: 1; }
.dcard-art { position: relative; height: clamp(170px, 17vw, 230px); display: grid; place-items: center; margin-bottom: 14px; }
.dcard-char { height: 100%; width: auto; transition: transform .9s var(--ease-back); }
.dcard-char--earth { height: 112%; }
.dcard:hover .dcard-char { transform: translateY(-8px) rotate(-4deg) scale(1.03); }
.dcard-leaf { position: absolute; bottom: 4%; width: clamp(64px, 6.5vw, 92px); }
.dcard-leaf--l { left: calc(50% - clamp(150px, 15vw, 190px)); transform: scaleX(-1) rotate(-6deg); }
.dcard-leaf--r { right: calc(50% - clamp(150px, 15vw, 190px)); transform: rotate(-6deg); }
.dcard-art .spark--a { left: 16%; top: 12%; } .dcard-art .spark--b { right: 20%; top: 26%; animation-delay: -1.6s; } .dcard-art .spark--c { right: 14%; top: 10%; animation-delay: -2.4s; }
.dcard-note { position: absolute; right: 2%; bottom: 4%; transform: rotate(-7deg); font-size: 27px; }
.dcard--org .dcard-note { right: auto; bottom: auto; left: 3%; top: 6%; transform: rotate(-9deg); }
.dcard-tag { font: 600 12px/1 var(--f-sans); letter-spacing: .26em; text-transform: uppercase; color: var(--coral-2); }
.dcard-name { margin: 12px 0 14px; font: 400 clamp(40px, 4.6vw, 66px)/1 var(--f-brush); letter-spacing: .01em; color: var(--ink); filter: url(#wc-text); }
.dcard-name span { color: var(--ink-2); }
.dcard-desc { max-width: 460px; margin-bottom: 22px; }
.dcard-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-bottom: 30px; font-size: 15px; font-weight: 500; color: var(--ink); }
.dcard-list li { display: flex; align-items: baseline; gap: 10px; line-height: 1.35; }
.dcard-list li::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--ice-3); transform: translateY(-1px); }
.dcard--com .dcard-list li::before { background: #9cc58a; }
.dcard-cta { display: inline-flex; align-items: center; gap: 10px; padding: 13px 22px; border-radius: 999px; border: 1.5px solid rgba(31, 90, 67, .2); background: rgba(255, 255, 255, .6); color: var(--ink); font: 600 15.5px/1 var(--f-sans); text-decoration: none; transition: background .35s, color .35s, border-color .35s; }
.dcard-cta svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .5s var(--ease); }
.dcard-cta:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.dcard-cta:hover svg { transform: translateX(4px); }

.bundle {
  position: relative; overflow: hidden; max-width: var(--maxw); margin: clamp(18px, 2.4vw, 32px) auto 0;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(20px, 3vw, 44px);
  padding: clamp(24px, 3vw, 34px) clamp(24px, 3.4vw, 48px); border-radius: 34px; background: var(--ink); color: #e9f1ec;
}
.bundle::before { content: ""; position: absolute; right: -80px; top: -120px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(143, 197, 224, .22), rgba(143, 197, 224, 0) 70%); }
.bundle-art { display: flex; align-items: center; gap: 2px; }
.bundle-cube { width: 72px; height: 72px; }
.bundle-earth { width: 82px; height: 82px; }
.bundle-heart { width: 24px; height: 22px; color: var(--coral); animation: beat 1.8s ease-in-out infinite; }
.bundle-text h3 { margin-bottom: 6px; font: 500 clamp(26px, 2.6vw, 36px)/1.1 var(--f-serif); letter-spacing: -.02em; color: #fff; }
.bundle-text p { max-width: 520px; color: rgba(233, 241, 236, .78); font-size: 16px; }
.bundle .btn--coral { --hover: var(--paper); }
.bundle .btn--coral:hover { color: var(--ink); }

@keyframes beat { 0%, 100% { transform: scale(1); } 15% { transform: scale(1.22); } 30% { transform: scale(.96); } 45% { transform: scale(1.12); } }
@keyframes nudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- N°03 Ideas (stacking cards) ---------- */
.ideas { background: linear-gradient(180deg, var(--paper-2), var(--paper)); }
.stack { max-width: var(--maxw); margin: 0 auto; }
.idea {
  position: sticky; top: calc(92px + var(--i) * 16px);
  height: min(620px, calc(100svh - 140px)); margin-bottom: 8vh;
  display: grid; grid-template-columns: 1fr 1.08fr;
  border-radius: 36px; overflow: hidden; transform-origin: 50% 0;
  box-shadow: 0 -12px 40px -24px rgba(31, 90, 67, .35), 0 40px 80px -50px rgba(31, 90, 67, .5);
  will-change: transform;
}
.idea:last-child { margin-bottom: 0; }
.idea::after { content: ""; position: absolute; inset: 0; z-index: 3; border-radius: inherit; background: #0d2219; opacity: var(--dim, 0); pointer-events: none; }
.idea-copy { position: relative; z-index: 1; display: flex; flex-direction: column; padding: clamp(26px, 4vw, 56px); }
.idea-copy > .idea-meta { margin-bottom: auto; }
.idea-copy > .idea-tags { margin-bottom: auto; }
.idea-copy > .idea-logo { margin-top: 24px; }
.idea-meta { display: flex; justify-content: space-between; gap: 12px; font: 500 12px/1.3 var(--f-mono); letter-spacing: .08em; text-transform: uppercase; opacity: .7; }
.idea-logo { margin-bottom: 16px; }
.idea-line { max-width: 440px; font: 500 clamp(24px, 2.5vw, 34px)/1.15 var(--f-serif); letter-spacing: -.02em; }
.idea-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.idea-tags li { padding: 7px 14px; border-radius: 999px; border: 1.5px solid currentColor; font: 500 13px/1 var(--f-sans); opacity: .75; }
.idea-visual { position: relative; display: grid; place-items: center; overflow: hidden; }

.idea--app { background: var(--ink); color: #e3eee8; }
.idea--app .idea-line { color: #fff; }
.idea--app .idea-visual { background: radial-gradient(circle at 60% 40%, #2f7058, #1a4d3a 75%); }
.lg-app { font: 700 clamp(40px, 4.6vw, 66px)/1 var(--f-sans); letter-spacing: -.055em; color: #f3f8f4; }
.lg-app i { display: inline-block; width: .2em; height: .2em; margin-left: .05em; border-radius: 50%; background: var(--cyan); }
.app { width: 86%; max-width: 470px; border-radius: 16px; overflow: hidden; background: #fbfaf6; color: #1f3a31; box-shadow: 0 40px 60px -30px rgba(0, 0, 0, .5); transform: rotate(-3deg) translateY(8px); }
.app-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #efece4; }
.app-bar i { width: 9px; height: 9px; border-radius: 50%; background: #9cc58a; }
.app-bar i:first-child { background: var(--coral); } .app-bar i:nth-child(2) { background: #f6c36b; }
.app-bar span { flex: 1; margin-left: 10px; padding: 4px 10px; border-radius: 6px; background: #fbfaf6; font: 500 11px var(--f-mono); color: var(--muted); }
.app-body { display: grid; grid-template-columns: 44px 1fr; }
.app-side { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 16px 0; background: #f3f0e8; }
.app-side b { width: 20px; height: 20px; margin-bottom: 6px; border-radius: 6px; background: var(--ink); }
.app-side span { width: 18px; height: 6px; border-radius: 3px; background: #dcd6ca; }
.app-side span.on { background: var(--ice-3); }
.app-main { padding: 16px 18px 20px; }
.app-head { display: flex; justify-content: space-between; align-items: flex-start; }
.app-head small { display: block; font-size: 11px; color: var(--muted); }
.app-head strong { font: 700 34px/1.1 var(--f-sans); letter-spacing: -.03em; color: var(--ink); }
.chip { padding: 5px 10px; border-radius: 999px; background: #e3efd9; color: #3f7a52; font: 600 11px/1 var(--f-sans); }
.app-chart { width: 100%; height: 108px; margin: 10px 0 12px; overflow: visible; }
.app-chart .grid { fill: none; stroke: #ebe7de; stroke-width: 1; vector-effect: non-scaling-stroke; }
.app-chart .target { fill: none; stroke: var(--coral); stroke-width: 1.5; stroke-dasharray: 5 5; vector-effect: non-scaling-stroke; }
.app-chart .area { fill: rgba(143, 197, 224, .3); }
.app-chart .line { fill: none; stroke: var(--ink-2); stroke-width: 3; stroke-linecap: round; vector-effect: non-scaling-stroke; stroke-dasharray: 1200; stroke-dashoffset: 1200; transition: stroke-dashoffset 2.4s var(--ease) .2s; }
.idea.is-in .app-chart .line { stroke-dashoffset: 0; }
.app-rows li { display: grid; grid-template-columns: 50px 1fr; align-items: center; gap: 10px; margin-top: 7px; font-size: 11px; color: #5d6a65; }
.app-rows b { width: calc(var(--w) * 100%); height: 8px; border-radius: 4px; background: linear-gradient(90deg, var(--ice-3), #9cc58a); transform-origin: 0 50%; transform: scaleX(0); transition: transform 1.4s var(--ease) .5s; }
.idea.is-in .app-rows b { transform: none; }
.v-app-cube { position: absolute; right: 4%; bottom: 2%; width: 28%; max-width: 150px; animation: bob 5s ease-in-out infinite; }

.idea--bottle { background: #d9eaf2; color: var(--ink); }
.idea--bottle .idea-visual { background: radial-gradient(circle at 50% 55%, #eef6fa, #c4dfeb 75%); }
.lg-bottle { font: italic 400 clamp(46px, 5.2vw, 76px)/1 var(--f-serif); letter-spacing: -.035em; color: var(--ink); }
.lg-bottle sup { font: 500 .24em var(--f-sans); vertical-align: top; position: relative; top: .4em; }
.v-bottle .bottle { height: 84%; width: auto; animation: bob 6s ease-in-out infinite; rotate: 6deg; }
.bottle-word { font: 400 30px var(--f-brush); fill: var(--ink); }
.bottle-small { font: 700 9px var(--f-sans); letter-spacing: .2em; fill: var(--coral-2); }
.float-cube { position: absolute; width: 21%; max-width: 110px; animation: bob 5s ease-in-out infinite; }
.float-cube--1 { left: 9%; top: 14%; rotate: -12deg; animation-delay: -1s; }
.float-cube--2 { right: 9%; bottom: 12%; width: 15%; rotate: 10deg; animation-delay: -3s; }
.badge-rot { position: absolute; right: 7%; top: 8%; width: clamp(92px, 10vw, 128px); aspect-ratio: 1; }
.badge-rot::before { content: ""; position: absolute; inset: 21%; border-radius: 50%; background: #fbf7ef; box-shadow: 0 8px 18px -8px rgba(31, 90, 67, .35); }
.badge-rot > svg:first-child { position: relative; width: 100%; height: 100%; animation: spin 20s linear infinite; }
.badge-rot text { font: 700 11px var(--f-sans); letter-spacing: .15em; fill: var(--ink); }
.badge-mid { position: absolute; left: 36%; top: 36%; width: 28%; height: 28%; color: var(--ice-3); }
.badge-rot--pink { right: auto; top: auto; left: 7%; bottom: 9%; }
.badge-rot--pink::before { background: #fff5f1; }
.badge-rot--pink text { fill: #8a3f35; }
.badge-rot--pink .badge-mid { color: var(--coral); }

.idea--org { background: #fbf2e6; color: var(--ink); }
.idea--org .idea-visual { background: radial-gradient(circle at 50% 50%, #fbe9d6, #f3d7ba 80%); }
.lg-org { display: flex; align-items: center; gap: 12px; font: 700 clamp(26px, 3vw, 40px)/1 var(--f-sans); letter-spacing: .04em; color: var(--ink); }
.lg-org svg { width: 1.5em; height: 1.5em; flex: none; }
.poster { display: flex; flex-direction: column; width: min(74%, 330px); aspect-ratio: 3 / 4.15; padding: 13px 13px 18px; border-radius: 14px; background: #fffaf3; box-shadow: 0 40px 60px -30px rgba(120, 70, 40, .5); transform: rotate(3deg); }
.poster-art { position: relative; flex: 1; overflow: hidden; border-radius: 8px; background: linear-gradient(180deg, #fbe0c4 0%, #fdf1e2 60%, #eaf3f6 100%); }
.poster-sun { position: absolute; right: 8%; top: 7%; width: 36%; }
.poster-bergs { position: absolute; right: -14%; bottom: 17%; width: 92%; }
.poster-water { position: absolute; left: 0; bottom: 0; width: 100%; height: 25%; }
.poster-floe { position: absolute; left: -6%; bottom: 5%; width: 60%; }
.poster-bear { position: absolute; left: 7%; bottom: 16%; width: 37%; }
.poster-kicker { margin-top: 14px; font: 700 11px/1 var(--f-sans); letter-spacing: .24em; color: var(--coral-2); }
.poster-title { margin-top: 7px; font: 500 clamp(24px, 2.5vw, 33px)/1 var(--f-serif); letter-spacing: -.025em; color: var(--ink); }
.poster-foot { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.poster-btn { padding: 8px 14px; border-radius: 999px; background: var(--coral); color: #fff; font: 600 12px/1 var(--f-sans); }
.poster-bar { flex: 1; height: 8px; overflow: hidden; border-radius: 4px; background: #f1e6d8; }
.poster-bar i { display: block; width: 72%; height: 100%; border-radius: 4px; background: var(--ink-2); transform-origin: 0 50%; transform: scaleX(0); transition: transform 1.6s var(--ease) .4s; }
.idea.is-in .poster-bar i { transform: none; }
.sticker { position: absolute; left: 9%; bottom: 11%; display: grid; place-items: center; width: 94px; height: 94px; border-radius: 50%; background: var(--ink); color: #fff; text-align: center; font: 400 25px/.9 var(--f-brush); box-shadow: 0 14px 26px -10px rgba(0, 0, 0, .35); animation: wiggle 3.2s ease-in-out infinite; }

.idea--gelato { background: #f9ded5; color: #7a3a32; }
.idea--gelato .idea-visual { background: radial-gradient(circle at 50% 45%, #fdeee8, #f4c8bb 80%); }
.lg-gelato { font: 400 clamp(54px, 6.4vw, 90px)/1 var(--f-brush); color: #bf4c3f; filter: url(#wc-text); transform: rotate(-3deg); transform-origin: 0 100%; }
.v-gelato .cone { height: 86%; width: auto; transform-origin: 50% 96%; animation: sway 5s ease-in-out infinite; }
.ideas-note { max-width: var(--maxw); margin: 36px auto 0; text-align: center; font: 500 13px var(--f-mono); color: var(--muted); }

/* ---------- N°04 Why ---------- */
.why { background: var(--paper); overflow: clip; }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); max-width: var(--maxw); margin: 0 auto; }
.fact { position: relative; padding-top: 22px; text-align: center; }
.fact-blob { position: absolute; left: 50%; top: 0; width: 200px; height: 160px; margin-left: -100px; transition: transform 1.2s var(--ease-back); }
.fact:hover .fact-blob { transform: rotate(-8deg) scale(1.06); }
.fact-num { position: relative; font: 400 clamp(92px, 9.5vw, 144px)/1 var(--f-brush); color: var(--ink); filter: url(#wc-text); }
.fact h3 { position: relative; margin: 18px 0 10px; font: 600 13.5px/1.4 var(--f-sans); letter-spacing: .2em; text-transform: uppercase; color: var(--ink); }
.fact > p:not(.fact-num) { max-width: 250px; margin: 0 auto; font-size: 16px; }
.say { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 10px 17px; border-radius: 999px; border: 1.5px solid rgba(31, 90, 67, .25); background: #fff; color: var(--ink); font: 600 14px/1 var(--f-sans); cursor: pointer; transition: background .3s, color .3s, border-color .3s; }
.say[hidden] { display: none; }
.say svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.say:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.say.is-playing .say-w1 { animation: wave .9s ease-in-out infinite; }
.say.is-playing .say-w2 { animation: wave .9s ease-in-out .2s infinite; }
.why-note { margin-top: 56px; text-align: center; font-size: 34px; transform: rotate(-3deg); }

/* ---------- N°05 Offer ---------- */
.offer { padding-top: clamp(40px, 5vw, 70px); }
.offer-panel {
  position: relative; overflow: hidden; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(36px, 5vw, 70px);
  padding: clamp(36px, 6vw, 84px); border-radius: 44px;
  background: linear-gradient(160deg, #e6f1f6 0%, #cde3ee 100%);
}
.offer-bergs { position: absolute; right: -70px; bottom: -44px; width: min(520px, 60%); opacity: .55; }
.offer-sprig { position: absolute; left: -6px; bottom: -78px; width: 92px; transform: rotate(-10deg); }
.offer-copy { position: relative; z-index: 1; }
.offer-copy .h2 { margin: 16px 0 18px; }
.offer-copy .lede { margin-bottom: 28px; }
.choice { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; padding: 0; border: 0; }
.choice label { position: relative; cursor: pointer; }
.choice input { position: absolute; inset: 0; margin: 0; opacity: 0; cursor: pointer; }
.choice span { display: inline-flex; align-items: center; gap: 8px; height: 48px; padding: 0 20px; border-radius: 999px; border: 1.5px solid rgba(31, 90, 67, .18); background: rgba(255, 255, 255, .7); color: var(--ink); font: 600 15px/1 var(--f-sans); transition: background .35s var(--ease), color .35s, border-color .35s, transform .5s var(--ease-back); }
.choice small { font-size: 12px; font-weight: 500; color: var(--coral-2); transition: color .35s; }
.choice label:hover span { border-color: var(--ink); }
.choice input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; transform: translateY(-2px); }
.choice input:checked + span small { color: var(--peach); }
.choice input:focus-visible + span { outline: 2.5px solid var(--coral); outline-offset: 3px; }
.fine { margin-top: 16px; font-size: 14px; color: var(--muted); }
.fine a { color: var(--ink); font-weight: 600; }

.ticket-wrap { position: relative; z-index: 1; perspective: 1100px; }
.ticket { position: relative; max-width: 380px; margin: 0 auto; padding: 24px 26px 30px; border-radius: 22px; background: #fffdf8; box-shadow: 0 40px 60px -30px rgba(31, 90, 67, .45); transform: rotate(3deg); }
.ticket.is-flipping { animation: ticket-flip .8s var(--ease); }
.ticket::before, .ticket::after { content: ""; position: absolute; top: 58px; width: 26px; height: 26px; border-radius: 50%; background: #d9eaf2; }
.ticket::before { left: -13px; } .ticket::after { right: -13px; }
.ticket-top { display: flex; justify-content: space-between; padding-bottom: 18px; border-bottom: 2px dashed #e5ded0; font: 500 11px/1 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.ticket-names { display: flex; flex-direction: column; justify-content: center; min-height: 128px; padding: 16px 0; border-bottom: 2px dashed #e5ded0; }
.ticket-names p { font: 400 clamp(36px, 3.4vw, 46px)/1.05 var(--f-brush); color: var(--ink); filter: url(#wc-text); }
.ticket-names b { font-weight: 400; color: var(--coral-2); }
.ticket[data-choice="com"] .t-org, .ticket[data-choice="org"] .t-com { display: none; }
.ticket-rows { display: grid; gap: 10px; margin: 16px 0 0; }
.ticket-rows div { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; }
.ticket-rows dt { font: 500 11px/1 var(--f-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.ticket-rows dd { margin: 0; font-weight: 600; color: var(--ink); }
.ticket-rows .ticket-you { font-size: 32px; font-weight: 400; line-height: .8; color: var(--coral-2); }
.ticket-stamp { position: absolute; right: 18px; top: 14px; padding: 6px 12px; border: 2.5px solid var(--coral); border-radius: 8px; color: var(--coral); font: 700 12px/1 var(--f-sans); letter-spacing: .22em; text-transform: uppercase; transform: rotate(-12deg); opacity: .8; }
.ticket-earth { position: absolute; left: -84px; top: 36%; width: 104px; height: 104px; animation: bob 6s ease-in-out infinite; }

/* ---------- Night: who built this ---------- */
.studio { position: relative; overflow: hidden; background: var(--night); color: rgba(224, 236, 242, .78); }
.dusk { position: relative; height: clamp(440px, 72vh, 760px); overflow: hidden; background: linear-gradient(180deg, var(--paper) 0%, #f8ead6 14%, #f4cba8 32%, #e0a192 48%, #a07f9c 62%, #525681 76%, #222c4b 89%, #131d33 100%); }
.dusk-stars { position: absolute; inset: 0 0 30%; opacity: 0; background-image:
  radial-gradient(1.6px 1.6px at 8% 62%, #fff 50%, transparent 52%), radial-gradient(1.2px 1.2px at 17% 48%, #fff 50%, transparent 52%),
  radial-gradient(2px 2px at 27% 70%, #fff 50%, transparent 52%), radial-gradient(1.3px 1.3px at 38% 55%, #fff 50%, transparent 52%),
  radial-gradient(1.6px 1.6px at 52% 76%, #fff 50%, transparent 52%), radial-gradient(1.2px 1.2px at 63% 58%, #fff 50%, transparent 52%),
  radial-gradient(2px 2px at 74% 66%, #fff 50%, transparent 52%), radial-gradient(1.4px 1.4px at 84% 50%, #fff 50%, transparent 52%),
  radial-gradient(1.6px 1.6px at 93% 72%, #fff 50%, transparent 52%), radial-gradient(1.2px 1.2px at 45% 88%, #fff 50%, transparent 52%); }
.dusk-sun { position: absolute; left: 50%; top: 22%; width: clamp(140px, 15vw, 220px); translate: -50% 0; }
.dusk-hills { position: absolute; left: 0; bottom: -1px; width: 100%; height: 44%; }
.night { position: relative; padding: clamp(30px, 5vw, 80px) var(--gutter) 0; background: linear-gradient(180deg, #131d33 0%, #0b1524 28%, var(--night) 70%); }
.snow { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; pointer-events: none; }
.aurora { position: absolute; inset: 0 0 40%; pointer-events: none; opacity: .5; }
.aurora i { position: absolute; border-radius: 50%; animation: aurora 16s ease-in-out infinite alternate; }
.aurora i:nth-child(1) { left: 4%; top: 2%; width: 56%; height: 34%; background: radial-gradient(closest-side, rgba(110, 230, 180, .45), rgba(110, 230, 180, 0)); }
.aurora i:nth-child(2) { right: 0; top: 0; width: 50%; height: 30%; background: radial-gradient(closest-side, rgba(120, 200, 250, .42), rgba(120, 200, 250, 0)); animation-duration: 20s; animation-delay: -6s; }
.aurora i:nth-child(3) { left: 28%; top: 16%; width: 44%; height: 24%; background: radial-gradient(closest-side, rgba(169, 233, 248, .32), rgba(169, 233, 248, 0)); animation-duration: 12s; }
.moon { position: absolute; right: clamp(16px, 9vw, 160px); top: clamp(20px, 4vw, 60px); width: clamp(84px, 9vw, 140px); }
.moon svg { width: 100%; height: auto; animation: bob 8s ease-in-out infinite; filter: drop-shadow(0 0 30px rgba(255, 236, 170, .35)); }
.night-bear { position: absolute; left: clamp(-30px, 2vw, 50px); bottom: 150px; width: clamp(170px, 19vw, 290px); filter: brightness(.66) saturate(.7); }
.night-bear .bear { width: 66%; margin: 0 0 -13% 13%; position: relative; z-index: 1; }
.night-bear .floe { width: 100%; height: auto; }
.night-bergs { position: absolute; right: -50px; bottom: 128px; width: clamp(240px, 30vw, 470px); height: auto; filter: brightness(.5) saturate(.85); }
.night-water { position: absolute; left: 0; bottom: 92px; width: 100%; height: 110px; }
.studio-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; padding: 40px 0 clamp(250px, 24vw, 340px); text-align: center; }
.studio-kicker { font: 500 14px/1 var(--f-mono); letter-spacing: .04em; color: var(--amber); }
.studio-title { margin: 18px 0 30px; font: 500 clamp(40px, 5.4vw, 76px)/1.02 var(--f-serif); font-variation-settings: "opsz" 144; letter-spacing: -.03em; color: #f4f8fa; }
.studio-title em { font-style: italic; font-weight: 400; color: var(--cyan); }
.bys { display: inline-flex; align-items: baseline; font: 500 clamp(28px, 5.4vw, 74px)/1 var(--f-mono); letter-spacing: -.03em; color: #fff; text-decoration: none; text-shadow: 0 0 40px rgba(169, 233, 248, .3); }
.bys b { font-weight: 500; transition: color .4s, text-shadow .4s; }
.bys:hover b { color: var(--cyan); text-shadow: 0 0 26px rgba(169, 233, 248, .8); }
.bys i { font-style: normal; color: var(--amber); animation: blink 1.1s steps(1) infinite; }
.studio-lede { max-width: 620px; margin: 30px auto 26px; font: 400 clamp(17px, 1.5vw, 20px)/1.6 var(--f-bys); color: rgba(224, 236, 242, .84); }
.services { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 26px; }
.services li { padding: 8px 15px; border-radius: 999px; border: 1px solid rgba(212, 239, 249, .18); background: rgba(227, 250, 255, .04); font: 500 13px/1 var(--f-mono); color: var(--frost); }
.studio-proof { max-width: 560px; margin: 0 auto 36px; font: 400 15px/1.6 var(--f-bys); color: rgba(224, 236, 242, .62); }
.studio-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.studio-note { margin-top: 36px; font-size: 29px; color: rgba(227, 250, 255, .75); transform: rotate(-3deg); }
.site-footer { position: relative; z-index: 2; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 28px; padding: 28px 0 34px; border-top: 1px solid rgba(212, 239, 249, .12); font: 400 13px/1.5 var(--f-bys); color: rgba(224, 236, 242, .55); }
.footer-logo { font: 400 24px/1 var(--f-brush); color: var(--frost); text-decoration: none; letter-spacing: .02em; }
.site-footer a:not(.footer-logo) { color: var(--frost); }
.to-top { text-decoration: none; font-weight: 500; }

@keyframes wiggle { 0%, 100% { transform: rotate(-14deg); } 50% { transform: rotate(-6deg) scale(1.05); } }
@keyframes wave { 0%, 100% { opacity: 1; } 50% { opacity: .2; } }
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes aurora { from { transform: translate3d(-4%, 0, 0) scale(1); } to { transform: translate3d(6%, 4%, 0) scale(1.15); } }
@keyframes ticket-flip { 0% { transform: rotate(3deg) rotateY(0); } 45% { transform: rotate(3deg) rotateY(90deg) scale(.96); } 100% { transform: rotate(3deg) rotateY(0); } }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .logo-note, .hero-sprig--r { display: none; }
  .facts { grid-template-columns: 1fr 1fr; row-gap: 64px; }
  .hero-note--l, .hero-note--r { font-size: 23px; }
}
@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .dgrid, .offer-panel { grid-template-columns: 1fr; }
  .bundle { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .bundle-text p { margin: 0 auto; }
  .idea { grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr); height: calc(100svh - 116px); top: calc(84px + var(--i) * 10px); }
  .idea-copy { grid-template-rows: auto auto auto auto; gap: 0; padding: 24px 24px 16px; }
  .idea-meta { margin-bottom: 18px; }
  .idea-logo { margin-bottom: 10px; }
  .idea-tags { display: none; }
  .hero-note--l, .hero-note--r, .scroll-cue { display: none; }
  .thermo { left: 12px; top: auto; bottom: 34px; transform: scale(.72); transform-origin: 0 100%; }
  .ticket { margin-top: 10px; }
  .offer-bergs { width: 90%; opacity: .4; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .hand { font-size: 23px; }
  .site-header { padding-top: 14px; padding-bottom: 14px; }
  .logo-word { font-size: 25px; }
  .hero { padding-top: 132px; min-height: 0; }
  .hero-sky .spark, .dot { display: none; }
  .hero-content { padding-bottom: 210px; }
  .wordmark { font-size: clamp(56px, 17vw, 90px); margin-top: 18px; }
  .hero-kicker { letter-spacing: .2em; font-size: 11px; }
  .pair { grid-template-columns: 1fr; max-width: 420px; }
  .hero-sun { width: 78px; right: -6px; top: 64px; }
  .hero-sprig--l { width: 46px; left: -10px; top: 70px; }
  .hero-note--l, .hero-note--r, .hero-sky .spark--2, .hero-sky .spark--4, .dot--2, .dot--5 { display: none; }
  .hero-ground { height: 250px; }
  .hero-water { height: 50%; }
  .hero-bergs { width: 230px; right: -60px; bottom: 30%; }
  .hero-bear { width: 180px; left: -18px; }
  .note--water { font-size: 18px; right: 12px; bottom: 5%; }
  .chunk--3 { display: none; }
  .melt { height: 360vh; }
  .melt-word { font-size: 18vw; }
  .melt-kicker { top: 86px; }
  .melt-caps { height: 2.5em; font-size: 25px; margin-bottom: 26px; }
  .melt-sun { width: 76px; right: 8px; top: 120px; }
  .thermo { left: 12px; top: auto; bottom: 34px; transform: scale(.62); transform-origin: 0 100%; }
  .melt-final { margin-top: 110px; font-size: 16px; }
  .melt-hint { font-size: 22px; }
  .dcard-list { grid-template-columns: 1fr; }
  .dcard-leaf { display: none; }
  .facts { gap: 48px 10px; }
  .fact-blob { width: 150px; height: 120px; margin-left: -75px; }
  .fact > p:not(.fact-num) { font-size: 14.5px; }
  .fact h3 { font-size: 12px; letter-spacing: .14em; }
  .choice span { height: 44px; padding: 0 16px; font-size: 14px; }
  .ticket-earth { width: 80px; height: 80px; left: -18px; bottom: -30px; }
  .night-bear { width: 150px; bottom: 210px; }
  .night-bergs { width: 220px; bottom: 196px; right: -70px; }
  .night-water { bottom: 150px; height: 90px; }
  .studio-inner { padding-bottom: 290px; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; gap: 8px; text-align: center; }
  .btn--lg { height: 56px; padding: 0 28px; font-size: 16px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  html { scroll-behavior: auto; }
  .melt { height: auto; }
  .melt-stage { position: relative; height: auto; min-height: 100svh; padding-top: 150px; padding-bottom: 120px; }
  .melt-hint { display: none; }
  .idea { position: relative; top: auto; }
}
