/* ==========================================================
   SUNNYSIDE — Shared site stylesheet
   Brand: #1E2938 ink · #F6AB39 amber · #F2F0EB bone
   Type: Onest
   ========================================================== */

/* ---------- FONTS ---------- */
@font-face { font-family: "Onest"; font-style: normal; font-weight: 100 900; font-display: swap; src: url("../fonts/Onest-Variable.ttf") format("truetype-variations"); }
@font-face { font-family: "Onest"; font-style: normal; font-weight: 300; font-display: swap; src: url("../fonts/Onest-Light.ttf") format("truetype"); }
@font-face { font-family: "Onest"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/Onest-Regular.ttf") format("truetype"); }
@font-face { font-family: "Onest"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/Onest-Medium.ttf") format("truetype"); }
@font-face { font-family: "Onest"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/Onest-SemiBold.ttf") format("truetype"); }
@font-face { font-family: "Onest"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/Onest-Bold.ttf") format("truetype"); }
@font-face { font-family: "Onest"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/Onest-ExtraBold.ttf") format("truetype"); }

:root {
  --ink:        #1E2938;
  --ink-2:      #0F1722;
  --ink-3:      #060B14;
  --paper:      #FAF7F2;
  --paper-2:    #FFFFFF;
  --amber:      #F6AB39;
  --amber-soft: #FFC562;
  --amber-deep: #C7841F;
  --sun:        #FFD954;
  --bone:       #F2F0EB;
  --stone:      #D2D1CC;
  --line-d:     rgba(255,255,255,0.08);
  --line-d-2:   rgba(255,255,255,0.14);
  --line-l:     rgba(30,41,56,0.10);
  --mute-d:     rgba(250,247,242,0.55);
  --mute-l:     rgba(30,41,56,0.55);
  --glow-amber-sm: 0 0 12px rgba(246,171,57,0.45);
  --ease-soft:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-rev:   cubic-bezier(0.22, 1, 0.36, 1);
  --font-sans:  "Onest", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--ink); scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--paper);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
em, i { font-style: normal; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center;
  padding: 22px 56px;
  background: var(--ink);
}
.nav__brand {
  display: inline-flex; align-items: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--paper-2);
  margin-right: auto;
}
.nav__links {
  display: flex; align-items: center;
  gap: 36px;
  margin: 0 36px 0 0;
}
.nav__link {
  position: relative;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--paper-2);
  transition: color 0.25s;
  padding: 6px 0;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-soft);
}
.nav__link:hover { color: var(--amber); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--amber); }
.nav__link.is-active::after { transform: scaleX(1); }

/* Dropdown */
.nav__group { position: relative; }
.nav__chev {
  width: 10px; height: 10px;
  display: inline-block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  margin-left: 2px;
  transition: transform 0.3s var(--ease-soft);
}
.nav__group:hover .nav__chev { transform: rotate(-135deg) translate(-2px, -2px); }
.nav__menu {
  position: absolute;
  top: calc(100% + 14px); left: -16px;
  min-width: 280px;
  background: var(--ink-2);
  border: 1px solid var(--line-d-2);
  border-radius: 16px;
  padding: 10px;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--ease-soft), transform 0.25s var(--ease-soft);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  z-index: 110;
}
.nav__group:hover .nav__menu,
.nav__group:focus-within .nav__menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav__menu::before {
  content: "";
  position: absolute; top: -8px; left: 0; right: 0; height: 14px;
}
.nav__menu-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--paper);
  font-size: 14px; font-weight: 600;
  letter-spacing: -0.005em;
  transition: background 0.2s, color 0.2s;
}
.nav__menu-item:hover { background: rgba(246,171,57,0.10); color: var(--amber); }
.nav__menu-item .num {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: rgba(246,171,57,0.12);
  color: var(--amber);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0;
}
.nav__menu-item .sub {
  display: block;
  font-size: 12px; font-weight: 500;
  color: var(--mute-d);
  margin-top: 2px;
  letter-spacing: 0;
}
.nav__menu-item .label { display: block; }
.nav__actions { display: inline-flex; align-items: center; gap: 6px; }
.nav__cta {
  padding: 14px 30px;
  background: var(--amber); color: var(--ink);
  border-radius: 999px;
  font-family: var(--font-sans); font-weight: 700; font-size: 16px;
  letter-spacing: -0.005em;
  display: inline-flex; align-items: center;
  transition: background 0.3s var(--ease-soft);
}
.nav__cta:hover { background: var(--amber-soft); }
.nav__cta-arrow {
  width: 46px; height: 46px; border-radius: 999px;
  background: var(--amber); color: var(--ink);
  display: inline-grid; place-items: center;
  transition: background 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}
