@font-face {
  font-family: "Qurova";
  src: url("brand identity/Qurova-VF.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #f46034;
  --color-bg: #ffffff;
  --color-surface: #2c2c2c;
  --color-text: #2c2c2c;
  --color-muted: #b15544;
  --color-accent: #fdbd84;
  --color-cream: #fff6ef;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;
}

* { box-sizing: border-box; cursor: none; }
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 76px; /* nav height desktop */
}
body { margin: 0; padding: 0; }
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3, .hero-claim {
  font-family: "Qurova", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }

nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-5);
  background: rgba(15, 15, 15, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.nav-logo img { width: 44px; height: 44px; display: block; object-fit: contain; }
.nav-links a { color: rgba(255, 255, 255, 0.8); }
.nav-right { display: flex; align-items: center; gap: var(--space-4); }
.nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: var(--space-4);
  font-size: 0.95rem;
}
.nav-cta {
  background: var(--color-primary);
  color: #fff;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
}

section {
  padding: calc(var(--space-8) + 2rem) var(--space-5) var(--space-8);
}

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 160px 60px 220px;
  overflow: hidden;
  background: #1e1e1e;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("brand identity/background.webp") center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,33,33,0.2) 0%, rgba(28,33,33,0.6) 60%, #1e1e1e 100%);
  z-index: 0;
}

.topo-lines {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  overflow: hidden;
  z-index: 1;
}
.topo-lines svg { width: 100%; height: 100%; }
.topo-path {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: drawTopo 3s ease 0.8s forwards;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--space-5);
}

.hero-logo-wordmark {
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-logo-wordmark img,
.hero-brand {
  height: auto;
  width: clamp(300px, 62vw, 780px);
  max-width: 92%;
  display: block;
  margin: 0 auto;
  opacity: 0.62;
  mix-blend-mode: soft-light;
}

.hero-claim {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #EAEBDC;
  margin-top: 40px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.35s forwards;
}

.hero-tagline {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 var(--space-6);
}

#hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: #EAEBDC;
  letter-spacing: -0.015em;
  font-style: italic;
  margin: 0;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

h1 {
  margin: 0;
  font-size: clamp(2.1rem, 6vw, 4.8rem);
  line-height: 1.06;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(234, 235, 220, 0.4);
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards, scrollBounce 2s ease-in-out 2s infinite;
}
.scroll-arrow { font-size: 16px; color: rgba(234,235,220,0.3); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes drawTopo {
  to { stroke-dashoffset: 0; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-weight: 600;
}

.btn-primary { background: var(--color-primary); color: #fff; }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.28); color: #fff; }

.hero-visual img {
  width: min(100%, 510px);
  display: block;
  margin-left: auto;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-muted);
  margin-bottom: var(--space-3);
}

#manifesto {
  background: #fff;
  padding: var(--space-5) var(--space-5) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.manifesto-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  max-width: 1350px;
  margin: 0;
}

.manifesto-indent {
  display: inline-block;
  padding-left: 1.5ch;
}

#value {
  background: #fff;
  color: var(--color-text);
  position: relative;
  padding-top: 1.5rem;
}
#value > * { position: relative; z-index: 1; }

.value-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .value-video-bg { display: none; }
}

#value h2,
#how h2,
#etf h2,
#waitlist h2,
#faq h2 {
  margin: 0 0 var(--space-5);
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  line-height: 1.12;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: var(--space-4);
  row-gap: var(--space-3);
  align-items: stretch;
}

.value-card-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 246, 239, 0.45);
  margin: 0;
}

.value-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.5rem 0 0;
}

.value-card-text {
  flex: 0 0 auto;
  width: fit-content;
  max-width: calc(100% - 252px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.value-card-text h3 {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  margin: 0;
  font-size: clamp(1.1rem, 1.9vw, 1.75rem) !important;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
}

.value-card-body .value-jars {
  flex: 0 0 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
}
.value-card-body .value-jars img {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
}

.value-stats { margin-top: 0.5rem; }

.value-stat-primary {
  margin: 0 0 0.1rem;
  font-size: clamp(1.1rem, 1.9vw, 1.75rem);
  font-weight: 700;
  color: #fff;
}

.value-stat-result {
  margin: 0;
  font-size: clamp(1.1rem, 1.9vw, 1.75rem);
  font-weight: 700;
}

.value-marquee {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

#value-marquee-section {
  background: var(--color-surface);
  padding: 0;
}

.value-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  padding: 0.85rem 0;
  animation: value-marquee-move 20s linear infinite;
}

.value-marquee-group {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.value-marquee-group span {
  font-family: "Qurova", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.85rem);
  color: rgba(255, 246, 239, 0.92);
  letter-spacing: 0.01em;
  text-transform: none;
  margin-right: 3.5rem;
}

.value-card {
  background: #363636;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 24px 64px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  /* Fix iOS Safari overflow:hidden + border-radius + transform bug */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  isolation: isolate;
}

.value-card.highlight {
  background: #373737;
}


.value-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 var(--space-3);
  color: rgba(255, 246, 239, 0.5);
}
.value-card.highlight .value-card-tag { color: var(--color-accent); }

.value-stat {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-2);
}

.value-trend-icon {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
}

.value-counter {
  font-family: "Qurova", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}

.loss-color { color: #ff6b6b; }
.gain-color { color: #4ade80; }

.value-stat-label {
  font-size: 0.85rem;
  opacity: 0.6;
  align-self: flex-end;
  padding-bottom: 0.2em;
  white-space: nowrap;
}

.value-delta {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  margin-bottom: var(--space-4);
  letter-spacing: 0.03em;
}
.loss-delta { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.gain-delta { background: rgba(217,242,191,0.15); color: #d9f2bf; }

.value-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  font-family: "Qurova", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 246, 239, 0.3);
  border: 1px solid rgba(255, 246, 239, 0.15);
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}

.jars-wrapper {
  width: 100%;
  margin-bottom: var(--space-4);
}

.jars-labels {
  display: flex;
  justify-content: space-around;
  margin-bottom: 0.4rem;
}

.jars-labels span {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255, 246, 239, 0.5);
}

.value-jars {
  width: 100%;
  display: block;
}

.value-big {
  font-size: 1.2rem;
  font-weight: 700;
  margin: var(--space-4) 0 var(--space-2);
}

.value-disclaimer { font-size: 0.55rem; color: rgba(44, 44, 44, 0.45); margin: var(--space-1) 0 0; line-height: 1.4; }

@keyframes value-marquee-move {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .value-marquee-track { animation: none; }
}

#how {
  background: #111;
  padding: 0; /* section padding lives inside .how-pin */
  position: relative;
  /* Pin container: viewport height + scroll budget (200px per step × 3 steps) */
  height: calc(100vh + 600px);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
}

#how h2,
#how h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

/* Sticky content: always fills the viewport while the pin container scrolls */
.how-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* ── Two-column layout: phone left, text right ── */
.steps-sticky-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  gap: 0;
}

/* Right column: header + scroll steps */
.steps-right {
  display: flex;
  flex-direction: column;
  padding: calc(var(--space-8) + 2rem) var(--space-6) var(--space-5);
  position: relative;
}

.steps-right-header {
  flex-shrink: 0;
}

/* Step progress dots */
.how-steps-dots {
  display: flex;
  gap: 7px;
  margin: var(--space-4) 0 var(--space-5);
  flex-shrink: 0;
}
.how-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.35s ease, transform 0.35s ease;
}
.how-dot.active {
  background: var(--color-primary);
  transform: scale(1.35);
}

.steps-scroll {
  flex: 1;
  position: relative;
  min-height: 0;
}

.step-scroll-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.step-scroll-item.step-active {
  opacity: 1;
  pointer-events: auto;
}

.step-scroll-copy {
  max-width: 38ch;
}

.step-num {
  margin: 0 0 var(--space-3);
  font-family: "Qurova", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}

.step-scroll-copy h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0 0 var(--space-4);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
}