.nav__cta-arrow:hover { background: var(--amber-soft); transform: translateX(2px); }
@media (max-width: 1080px) {
  .nav__links { gap: 28px; margin-right: 28px; }
  .nav__link { font-size: 14px; }
}
@media (max-width: 900px) {
  .nav { padding: 16px 22px; }
  .nav__links { display: none; }
  .nav__cta { padding: 10px 20px; font-size: 14px; }
  .nav__cta-arrow { width: 40px; height: 40px; }
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%; max-width: 1280px;
  margin: 0 auto; padding: 0 56px;
  position: relative;
}
@media (max-width: 760px) { .container { padding: 0 22px; } }

.section { position: relative; padding: 120px 0; }
.section--ink { background: var(--ink); color: var(--paper); }
.section--bone { background: var(--bone); color: var(--ink); }
.section--paper { background: var(--paper); color: var(--ink); }
.section--white { background: var(--paper-2); color: var(--ink); }
.section--amber { background: var(--amber); color: var(--ink); }

/* ---------- TYPE ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}
.section--bone .eyebrow, .section--paper .eyebrow, .section--white .eyebrow { color: var(--amber-deep); }
.section--amber .eyebrow { color: var(--ink); opacity: 0.75; }

.h-display {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 16px 0 0;
  text-wrap: pretty;
}
.h-section {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin: 12px 0 0;
  text-wrap: pretty;
}
.h-sub {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0;
}
.body-lg {
  font-size: 17px;
  line-height: 1.6;
  max-width: 60ch;
}
.section--ink .body-lg { color: var(--mute-d); }
.section--bone .body-lg, .section--paper .body-lg, .section--white .body-lg { color: var(--mute-l); }
.body-md {
  font-size: 15px;
  line-height: 1.6;
}
.section--ink .body-md { color: var(--mute-d); }
.section--bone .body-md, .section--paper .body-md, .section--white .body-md { color: var(--mute-l); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-sans); font-weight: 700; font-size: 15px;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.3s var(--ease-soft), color 0.3s, border-color 0.3s, transform 0.3s var(--ease-soft);
}
.btn--primary { background: var(--amber); color: var(--ink); }
.btn--primary:hover { background: var(--amber-soft); }
.btn--ghost-light {
  background: transparent; color: var(--paper);
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost-light:hover { border-color: var(--amber); color: var(--amber); }
.btn--ghost-dark {
  background: transparent; color: var(--ink);
  border-color: rgba(30,41,56,0.35);
}
.btn--ghost-dark:hover { background: var(--ink); color: var(--amber); border-color: var(--ink); }
.btn__arrow {
  width: 24px; height: 24px;
  display: inline-grid; place-items: center;
}

/* ---------- HERO (sky illustration band) ---------- */
.hero {
  position: relative;
  padding: 32px 56px 0;
  background: var(--ink);
}
.hero__inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 540px;
  padding: 80px 64px 56px;
  background: linear-gradient(180deg, #BDDDF1 0%, #D6E8F0 55%, #E3EFEE 100%);
  color: var(--paper);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero__art {
  position: absolute; inset: 0; pointer-events: none;
}
.hero__art svg { width: 100%; height: 100%; display: block; }

/* Animated amber arc that rises from below the hero — same motif as home. */
.hero__arc {
  position: absolute; left: 50%;
  bottom: -28%;
  width: min(1600px, 130vw);
  height: min(640px, 46vw);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
  color: var(--amber);
  overflow: visible;
}
.hero__arc svg { width: 100%; height: 100%; display: block; overflow: visible; }
.hero__arc-path {
  fill: none;
  stroke: var(--amber);
  stroke-width: 32;
  stroke-linecap: round;
  stroke-dasharray: var(--hero-arc-len, 2200);
  stroke-dashoffset: var(--hero-arc-len, 2200);
  animation: hero-arc-draw 2.4s cubic-bezier(0.65, 0, 0.35, 1) 0.4s forwards,
             hero-arc-breathe 8s ease-in-out 3s infinite alternate;
}
@keyframes hero-arc-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes hero-arc-breathe {
  0%   { stroke-width: 32; opacity: 1; }
  100% { stroke-width: 36; opacity: 0.85; }
}

/* Background image slot — sits ABOVE the sky art so the placeholder is visible. */
.hero__bg {
  position: absolute; inset: 0; z-index: 1;
  display: block;
  width: 100%; height: 100%;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(30,41,56,0.05) 0px, rgba(30,41,56,0.05) 16px,
    rgba(30,41,56,0.10) 16px, rgba(30,41,56,0.10) 32px
  );
  color: rgba(30,41,56,0.85);
  font-family: var(--font-sans);
  font-weight: 600;
}
.hero__bg[data-filled] { background-image: none; }
.hero--with-bg:has(.hero__bg[data-filled]) .hero__art { opacity: 0; }
.hero--with-bg .hero__inner::after {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(15,23,34,0) 0%, rgba(15,23,34,0.6) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-soft);
}
.hero--with-bg:has(.hero__bg[data-filled]) .hero__inner::after { opacity: 1; }
.hero__copy { position: relative; z-index: 3; max-width: min(820px, 90%); }
.hero__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(40px, 5.8vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--paper-2);
  margin: 0 0 24px;
  max-width: 22ch;
  text-wrap: pretty;
}
.hero__sub {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(250,247,242,0.85);
  max-width: 56ch;
  margin: 0 0 32px;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.hero__round-cta {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--paper-2); color: var(--ink);
  display: inline-grid; place-items: center;
}
@media (max-width: 760px) {
  .hero { padding: 16px 16px 0; }
  .hero__inner { padding: 44px 24px 36px; min-height: 480px; border-radius: 18px; }
}