.step-scroll-copy p {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* Phone column — left side */
.steps-sticky-phone {
  overflow: hidden;
  display: grid;            /* inner grid for CSS stacking of phone screens */
  background: #fff;
  padding-top: 4rem;        /* compensate for fixed nav bar so phone centers in visible area */
}

/* ── Phone mockup ── */
.phone-mockup {
  /*
   * Width-driven sizing: phone is ~78% of the column width.
   * At 50vw column this makes it ~39vw wide → aspect-ratio gives ~84vw tall.
   * The extra height overflows top/bottom and gets clipped — exactly the Curvo effect.
   */
  width: 78%;
  height: auto;
  aspect-ratio: 9 / 19.5;
  background: #1c1c1e;
  border-radius: 40px;
  border: 5px solid #2e2e30;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.07) inset;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* Dynamic island */
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 22px;
  background: #1c1c1e;
  border-radius: 12px;
  z-index: 2;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.phone-screen {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.phone-screen[data-screen="1"] {
  background: linear-gradient(160deg, var(--color-cream) 0%, rgba(253, 189, 132, 0.35) 100%);
}
.phone-screen[data-screen="2"] {
  background: linear-gradient(160deg, #eef4f0 0%, rgba(150, 200, 170, 0.35) 100%);
}
.phone-screen[data-screen="3"] {
  background: linear-gradient(160deg, #eef0f8 0%, rgba(150, 160, 220, 0.35) 100%);
}

.phone-screen--active {
  opacity: 1;
}

.phone-screen-placeholder {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(44, 44, 44, 0.28);
  text-align: center;
  line-height: 1.6;
}

.steps-sticky-phone .phone-screen {
  /*
   * CSS grid stacking: all screens share grid-area 1/1.
   * Override position:absolute + inset:0 from base class so padding on the
   * column container is respected and the phone centers in the visible area.
   */
  grid-area: 1 / 1;
  position: relative;
  inset: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  overflow: hidden;
}

.steps-sticky-phone .phone-screen--active {
  opacity: 1;
}

.steps-sticky-phone .phone-screen img {
  /*
   * height:100% fills the grid cell (100vh - 4rem nav padding).
   * The SVG phone occupies 82.3% of SVG height so it's fully visible
   * with natural top/bottom breathing room. Horizontally centered by flex
   * (phone is at x=50% of SVG canvas). Left/right canvas clipped by overflow.
   */
  height: 100%;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.step-mobile-img { display: none; }
.step-phone-card { display: none; }

.text-orange { color: var(--color-primary); }

#etf { background: #fff; }

/* Two-column layout: paragraphs left, cards right — centered vertically */
.etf-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

/* Left column: paragraphs */
.etf-left {
  display: flex;
  flex-direction: column;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  padding-left: clamp(1.5rem, 4vw, 4rem);
}

.etf-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(5.5rem, 8.5vw, 10rem);
  line-height: 1.05;
  margin: 0 0 var(--space-6);
  padding-left: clamp(1.5rem, 4vw, 4rem);
}

.etf-left p {
  margin: 0 0 var(--space-2);
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  font-weight: 400;
  line-height: 1.6;
}

.etf-left p:last-child { margin-bottom: 0; }

/* Right column: 3 cards stacked vertically */
.etf-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.etf-card {
  background: #fffaf6;
  border: 1px solid rgba(177, 85, 68, 0.2);
  border-radius: 14px;
  padding: 1.1rem 1.8rem;
}

.etf-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  font-weight: 700;
  margin: 0 0 0.45rem;
}

.etf-card p {
  margin: 0;
  font-size: clamp(0.88rem, 1.05vw, 0.98rem);
  line-height: 1.5;
}

#waitlist {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 5rem;
  scroll-margin-top: 0;
}

.waitlist-banner {
  margin: 0 calc(-1 * var(--space-5)) 4rem;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.65rem 0;
}

.waitlist-banner-track {
  display: inline-flex;
  animation: banner-scroll 24s linear infinite;
}

.waitlist-banner-track span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

@keyframes banner-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

#waitlist::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("brand identity/background.webp") center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

#waitlist > * { position: relative; z-index: 1; }

#waitlist h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #fff;
  margin: 0 0 var(--space-4);
}

.waitlist-coming {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin: 0 0 var(--space-3);
}

.waitlist-subtitle {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin: 0 0 var(--space-6);
}

.waitlist-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.waitlist-form-wrap {
  font-family: "Plus Jakarta Sans", sans-serif;
  width: 100%;
  max-width: 480px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0.6rem;
}

.waitlist-consents {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.waitlist-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  cursor: pointer;
}

.waitlist-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  padding: 0 !important;
  margin-top: 2px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 3px !important;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.waitlist-consent input[type="checkbox"]:checked {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.9);
}

.waitlist-consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 7px;
  border: 1.5px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.waitlist-consent span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.waitlist-consent a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

.waitlist-form-row {
  display: flex;
  gap: var(--space-2);
}

.consent-error {
  display: none;
  font-size: 0.72rem;
  color: #ffddcc;
  margin: 0.3rem 0 0;
  font-weight: 600;
}
.consent-error.visible { display: block; }

.waitlist-form input,
.waitlist-form button {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.85rem 1.2rem;
  font: inherit;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.waitlist-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.waitlist-form input::placeholder { color: rgba(255, 255, 255, 0.6); }
.waitlist-form button {
  background: #1e1e1e;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.waitlist-spam {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.waitlist-counter {
  text-align: center;
  min-width: 180px;
}


.waitlist-position-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.03em;
}

.waitlist-position-label {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin: 0.5rem 0 0;
}

.waitlist-pledge {
  text-align: center;
}

.waitlist-pledge p {
  margin: 0;
  font-size: clamp(0.68rem, 0.9vw, 0.78rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

#report {
  background: #111;
  color: #fff;
}

.report-inner {
  max-width: 900px;
  margin: 0 auto;
}

.report-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 var(--space-5);
}

.report-body {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  margin: 0 0 var(--space-7);
  font-weight: 400;
}

.report-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-5);
}