/* ---------- SOLCARDS (4-card row pattern) ---------- */
.solrow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: end;
  margin-top: 88px;
}
.solcard {
  position: relative;
  padding-top: 72px;
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease-soft);
}
.solcard:nth-child(1) { transform: translateY(0); }
.solcard:nth-child(2) { transform: translateY(58px); }
.solcard:nth-child(3) { transform: translateY(0); }
.solcard:nth-child(4) { transform: translateY(58px); }
.solcard:hover { transform: translateY(-10px); }
.solcard:nth-child(2):hover { transform: translateY(48px); }
.solcard:nth-child(4):hover { transform: translateY(48px); }
.solcard__num {
  position: absolute;
  top: 0; left: 22px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(64px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--amber);
  z-index: 1;
  pointer-events: none;
  font-variant-numeric: tabular-nums;
}
.solcard__art {
  position: relative;
  z-index: 2;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #BDDDF1 0%, #D6E8F0 60%, #E5EFEF 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 18px 40px rgba(30,41,56,0.08);
}
.solcard__art svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.solcard__foot {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 16px;
  align-items: end;
}
.solcard__eyebrow {
  display: block;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(30,41,56,0.55);
  margin-bottom: 10px;
}
.solcard__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.solcard__arrow {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(30,41,56,0.35);
  background: transparent;
  color: var(--ink);
  display: grid; place-items: center;
  transition: background 0.3s var(--ease-soft), color 0.3s, border-color 0.3s, transform 0.3s var(--ease-soft);
  align-self: end;
}
.solcard:hover .solcard__arrow {
  background: var(--ink); color: var(--amber); border-color: var(--ink); transform: translateX(2px);
}
@media (max-width: 980px) {
  .solrow { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .solcard:nth-child(2), .solcard:nth-child(4) { transform: translateY(0); }
}
@media (max-width: 560px) {
  .solrow { grid-template-columns: 1fr; }
  .solcard { transform: none !important; }
}

/* ---------- TWO-COL LAYOUT (heading + body) ---------- */
.twocol {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}
.twocol > * { min-width: 0; }
.twocol p + p { margin-top: 16px; }
@media (max-width: 900px) { .twocol { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- FEATURE LIST ---------- */
.features {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid currentColor;
  border-color: rgba(30,41,56,0.12);
}
.section--ink .features { border-color: var(--line-d-2); }
.feature {
  position: relative;
  padding: 32px 28px 32px 0;
  border-bottom: 1px solid rgba(30,41,56,0.12);
  display: flex; flex-direction: column; gap: 8px;
  transition: transform 0.4s var(--ease-soft);
}
.feature::before {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 1px; width: 0;
  background: var(--amber);
  transition: width 0.6s var(--ease-soft);
  z-index: 2;
}
.feature:hover { transform: translateY(-4px); }
.feature:hover::before { width: 100%; }
.section--ink .feature { border-bottom-color: var(--line-d-2); }
.feature__idx {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--amber);
  transition: letter-spacing 0.4s var(--ease-soft);
}
.feature:hover .feature__idx { letter-spacing: 0.08em; }
.feature__title {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0;
}
.feature__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--mute-l);
  margin: 0;
  max-width: 34ch;
}
.section--ink .feature__body { color: var(--mute-d); }
@media (max-width: 900px) { .features { grid-template-columns: 1fr; } }

/* ---------- STAT STRIP ---------- */
.statstrip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(30,41,56,0.12);
  border-bottom: 1px solid rgba(30,41,56,0.12);
  margin-top: 56px;
}
.section--ink .statstrip { border-color: var(--line-d-2); }
.stat {
  position: relative;
  padding: 32px 24px;
  border-right: 1px solid rgba(30,41,56,0.12);
  overflow: hidden;
  transition: background 0.4s;
}
.stat::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease-soft);
}
.stat:hover { background: rgba(246,171,57,0.06); }
.stat:hover::after { transform: scaleX(1); }
.section--ink .stat { border-right-color: var(--line-d-2); }
.section--ink .stat:hover { background: rgba(246,171,57,0.08); }
.stat:last-child { border-right: none; }
.stat__num {
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 8px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.section--ink .stat__num { color: var(--paper); }
.section--amber .stat__num { color: var(--ink); }
.stat__num em { color: var(--amber); font-style: normal; }
.stat__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mute-l);
}
.section--ink .stat__label { color: var(--mute-d); }
@media (max-width: 760px) {
  .statstrip { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
}

/* ---------- CALLOUT (amber CTA band) ---------- */
.callout {
  background: var(--amber);
  color: var(--ink);
  padding: 96px 56px;
  margin: 0;
}
.callout__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: end;
}
.callout__h {
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 18ch;
}
.callout__actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-self: end;
}
.callout__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  background: var(--ink); color: var(--paper);
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  transition: background 0.3s var(--ease-soft);
}
.callout__btn:hover { background: var(--ink-3); }
.callout__btn-arrow {
  width: 26px; height: 26px;
  display: inline-grid; place-items: center;
  border-radius: 999px;
  background: var(--amber); color: var(--ink);
}
@media (max-width: 760px) {
  .callout { padding: 64px 22px; }
  .callout__inner { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .callout__actions { justify-self: start; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 56px 32px;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-d-2);
}
.footer__brand {
  font-weight: 700; font-size: 32px; letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--paper-2);
}
.footer__tag {
  font-size: 15px; line-height: 1.6; color: var(--mute-d);
  max-width: 36ch;
}
.footer__col-h {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--amber);
  margin: 0 0 16px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__col a { color: rgba(250,247,242,0.78); font-size: 14px; transition: color 0.2s; }