.report-cta-text {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  margin: 0;
  font-weight: 400;
}

.report-btn {
  justify-self: start;
  white-space: nowrap;
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

#faq { background: #fff; color: var(--color-text); }
.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-6);
}
.faq-sticky { position: sticky; top: 100px; height: fit-content; }
.faq-sticky h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
}
.faq-sticky p {
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  line-height: 1.5;
}
.faq-list { display: grid; gap: var(--space-2); }
.faq-item {
  border: 1px solid rgba(44, 44, 44, 0.15);
  border-radius: 14px;
  padding: 0 var(--space-3);
}
.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
}
.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid rgba(44, 44, 44, 0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  font-size: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: currentColor;
  border-radius: 1px;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-size: 0.96rem;
  color: rgba(44, 44, 44, 0.7);
}
.faq-item.open .faq-answer { max-height: 240px; padding-bottom: var(--space-3); }
.faq-item.open .faq-icon { transform: rotate(45deg); }

footer {
  background: #1e1e1e;
  color: #f4f4f4;
  padding: var(--space-6) var(--space-5);
  text-align: center;
}
.footer-logo {
  width: 130px;
  display: block;
  margin: 0 auto var(--space-3);
}
.footer-contact {
  margin: 0 auto var(--space-5);
}
.footer-contact-q {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin: 0 0 0.3rem;
}
.footer-contact-mail {
  font-size: 0.95rem;
  margin: 0 0 var(--space-4);
  color: rgba(255,255,255,0.7);
}
.footer-contact-mail a {
  color: var(--color-primary);
  text-decoration: underline;
}
.footer-contact-social {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0 0.6rem;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-social a:hover { color: #fff; }

.footer-disclaimer {
  max-width: 680px;
  margin: var(--space-3) auto var(--space-2);
  font-size: 0.65rem;
  line-height: 1.6;
  opacity: 0.5;
}
.footer-copy { margin: var(--space-3) 0 0; opacity: 0.5; font-size: 0.78rem; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  opacity: 0.85;
}

#cursor,
#cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
}

#cursor {
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  transition: width .2s, height .2s, background .2s;
}

#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(244, 96, 52, 0.45);
  transition: width .2s, height .2s, border-color .2s;
}

body.cursor-black #cursor { background: #111; }
body.cursor-black #cursor-ring { border-color: rgba(0, 0, 0, 0.45); }

#toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #121212;
  color: #fff;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
  z-index: 210;
}
#toast.show { opacity: 1; transform: translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* ─── Signup modal ──────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: var(--space-5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-card {
  background: #474747;
  border-radius: 20px;
  padding: 2.5rem 3rem;
  max-width: 900px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  transform: translateY(14px);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-card {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
}
.modal-close:hover { color: #fff; }

.modal-greeting {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.3rem;
  letter-spacing: -0.02em;
}
.modal-added {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin: 0 0 0.5rem;
}
.modal-email-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}
.modal-email-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.modal-not-you {
  color: var(--color-primary);
  text-decoration: none;
}
.modal-not-you:hover { text-decoration: underline; }
.modal-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #4caf50;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.modal-invite-q {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}
.modal-invite-cta {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: #fff;
  margin: 0 0 var(--space-4);
  line-height: 1.4;
}
.modal-code-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(244, 96, 52, 0.35);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  margin-bottom: 0.75rem;
  max-width: 420px;
}
.modal-code-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.modal-code-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.12em;
  font-family: monospace;
}

.modal-share {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 420px;
}
.modal-share-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  width: 100%;
  outline: none;
}
.modal-share-btn {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: opacity 0.2s;
}
.modal-share-btn:hover { opacity: 0.88; }
.modal-right {
  text-align: center;
  min-width: 180px;
}
.modal-pos-num {
  font-family: "Qurova", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(4.5rem, 9vw, 7.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.modal-pos-label {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  #hero,
  .etf-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .value-grid { grid-template-columns: 1fr; grid-template-rows: auto auto auto auto; }
  .value-card-body {
    flex-direction: column;
    align-items: center;
  }
  .value-card-text {
    max-width: 100%;
    width: 100%;
  }
  .value-card-body .value-jars {
    flex: 0 0 auto;
    width: 100%;
    height: 360px;
    margin-top: var(--space-3);
  }

  .value-vs {
    width: 100%;
    height: auto;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(255, 246, 239, 0.12);
    padding: var(--space-2) 0;
  }

  .hero-visual img { margin: 0 auto; }
}

@media (max-width: 760px) {
  /* ── Section headings ── */
  #how h2, #etf h2 { font-size: clamp(2.4rem, 8vw, 3rem); }

  /* ── Navigation ── */
  html { scroll-padding-top: 66px; }
  nav { padding: var(--space-3); justify-content: space-between; }
  .nav-logo img { width: 34px; height: 34px; }
  .nav-cta { display: none; }
  .nav-right { gap: var(--space-3); }
  .nav-links { display: flex; gap: var(--space-4); }
  #cursor, #cursor-ring { display: none; }
  * { cursor: auto; }

  /* ── Section spacing ── */
  section { padding: calc(var(--space-8) + 1rem) var(--space-3) var(--space-6); }

  /* ── Hero ── */
  #hero {
    min-height: 100svh;
    padding: 120px var(--space-4) var(--space-7);
  }
  .hero-content { padding: 0; }
  .hero-brand { height: 56px; width: auto; max-width: 88%; }

  /* ── Manifesto ── */
  #manifesto { padding: var(--space-7) var(--space-3); }
  .manifesto-indent { padding-left: 0; }
  .manifesto-text br { display: none; }

  /* ── Value cards ── */
  .value-card { padding: var(--space-4) var(--space-3); }
  .value-card-text h3 br { display: none; }

  /* ── Come funziona ── */
  #how {
    height: auto;
    padding: calc(var(--space-8) + 1rem) var(--space-3) var(--space-7);
  }
  .how-pin {
    position: relative;
    height: auto;
    overflow: visible;
  }
  .how-steps-dots { display: none; }
  .steps-sticky-wrapper { grid-template-columns: 1fr; height: auto; }
  .steps-sticky-phone { display: none; }
  .steps-right { padding: var(--space-4) var(--space-3) var(--space-6); }
  .steps-scroll { flex: none; height: auto; min-height: 0; }
  .step-scroll-item {
    position: relative;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    display: block;
    padding: var(--space-4) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .step-scroll-item:last-child { border-bottom: none; }
  .step-scroll-copy { max-width: none; }
  .step-scroll-copy p br:not(.keep) { display: none; }
  .step-phone-card {
    display: block;
    background: #faf8f4;
    margin: var(--space-5) calc(-1 * var(--space-3)) 0;
    border-radius: 20px 20px 0 0;
    padding: 2rem 1.5rem 2rem;
    overflow: hidden;
  }
  .step-mobile-img {
    display: block;
    width: 82%;
    margin: 0 auto;
  }

  /* ── ETF ── */
  .etf-title { padding-left: 0; }
  .etf-left { padding-left: 0; }
  .etf-title br { display: none; }
  .etf-left p br { display: none; }

  /* ── Waitlist ── */
  .waitlist-form-row { flex-direction: column; }
  .waitlist-form-row button { width: 100%; }
  .waitlist-pledge p br { display: none; }

  /* ── Report ── */
  .report-body br { display: none; }
  .report-bottom { grid-template-columns: 1fr; }
  .report-btn { justify-self: stretch; width: 100%; text-align: center; }
  .report-cta-text br { display: none; }

  /* ── FAQ ── */
  .faq-sticky { position: relative; top: auto; margin-bottom: var(--space-4); }
  .faq-layout { gap: var(--space-4); }
  .faq-item.open .faq-answer { max-height: 600px; }

  /* ── Modal ── */
  .modal-card {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  .modal-right { min-width: 0; }

  /* ── Footer ── */
  footer { padding: var(--space-5) var(--space-3); }
}