.footer__col a:hover { color: var(--amber); }
.footer__bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mute-d);
}
@media (max-width: 900px) {
  .footer { padding: 56px 22px 24px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ---------- MARQUEE TICKER ---------- */
.ticker {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--line-d-2);
  border-bottom: 1px solid var(--line-d-2);
}
.ticker__track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: ticker-slide 36s linear infinite;
  will-change: transform;
}
.ticker__item {
  display: inline-flex; align-items: center; gap: 22px;
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 36px);
  letter-spacing: -0.015em;
  line-height: 1;
}
.ticker__item .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--amber);
  flex-shrink: 0;
}
.ticker--amber { background: var(--amber); color: var(--ink); }
.ticker--amber .dot { background: var(--ink); }
@keyframes ticker-slide { to { transform: translateX(-50%); } }

/* ============================================================
                  PINNED SHIFTS — kinetic scroll section
   Stage 0: ink background (paper text)
   Stage 1: bone background (ink text)
   Stage 2: amber background (ink text)
   Background and color transition smoothly between stages.
   ============================================================ */
.shifts {
  position: relative;
  height: 360vh;
  background: var(--ink);
  color: var(--paper);
  transition: background 0.9s var(--ease-soft), color 0.9s var(--ease-soft);
  isolation: isolate;
}
.shifts[data-active="0"] { background: var(--ink-2); color: var(--paper); }
.shifts[data-active="1"] { background: var(--bone); color: var(--ink); }
.shifts[data-active="2"] { background: var(--amber); color: var(--ink); }

.shifts__sticky {
  position: sticky; top: 0;
  height: 100vh;
  overflow: hidden;
}
.shifts__sticky::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle 760px at 50% 35%, rgba(246,171,57,0.22), transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.9s var(--ease-soft);
}
.shifts[data-active="0"] .shifts__sticky::before { opacity: 1; }

/* Floating ambient amber dots in background */
.shifts__bg-dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--amber);
  opacity: 0.25;
  transition: opacity 0.6s, transform 0.9s var(--ease-soft);
}
.shifts[data-active="1"] .shifts__bg-dot,
.shifts[data-active="2"] .shifts__bg-dot { opacity: 0; }

.shifts__header {
  position: absolute;
  top: 88px; left: 56px;
  display: flex; align-items: baseline; gap: 28px;
  z-index: 5;
}
.shifts__eyebrow {
  font-size: 12px; letter-spacing: 0.18em;
  font-weight: 700; text-transform: uppercase;
  opacity: 0.55;
}
.shifts__counter {
  font-size: 12px; letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}
.shifts[data-active="1"] .shifts__counter,
.shifts[data-active="2"] .shifts__counter { color: var(--ink); opacity: 0.7; }

.shifts__center {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 0 56px;
  z-index: 3;
}
.shifts__stages {
  position: relative;
  width: 100%; max-width: 1100px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.shifts__stage {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  opacity: 0;
  transform: translateY(50px) scale(0.96);
  filter: blur(10px);
  transition: opacity 0.7s var(--ease-soft),
              transform 1s var(--ease-soft),
              filter 0.7s var(--ease-soft);
  pointer-events: none;
}
.shifts__stage.is-active {
  position: relative;
  opacity: 1;
  transform: none;
  filter: blur(0);
  pointer-events: auto;
}
.shifts__cluster {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  width: 100%;
}
.shifts__half { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.shifts__half--from { align-items: end; text-align: right; }
.shifts__half--to { align-items: start; text-align: left; }
.shifts__label {
  font-size: 12px; letter-spacing: 0.2em;
  font-weight: 700; text-transform: uppercase;
  opacity: 0.55;
}
.shifts__word {
  font-weight: 700;
  font-size: clamp(48px, 7.6vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.038em;
}
.shifts__word--from {
  position: relative;
  opacity: 0.35;
}
.shifts__word--from::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 52%;
  height: 3px;
  background: currentColor;
  opacity: 0.7;
  transform: scaleX(0); transform-origin: left;
  animation: shift-strike 0.7s var(--ease-soft) 0.5s forwards;
}
.shifts__stage.is-active .shifts__word--from::after {
  animation: shift-strike 0.7s var(--ease-soft) 0.3s forwards;
}
@keyframes shift-strike { to { transform: scaleX(1); } }

.shifts__word--to { color: var(--amber); }
.shifts[data-active="1"] .shifts__word--to { color: var(--amber-deep); }
.shifts[data-active="2"] .shifts__word--to { color: var(--ink); }

.shifts__arrow {
  display: grid; place-items: center;
  width: clamp(40px, 4.8vw, 72px); height: clamp(40px, 4.8vw, 72px);
  border-radius: 999px;
  background: var(--amber);
  color: var(--ink);
  transform: scale(0.4) rotate(-90deg);
  opacity: 0;
  transition: transform 0.7s var(--ease-soft) 0.2s, opacity 0.5s 0.2s;
  flex-shrink: 0;
}
.shifts__stage.is-active .shifts__arrow {
  transform: scale(1) rotate(0);
  opacity: 1;
}
.shifts[data-active="2"] .shifts__arrow { background: var(--ink); color: var(--amber); }

.shifts__body {
  margin: clamp(28px, 4vw, 48px) auto 0;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500;
  max-width: 56ch;
  opacity: 0.7;
}

/* Right rail of stage dots */
.shifts__rail {
  position: absolute;
  top: 50%; right: 56px;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 22px;
  z-index: 5;
}
.shifts__rail-dot {
  position: relative;
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  opacity: 0.32;
  transition: opacity 0.4s, transform 0.4s var(--ease-soft);
  cursor: pointer;
}
.shifts__rail-dot::after {
  content: "";
  position: absolute; inset: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scale(0);
  transition: transform 0.4s var(--ease-soft);
}
.shifts[data-active="0"] .shifts__rail-dot[data-i="0"],
.shifts[data-active="1"] .shifts__rail-dot[data-i="1"],
.shifts[data-active="2"] .shifts__rail-dot[data-i="2"] {
  opacity: 1; transform: scale(1.35);
}
.shifts[data-active="0"] .shifts__rail-dot[data-i="0"]::after,
.shifts[data-active="1"] .shifts__rail-dot[data-i="1"]::after,
.shifts[data-active="2"] .shifts__rail-dot[data-i="2"]::after {
  transform: scale(1);
}

.shifts__progress {
  position: absolute;
  bottom: 64px; left: 56px;
  display: flex; align-items: center; gap: 18px;
  z-index: 5;
}
.shifts__progress-line {
  width: clamp(180px, 28vw, 360px);
  height: 1px;
  background: currentColor;
  opacity: 0.25;
  position: relative;
}
.shifts__progress-fill {
  position: absolute; inset: 0;
  background: var(--amber);
  transform-origin: left;
  transform: scaleX(var(--shift-p, 0));
  transition: transform 0.3s linear, background 0.6s var(--ease-soft);
  opacity: 1;
}
.shifts[data-active="1"] .shifts__progress-fill,
.shifts[data-active="2"] .shifts__progress-fill { background: var(--ink); }

.shifts__progress-text {
  font-size: 12px; letter-spacing: 0.18em;
  font-weight: 700; text-transform: uppercase;
  opacity: 0.55;
}

@media (max-width: 760px) {
  .shifts { height: 320vh; }
  .shifts__header { top: 24px; left: 22px; flex-direction: column; gap: 6px; }
  .shifts__center { padding: 0 22px; }
  .shifts__cluster { grid-template-columns: 1fr; gap: 18px; }
  .shifts__half--from, .shifts__half--to { align-items: center; text-align: center; }
  .shifts__progress { left: 22px; bottom: 24px; }
  .shifts__rail { right: 22px; gap: 14px; }
}

/* ============================================================
              MANIFESTO — horizontal pinned scroll (About)
   4 panels slide in from the right as the user scrolls.
   Background color cycles through 4 stages with smooth transitions.
   ============================================================ */
.manifesto {
  position: relative;
  height: 460vh;
  background: var(--bone);
  color: var(--ink);
  transition: background 0.9s var(--ease-soft), color 0.9s var(--ease-soft);
}
.manifesto[data-i="0"] { background: var(--bone); color: var(--ink); }
.manifesto[data-i="1"] { background: var(--ink-2); color: var(--paper); }
.manifesto[data-i="2"] { background: var(--amber); color: var(--ink); }
.manifesto[data-i="3"] { background: var(--ink-3); color: var(--paper); }

.manifesto__sticky {
  position: sticky; top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex; flex-direction: column;
}

.manifesto__header {
  position: relative;
  padding: 56px 56px 0;
  display: flex; align-items: baseline; gap: 28px;
  z-index: 6;
}
.manifesto__eyebrow {
  font-size: 12px; letter-spacing: 0.18em;
  font-weight: 700; text-transform: uppercase;
  opacity: 0.55;
}
.manifesto__counter {
  font-size: 12px; letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}
.manifesto[data-i="2"] .manifesto__counter { color: var(--ink); opacity: 0.85; }
.manifesto[data-i="3"] .manifesto__counter { color: var(--amber); }

.manifesto__rail-wrap {
  flex: 1;
  position: relative;
}
.manifesto__rail {
  position: absolute; inset: 0;
  display: flex;
  width: 400%;
  will-change: transform;
  transition: transform 0.05s linear;
}
.manifesto__panel {
  width: 25%;
  flex-shrink: 0;
  position: relative;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.manifesto__ghost-num {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(180px, 28vw, 460px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: currentColor;
  opacity: 0.08;
  font-variant-numeric: tabular-nums;
  user-select: none;
  pointer-events: none;
}
.manifesto[data-i="2"] .manifesto__ghost-num { opacity: 0.18; color: var(--paper-2); }

.manifesto__content {
  position: relative;
  z-index: 2;
  max-width: 480px;
}
.manifesto__label {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.2em;
  font-weight: 700; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: currentColor;
  opacity: 0.7;
}
.manifesto__h {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  text-wrap: pretty;
}
.manifesto__body {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  opacity: 0.78;
  max-width: 42ch;
  margin: 0;
}

/* Decorative accent — different motif per panel */
.manifesto__accent {
  position: absolute;
  pointer-events: none;
}
.manifesto__accent--01 {
  right: 8%; bottom: 14%;
  width: 220px; height: 220px;
  color: var(--amber-deep);
}
.manifesto__accent--02 {
  right: 12%; top: 22%;
  width: 180px; height: 180px;
  color: var(--amber);
}
.manifesto__accent--03 {
  right: 6%; bottom: 18%;
  width: 240px; height: 240px;
  color: var(--ink);
}
.manifesto__accent--04 {
  right: 8%; top: 18%;
  width: 200px; height: 200px;
  color: var(--amber);
}
.manifesto__accent svg { width: 100%; height: 100%; display: block; }

/* Animated arc inside each accent */
.manifesto__accent-arc {
  fill: none;
  stroke: currentColor;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;
  transition: stroke-dashoffset 1.6s var(--ease-soft);
}
.manifesto__panel.is-active .manifesto__accent-arc {
  stroke-dashoffset: 0;
}

.manifesto__progress {
  position: absolute;
  bottom: 56px; left: 56px;
  display: flex; align-items: center; gap: 18px;
  z-index: 6;
}
.manifesto__progress-line {
  width: clamp(200px, 30vw, 400px);
  height: 1px;
  background: currentColor;
  opacity: 0.25;
  position: relative;
}
.manifesto__progress-fill {
  position: absolute; inset: 0;
  background: var(--amber);
  transform-origin: left;
  transform: scaleX(var(--m-p, 0));
  transition: transform 0.2s linear, background 0.6s var(--ease-soft);
}
.manifesto[data-i="1"] .manifesto__progress-fill,
.manifesto[data-i="3"] .manifesto__progress-fill { background: var(--amber); }
.manifesto[data-i="2"] .manifesto__progress-fill { background: var(--ink); }

.manifesto__progress-text {
  font-size: 12px; letter-spacing: 0.18em;
  font-weight: 700; text-transform: uppercase;
  opacity: 0.55;
}

.manifesto__rail-dots {
  position: absolute;
  bottom: 60px; right: 56px;
  display: flex; gap: 14px;
  z-index: 6;
}
.manifesto__rail-dot {
  width: 10px; height: 10px; border-radius: 999px;
  border: 1.5px solid currentColor;
  opacity: 0.32;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.4s, transform 0.4s var(--ease-soft);
  padding: 0;
}
.manifesto__rail-dot::after {
  content: "";
  position: absolute; inset: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scale(0);
  transition: transform 0.4s var(--ease-soft);
}
.manifesto__rail-dot { position: relative; }
.manifesto[data-i="0"] .manifesto__rail-dot[data-i="0"],
.manifesto[data-i="1"] .manifesto__rail-dot[data-i="1"],
.manifesto[data-i="2"] .manifesto__rail-dot[data-i="2"],
.manifesto[data-i="3"] .manifesto__rail-dot[data-i="3"] {
  opacity: 1; transform: scale(1.35);
}
.manifesto[data-i="0"] .manifesto__rail-dot[data-i="0"]::after,
.manifesto[data-i="1"] .manifesto__rail-dot[data-i="1"]::after,
.manifesto[data-i="2"] .manifesto__rail-dot[data-i="2"]::after,
.manifesto[data-i="3"] .manifesto__rail-dot[data-i="3"]::after {
  transform: scale(1);
}

@media (max-width: 1100px) {
  .manifesto__accent { opacity: 0.3; }
}
@media (max-width: 900px) {
  .manifesto__accent { display: none; }
}
@media (max-width: 760px) {
  .manifesto { height: 380vh; }
  .manifesto__header { padding: 24px 22px 0; flex-direction: column; gap: 6px; }
  .manifesto__panel { padding: 0 22px; grid-template-columns: 1fr; align-content: center; gap: 16px; }
  .manifesto__ghost-num { font-size: clamp(120px, 38vw, 220px); }
  .manifesto__progress { left: 22px; bottom: 24px; }
  .manifesto__rail-dots { right: 22px; bottom: 24px; }
}
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--line-d-2);
  border-bottom: 1px solid var(--line-d-2);
}
.ticker__track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: ticker-slide 36s linear infinite;
  will-change: transform;
}
.ticker__item {
  display: inline-flex; align-items: center; gap: 22px;
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 36px);
  letter-spacing: -0.015em;
  line-height: 1;
}
.ticker__item .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--amber);
  flex-shrink: 0;
}
.ticker--amber { background: var(--amber); color: var(--ink); }
.ticker--amber .dot { background: var(--ink); }
@keyframes ticker-slide { to { transform: translateX(-50%); } }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease-soft), transform 0.8s var(--ease-soft); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ---------- AUX ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
  align-items: start;
}
@media (max-width: 760px) { .split { grid-template-columns: 1fr; gap: 28px; } }

.imgcard {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(180deg, #BDDDF1 0%, #D6E8F0 55%, #E3EFEE 100%);
}
.imgcard svg { position: absolute; inset: 0; width: 100%; height: 100%; }
