:root {
  --ivory: #f3efe5;
  --paper: #faf8f2;
  --ink: #171713;
  --muted: #6e6a60;
  --gold: #b79352;
  --gold-light: #d7c293;
  --line: rgba(23, 23, 19, 0.14);
  --charcoal: #1c1c19;
  --section-space: 120px;
  --content-space: 64px;
  --layout-gap: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  animation: navEnter .75s cubic-bezier(.22,1,.36,1) both;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -.08em;
}
.brand-name { font-size: 12px; font-weight: 700; letter-spacing: .18em; }
nav { display: flex; align-items: center; gap: 32px; font-size: 12px; font-weight: 600; }
nav a { transition: opacity .25s ease; }
nav a:hover { opacity: .55; }
.nav-cta { border-bottom: 1px solid var(--ink); padding-bottom: 3px; display: inline-flex; align-items: center; gap: 7px; }
.inline-icon { width: 14px; height: 14px; fill: currentColor; flex: 0 0 auto; }

.hero {
  min-height: min(calc(100svh - 88px), 900px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 72px;
  align-items: center;
  padding-block: 76px 88px;
  position: relative;
  isolation: isolate;
}
.hero > *:not(.hero-orbit) { position: relative; z-index: 1; }
.hero-orbit { position: absolute; z-index: 0; border: 1px solid rgba(183,147,82,.18); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 360px; height: 360px; right: 20%; top: 4%; animation: orbitDrift 12s ease-in-out infinite; }
.orbit-two { width: 160px; height: 160px; right: 2%; bottom: 8%; border-style: dashed; animation: orbitSpin 18s linear infinite; }
.eyebrow, .kicker {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .16em;
  font-weight: 500;
}
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--muted); }
.eyebrow span { width: 28px; height: 1px; background: var(--gold); }
h1, h2 { margin: 0; font-family: "Playfair Display", serif; font-weight: 600; letter-spacing: -.045em; }
h1 { font-size: clamp(54px, 6.25vw, 94px); line-height: .95; margin-top: 28px; }
h1 em, h2 em { color: var(--gold); font-weight: 600; }
.hero-lede { max-width: 560px; margin: 30px 0 0; font-size: 17px; line-height: 1.8; color: var(--muted); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  border: 0;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.22,1,.36,1), background .35s ease, box-shadow .35s ease;
}
.button::before, .tempo-admin-button::before, .plan-admin-button::before, .resource-button::before {
  content: "";
  position: absolute;
  inset: -2px auto -2px -45%;
  width: 32%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-18deg) translateX(-220%);
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.button:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(23,23,19,.12); }
.button:hover::before, .tempo-admin-button:hover::before, .plan-admin-button:not(:disabled):hover::before, .resource-button:hover::before { transform: skewX(-18deg) translateX(620%); }
.button.primary { background: var(--ink); color: white; }
.button.primary:hover { background: var(--gold); }
.button-icon { width: 19px; height: 19px; fill: currentColor; flex: 0 0 auto; }
.text-link { font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--line); padding-block: 9px; display: inline-flex; align-items: center; gap: 8px; }
.chevron-icon { width: 15px; height: 15px; fill: none; stroke: var(--gold); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.microcopy { margin-top: 16px; color: #8a8579; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.market-card {
  background: var(--paper);
  border: 1px solid rgba(183,147,82,.35);
  box-shadow: 0 32px 90px rgba(48, 42, 26, .11);
  padding: 26px;
  position: relative;
}
.market-card.visible { animation: floatCard 6s 1s ease-in-out infinite; }
.tempo-check-card.visible { animation: none; }
.market-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(183,147,82,.12);
  pointer-events: none;
}
.market-topline, .price-row, .market-note { position: relative; z-index: 1; }
.market-topline { display: flex; align-items: flex-start; justify-content: space-between; }
.market-topline > div { display: grid; gap: 5px; }
.market-label, .price-row small { font-family: "DM Mono", monospace; color: var(--muted); font-size: 9px; letter-spacing: .16em; }
.market-topline strong { font-family: "DM Mono", monospace; font-size: 19px; letter-spacing: -.04em; }
.live-pill { font-family: "DM Mono", monospace; font-size: 9px; letter-spacing: .12em; display: flex; align-items: center; gap: 8px; }
.live-pill i { width: 6px; height: 6px; background: var(--gold); border-radius: 100%; box-shadow: 0 0 0 5px rgba(183,147,82,.14); animation: pulse 2s infinite; }
.demo-pill { color: var(--muted); }
.price-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; border-block: 1px solid var(--line); margin-top: 24px; padding-block: 17px; }
.price-row > div { display: grid; gap: 6px; }
.price-row > div + div { border-left: 1px solid var(--line); padding-left: 14px; }
.price-row strong { font-family: "DM Mono", monospace; font-size: 11px; }
.chart { position: relative; height: 260px; margin: 15px 0 0; overflow: hidden; }
.chart svg { width: 100%; height: 100%; overflow: visible; }
.grid-line { fill: none; stroke: var(--line); stroke-width: 1; }
.area { fill: url(#goldWash); }
.story-line { fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: draw 3s .35s ease forwards; }
.chart circle { fill: var(--gold); animation: pulseDot 2s infinite; }
.candle { opacity: 0; animation: candleAppear .55s ease forwards; animation-delay: calc(var(--i) * .11s + .35s); }
.candle line { stroke-width: 2; }
.candle rect { stroke-width: 1; }
.candle.up line, .candle.up rect { stroke: var(--gold); fill: rgba(183,147,82,.14); }
.candle.down line, .candle.down rect { stroke: var(--ink); fill: rgba(23,23,19,.68); }
.level { position: absolute; left: 0; right: 0; border-top: 1px dashed rgba(23,23,19,.2); padding-top: 4px; font-family: "DM Mono", monospace; font-size: 8px; color: var(--muted); letter-spacing: .12em; }
.level-one { top: 30%; }
.level-two { top: 68%; }
.market-note { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 17px; }
.market-note p { margin: 0; font-size: 11px; color: var(--muted); }
.market-note strong { color: var(--ink); }
.note-index { display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid var(--gold-light); font-family: "DM Mono", monospace; font-size: 9px; }
.tempo-check-card { min-height: 610px; display: flex; flex-direction: column; }
.tempo-progress { color: var(--gold); font: 500 9px/1 "DM Mono", monospace; letter-spacing: .12em; }
.tempo-meter { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-top: 22px; position: relative; z-index: 1; }
.tempo-meter i { height: 2px; background: rgba(23,23,19,.12); transition: background .25s ease; }
.tempo-meter i.active { background: var(--gold); animation: meterFill .45s cubic-bezier(.22,1,.36,1) both; transform-origin: left; }
.tempo-question-wrap { position: relative; z-index: 1; padding-block: 45px 30px; }
.tempo-question-wrap.step-enter { animation: stepIn .48s cubic-bezier(.22,1,.36,1) both; }
.tempo-question-kicker { display: block; color: var(--muted); font: 500 9px/1 "DM Mono", monospace; letter-spacing: .14em; }
.tempo-question-wrap h2 { max-width: 450px; margin-top: 17px; font-size: clamp(31px, 3.4vw, 44px); line-height: 1.06; }
.tempo-question-wrap > p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 16px 0 24px; }
.tempo-options { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.tempo-options button { min-height: 54px; border: 1px solid var(--line); background: transparent; color: var(--ink); padding: 12px 14px; text-align: left; cursor: pointer; font-size: 14px; font-weight: 700; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.tempo-options button:hover, .tempo-options button.selected { background: var(--ink); color: white; border-color: var(--ink); transform: translateY(-2px); }
.tempo-navigation { margin-top: auto; min-height: 39px; position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid var(--line); }
.tempo-navigation button { border: 0; background: transparent; padding: 0; color: var(--ink); cursor: pointer; font-size: 10px; font-weight: 700; }
.tempo-navigation button:disabled { opacity: .3; cursor: default; }
.tempo-navigation span { color: var(--muted); font: 400 8px/1.4 "DM Mono", monospace; letter-spacing: .04em; }
.tempo-result { position: relative; z-index: 1; padding-block: 36px 25px; }
.tempo-result.result-enter { animation: resultIn .58s cubic-bezier(.22,1,.36,1) both; }
.tempo-result[hidden], .tempo-question-wrap[hidden], .tempo-navigation[hidden] { display: none; }
.tempo-verdict { margin-top: 16px; padding: 13px 15px; border-left: 3px solid var(--gold); background: rgba(183,147,82,.09); font: 600 13px/1.35 "DM Mono", monospace; letter-spacing: .05em; }
.tempo-verdict.buy { border-color: #438b61; background: rgba(67,139,97,.09); }
.tempo-verdict.sell { border-color: #b85f59; background: rgba(184,95,89,.09); }
.tempo-result > p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 16px 0; }
.tempo-recap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0 0 18px; border: 1px solid var(--line); }
.tempo-recap div { min-height: 42px; padding: 9px 11px; display: grid; grid-template-columns: 18px 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.tempo-recap div:nth-child(odd) { border-right: 1px solid var(--line); }
.tempo-recap div:nth-last-child(-n+2) { border-bottom: 0; }
.tempo-recap dt { color: var(--gold); font: 500 9px/1 "DM Mono", monospace; }
.tempo-recap dd { margin: 0; font-size: 9px; font-weight: 700; }
.tempo-admin-button { width: 100%; min-height: 52px; border: 0; background: var(--ink); color: white; padding: 0 16px; display: flex; align-items: center; justify-content: center; gap: 11px; cursor: pointer; font-size: 13px; font-weight: 700; position: relative; overflow: hidden; isolation: isolate; transition: background .3s ease, transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease; }
.tempo-admin-button:hover { background: var(--gold); transform: translateY(-2px); }
.tempo-restart { border: 0; border-bottom: 1px solid var(--line); background: transparent; padding: 8px 0 4px; margin-top: 8px; cursor: pointer; font-size: 9px; font-weight: 700; }
.tempo-result > small { display: block; color: var(--muted); font-size: 8px; line-height: 1.4; margin-top: 9px; }
.live-countdown { position: relative; z-index: 1; min-height: 63px; margin-top: 10px; padding: 13px 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 5px 18px; }
.live-countdown > span { display: flex; align-items: center; gap: 8px; color: var(--muted); font: 500 8px/1 "DM Mono", monospace; letter-spacing: .11em; }
.live-countdown > span i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(183,147,82,.12); animation: pulse 2s infinite; }
.live-countdown strong { font-size: 11px; }
.live-countdown em { grid-column: 2; grid-row: 1 / span 2; color: var(--gold); font: 500 20px/1 "DM Mono", monospace; font-style: normal; letter-spacing: -.04em; }

.market-board { padding-block: var(--section-space); }
.market-heading { display: grid; grid-template-columns: 1fr .8fr; gap: var(--layout-gap); align-items: end; }
.market-heading-copy { padding-bottom: 7px; }
.market-heading-copy p { margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.market-heading-copy a { display: inline-flex; gap: 9px; align-items: center; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 11px; font-weight: 700; }
.tv-badge { width: 25px; height: 18px; border: 1px solid var(--ink); border-radius: 4px; display: inline-grid; place-items: center; color: var(--ink); font: 700 8px/1 "DM Mono", monospace; letter-spacing: -.05em; }
.tv-badge.small { width: 21px; height: 15px; border-color: var(--muted); color: var(--muted); font-size: 7px; }
.market-widget { margin-top: var(--content-space); border: 1px solid var(--line); background: rgba(250,248,242,.66); padding: 18px; box-shadow: 0 24px 70px rgba(48,42,26,.07); }
.widget-topline { min-height: 42px; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); font: 500 8px/1.4 "DM Mono", monospace; letter-spacing: .12em; color: var(--muted); }
.widget-topline span:first-child { display: flex; align-items: center; gap: 8px; color: var(--ink); }
.widget-topline i { width: 5px; height: 5px; border-radius: 50%; background: #64a47c; box-shadow: 0 0 0 5px rgba(100,164,124,.1); animation: statusPulse 2s infinite; }
.pair-selector { display: grid; grid-template-columns: repeat(8,1fr); gap: 8px; padding-block: 15px; }
.pair-button { min-height: 54px; border: 1px solid var(--line); background: transparent; color: var(--ink); padding: 10px 13px; cursor: pointer; display: flex; align-items: baseline; justify-content: center; gap: 5px; transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease; }
.pair-button:hover { border-color: var(--gold); transform: translateY(-2px); }
.pair-button b { font: 600 11px/1 "DM Mono", monospace; letter-spacing: .06em; }
.pair-button span { color: var(--muted); font: 400 8px/1 "DM Mono", monospace; }
.pair-button.active { background: var(--ink); border-color: var(--ink); color: white; }
.pair-button.pair-selected { animation: pairSelect .42s cubic-bezier(.22,1,.36,1); }
.pair-button.active span { color: var(--gold-light); }
.cc-chart-shell { height: 680px; width: 100%; position: relative; }
.tradingview-widget-container { height: 100%; width: 100%; position: relative; overflow: hidden; border: 1px solid rgba(23,23,19,.08); background: var(--paper); }
.tradingview-widget-container__widget { height: 100%; width: 100%; }
#ccTradingView iframe { width: 100% !important; height: 100% !important; min-height: 100% !important; }
.chart-loader { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 11px; background: var(--paper); color: var(--muted); font: 500 8px/1 "DM Mono", monospace; letter-spacing: .12em; animation: chartFadeIn .28s ease both; transition: opacity .5s ease, visibility .5s ease; }
.chart-loader.hidden { opacity: 0; visibility: hidden; }
.chart-loader span { width: 13px; height: 13px; border: 1px solid rgba(183,147,82,.35); border-top-color: var(--gold); border-radius: 50%; animation: orbitSpin .8s linear infinite; }
.market-widget-footer { min-height: 34px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.market-widget-footer a { color: var(--muted); font: 400 8px/1.5 "DM Mono", monospace; letter-spacing: .06em; display: inline-flex; align-items: center; gap: 7px; }
.market-disclaimer { margin: 13px 0 0; color: #8a8579; font: 400 8px/1.5 "DM Mono", monospace; letter-spacing: .06em; }

.plan-checker { padding-bottom: var(--section-space); }
.plan-heading { display: grid; grid-template-columns: 1fr .8fr; gap: var(--layout-gap); align-items: end; margin-bottom: var(--content-space); }
.plan-heading > p { max-width: 520px; margin: 0 0 7px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.plan-workbench { display: grid; grid-template-columns: 1.06fr .94fr; background: var(--charcoal); color: var(--ivory); box-shadow: 0 34px 90px rgba(48,42,26,.13); }
.plan-form { padding: 42px; }
.plan-form-topline { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.12); font: 500 12px/1.4 "DM Mono", monospace; letter-spacing: .12em; }
.plan-form-topline small { color: var(--gold-light); font-size: 11px; }
.plan-field-row { display: grid; gap: 12px; margin-top: 22px; }
.plan-field-row.two-column { grid-template-columns: 1fr 1fr; }
.plan-field-row.three-column { grid-template-columns: repeat(3, 1fr); }
.plan-field, .plan-direction { min-width: 0; margin: 0; padding: 0; border: 0; }
.plan-field > span, .plan-direction legend { display: block; margin-bottom: 9px; color: rgba(243,239,229,.58); font: 500 12px/1 "DM Mono", monospace; letter-spacing: .1em; }
.plan-field input, .plan-field select { width: 100%; min-height: 54px; border: 1px solid rgba(255,255,255,.16); border-radius: 0; outline: none; background: rgba(255,255,255,.035); color: var(--ivory); padding: 0 14px; font: 500 16px/1 "DM Mono", monospace; transition: border-color .2s ease, background .2s ease; }
.plan-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold-light) 50%), linear-gradient(135deg, var(--gold-light) 50%, transparent 50%); background-position: calc(100% - 17px) 23px, calc(100% - 12px) 23px; background-size: 5px 5px; background-repeat: no-repeat; }
.plan-field select option { color: var(--ink); background: white; }
.plan-field input::placeholder { color: rgba(243,239,229,.28); }
.plan-field input:focus, .plan-field select:focus { border-color: var(--gold-light); background-color: rgba(255,255,255,.065); }
.plan-direction > div { display: grid; grid-template-columns: 1fr 1fr; }
.plan-direction button { min-height: 54px; border: 1px solid rgba(255,255,255,.16); background: transparent; color: rgba(243,239,229,.6); cursor: pointer; font: 600 14px/1 "DM Mono", monospace; transition: color .28s ease, background .28s ease, border-color .28s ease, transform .28s cubic-bezier(.22,1,.36,1); }
.plan-direction button + button { border-left: 0; }
.plan-direction button.active { background: var(--gold-light); border-color: var(--gold-light); color: var(--ink); }
.plan-form-note { margin: 24px 0 0; color: rgba(243,239,229,.42); font-size: 12px; line-height: 1.65; }
.plan-output { margin: 12px; padding: 32px; background: var(--paper); color: var(--ink); display: flex; flex-direction: column; transition: box-shadow .35s ease, transform .35s cubic-bezier(.22,1,.36,1); }
.plan-output.plan-updated { animation: planUpdate .55s cubic-bezier(.22,1,.36,1); }
.plan-output.plan-updated .plan-rr strong, .plan-output.plan-updated .plan-metrics strong { animation: valueRise .5s cubic-bezier(.22,1,.36,1) both; }
.plan-status-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); font: 500 12px/1.4 "DM Mono", monospace; letter-spacing: .08em; }
.plan-status-row > span { color: var(--muted); }
.plan-status-row b { padding: 8px 10px; border: 1px solid var(--line); font-size: 11px; }
.plan-status-row b.valid { color: #34704b; border-color: rgba(52,112,75,.35); background: rgba(52,112,75,.08); }
.plan-status-row b.warning { color: #8a6729; border-color: rgba(138,103,41,.35); background: rgba(183,147,82,.1); }
.plan-status-row b.invalid { color: #a04842; border-color: rgba(160,72,66,.35); background: rgba(160,72,66,.08); }
.plan-rr { padding-block: 35px; }
.plan-rr small { display: block; color: var(--muted); font: 500 12px/1 "DM Mono", monospace; letter-spacing: .12em; }
.plan-rr strong { display: block; margin-top: 10px; color: var(--gold); font: 600 clamp(52px, 6vw, 78px)/1 "Playfair Display", serif; letter-spacing: -.06em; }
.plan-metrics { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.plan-metrics > div { min-width: 0; min-height: 87px; padding: 17px 10px; display: flex; flex-direction: column; justify-content: space-between; gap: 12px; }
.plan-metrics > div + div { border-left: 1px solid var(--line); }
.plan-metrics span { color: var(--muted); font: 500 11px/1.35 "DM Mono", monospace; letter-spacing: .06em; }
.plan-metrics strong { overflow-wrap: anywhere; font: 600 14px/1.3 "DM Mono", monospace; }
.plan-output > p { min-height: 52px; margin: 21px 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.plan-admin-button { width: 100%; min-height: 56px; margin-top: auto; border: 0; background: var(--ink); color: white; padding: 0 18px; display: flex; justify-content: center; align-items: center; gap: 11px; cursor: pointer; font-size: 14px; font-weight: 700; position: relative; overflow: hidden; isolation: isolate; transition: background .3s ease, transform .3s cubic-bezier(.22,1,.36,1), opacity .2s ease, box-shadow .3s ease; }
.plan-admin-button:not(:disabled):hover { background: var(--gold); transform: translateY(-2px); }
.plan-admin-button:disabled { opacity: .28; cursor: not-allowed; }
.plan-output > small { display: block; margin-top: 12px; color: var(--muted); font-size: 12px; line-height: 1.55; }

.products { background: var(--charcoal); color: var(--ivory); padding-block: 0 var(--section-space); position: relative; overflow: hidden; }
.products::after { content: ""; position: absolute; width: 520px; height: 520px; right: -260px; top: 16%; background: radial-gradient(circle, rgba(183,147,82,.12), transparent 68%); pointer-events: none; animation: glowDrift 10s ease-in-out infinite; }
.motion-rail { border-block: 1px solid rgba(255,255,255,.1); overflow: hidden; margin-bottom: var(--section-space); }
.motion-rail > div { width: max-content; min-height: 46px; display: flex; align-items: center; gap: 30px; color: rgba(243,239,229,.34); font: 500 8px/1 "DM Mono", monospace; letter-spacing: .18em; animation: tickerMove 24s linear infinite; }
.motion-rail i { color: var(--gold-light); font-size: 7px; font-style: normal; }
.section-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.kicker { display: block; color: var(--gold-light); margin-bottom: 22px; }
.kicker.dark { color: #76613b; }
h2 { font-size: clamp(40px, 5vw, 68px); line-height: 1.03; }
.section-intro > p { color: rgba(243,239,229,.61); line-height: 1.8; max-width: 490px; margin: 0 0 6px; font-size: 15px; }
.products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: var(--content-space); }
.product-card { min-height: 560px; padding: 34px; border: 1px solid rgba(255,255,255,.14); background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); display: flex; flex-direction: column; transition: border-color .3s ease, transform .25s ease; transform-style: preserve-3d; will-change: transform; }
.product-card:hover { border-color: rgba(215,194,147,.6); transform: translateY(-4px); }
.product-topline { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 54px; }
.product-number { color: var(--gold-light); font: 600 42px/1 "Playfair Display", serif; }
.product-tag { border: 1px solid rgba(215,194,147,.35); color: var(--gold-light); padding: 8px 10px; font: 500 8px/1 "DM Mono", monospace; letter-spacing: .12em; }
.product-label { color: rgba(243,239,229,.44); font: 500 9px/1 "DM Mono", monospace; letter-spacing: .16em; margin: 0 0 13px; }
.product-card h3 { margin: 0; font: 600 clamp(34px, 4vw, 48px)/1.05 "Playfair Display", serif; letter-spacing: -.035em; }
.product-copy { max-width: 470px; color: rgba(243,239,229,.6); font-size: 14px; line-height: 1.8; margin: 21px 0 0; }
.product-points { list-style: none; padding: 0; margin: 34px 0 28px; border-top: 1px solid rgba(255,255,255,.1); }
.product-points li { position: relative; padding: 13px 0 13px 18px; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(243,239,229,.7); font-size: 11px; line-height: 1.5; }
.product-points li::before { content: ""; position: absolute; left: 0; top: 19px; width: 5px; height: 5px; border: 1px solid var(--gold-light); transform: rotate(45deg); }
.trade-control-demo { margin-top: auto; border: 1px solid rgba(255,255,255,.12); padding: 15px 16px 12px; display: grid; gap: 9px; background: rgba(0,0,0,.12); }
.control-line { display: grid; grid-template-columns: 24px 1fr 42px; gap: 11px; align-items: center; font: 500 8px/1 "DM Mono", monospace; letter-spacing: .1em; }
.control-line i { height: 1px; transform-origin: left; animation: lineLoad 3.2s ease-in-out infinite; }
.control-line b { font-weight: 500; text-align: right; }
.control-tp { color: #8ac7a1; }
.control-be { color: var(--gold-light); }
.control-sl { color: #d58a83; }
.control-tp i { background: #6ab68a; animation-delay: -.2s; }
.control-be i { background: var(--gold); animation-delay: -.8s; }
.control-sl i { background: #c86f67; animation-delay: -1.4s; }
.control-status { margin-top: 3px; padding-top: 11px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(243,239,229,.54); font: 500 7px/1 "DM Mono", monospace; letter-spacing: .13em; display: flex; align-items: center; gap: 8px; }
.status-dot { width: 5px; height: 5px; border-radius: 50%; background: #6ab68a; box-shadow: 0 0 0 0 rgba(106,182,138,.5); animation: statusPulse 2s infinite; }
.tool-strip { margin-top: auto; min-height: 52px; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; gap: 16px; font: 500 9px/1 "DM Mono", monospace; letter-spacing: .12em; color: rgba(243,239,229,.72); }
.tool-strip { justify-content: flex-start; gap: 0; }
.tool-strip span { height: 50px; min-width: 20%; display: grid; place-items: center; border-right: 1px solid rgba(255,255,255,.12); }
.tool-strip span:last-child { border-right: 0; }
.animated-tools span { animation: toolFocus 5s ease-in-out infinite; }
.animated-tools span:nth-child(2) { animation-delay: .35s; }
.animated-tools span:nth-child(3) { animation-delay: .7s; }
.animated-tools span:nth-child(4) { animation-delay: 1.05s; }
.animated-tools span:nth-child(5) { animation-delay: 1.4s; }

.cc-flow { padding-block: var(--section-space) 0; }
.flow-heading { display: grid; grid-template-columns: .9fr 1.1fr; column-gap: var(--layout-gap); align-items: end; }
.flow-heading .kicker { grid-column: 1/-1; }
.flow-heading > p { max-width: 510px; margin: 0 0 5px; color: var(--muted); font-size: 14px; line-height: 1.85; }
.flow-steps { display: grid; grid-template-columns: repeat(3,1fr); margin-top: var(--content-space); border-block: 1px solid var(--line); }
.flow-steps article { min-height: 340px; padding: 30px 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; transition: background .3s ease; }
.flow-steps article:first-child { border-left: 1px solid var(--line); }
.flow-steps article:hover { background: rgba(250,248,242,.75); }
.flow-number { color: var(--gold); font: 500 9px/1 "DM Mono", monospace; letter-spacing: .12em; }
.flow-symbol { width: 54px; height: 54px; margin: 48px 0 30px; border: 1px solid var(--gold-light); display: grid; place-items: center; color: var(--gold); font-size: 22px; transition: transform .35s ease, background .35s ease; }
.flow-icon { width: 22px; height: 22px; fill: currentColor; }
.flow-steps article:hover .flow-symbol { transform: rotate(45deg); background: rgba(183,147,82,.08); }
.flow-steps h3 { margin: 0 0 12px; font: 600 26px/1.1 "Playfair Display", serif; }
.flow-steps p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.flow-steps small { margin-top: auto; padding-top: 24px; color: #8a8579; font: 500 7px/1 "DM Mono", monospace; letter-spacing: .14em; }
.tempo-band { display: grid; grid-template-columns: repeat(5,1fr); margin-top: 34px; background: #dfceb0; }
.tempo-band > div { min-height: 108px; padding: 20px; border-right: 1px solid rgba(23,23,19,.14); display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 14px; }
.tempo-band > div:last-child { border-right: 0; }
.tempo-band span { font: 600 34px/1 "Playfair Display", serif; color: #765e33; }
.tempo-band p { margin: 0; color: rgba(23,23,19,.6); font-size: 9px; line-height: 1.45; }
.tempo-band b { display: block; color: var(--ink); font: 600 8px/1.3 "DM Mono", monospace; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }

.community { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--layout-gap); padding-block: var(--section-space); }
.community-copy > p { color: var(--muted); font-size: 15px; line-height: 1.85; max-width: 510px; margin: 27px 0 0; }
.live-times { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.live-times div { display: grid; gap: 7px; }
.live-times span, .live-times small { font-family: "DM Mono", monospace; font-size: 9px; color: var(--muted); letter-spacing: .1em; }
.live-times strong { font-family: "DM Mono", monospace; font-size: 14px; }
.live-times small { grid-column: 1/-1; margin-top: 5px; }
.resource-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.resource-card { min-height: 480px; border: 1px solid var(--line); padding: 26px; display: flex; flex-direction: column; background: rgba(250,248,242,.5); position: relative; overflow: hidden; transition: transform .3s ease, border-color .3s ease; }
.resource-card:hover { transform: translateY(-4px); border-color: rgba(183,147,82,.58); }
.resource-card > * { position: relative; z-index: 1; }
.resource-card::after { content: ""; position: absolute; width: 190px; height: 190px; right: -90px; top: -80px; border: 1px solid rgba(183,147,82,.18); border-radius: 50%; animation: orbitSpin 16s linear infinite; }
.resource-icon { width: 92px; height: 120px; background: var(--charcoal); color: var(--ivory); box-shadow: 9px 10px 0 rgba(183,147,82,.24); padding: 14px 11px; display: flex; flex-direction: column; justify-content: space-between; margin-bottom: 48px; transform: rotate(-2deg); animation: bookFloat 5s ease-in-out infinite; }
.resource-icon span { font: 600 24px/1 "Playfair Display", serif; }
.resource-icon i { font: 500 7px/1 "DM Mono", monospace; letter-spacing: .16em; font-style: normal; color: var(--gold-light); }
.support-mark { width: 82px; height: 82px; border: 1px solid var(--gold); display: grid; place-items: center; margin-bottom: 58px; transform: rotate(45deg); animation: markTurn 10s ease-in-out infinite; }
.support-mark span { color: var(--gold); font: 300 30px/1 "Manrope", sans-serif; transform: rotate(-45deg); }
.resource-tag { display: block; color: var(--gold); font: 500 8px/1 "DM Mono", monospace; letter-spacing: .15em; margin-bottom: 12px; }
.resource-card h3 { margin: 0; font: 600 29px/1.08 "Playfair Display", serif; letter-spacing: -.025em; }
.resource-card p { margin: 16px 0 24px; color: var(--muted); font-size: 12px; line-height: 1.75; }
.resource-button { width: 100%; min-height: 50px; margin-top: auto; border: 1px solid var(--ink); background: transparent; color: var(--ink); padding: 0 15px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-size: 11px; font-weight: 700; position: relative; overflow: hidden; isolation: isolate; transition: background .3s ease, color .3s ease, transform .3s cubic-bezier(.22,1,.36,1); }
.resource-button:hover { background: var(--ink); color: white; }
.resource-icon-small { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.resource-icon-small.telegram-stroke-icon { fill: currentColor; stroke: none; }
.resource-card small { display: block; color: #8a8579; font-size: 8px; line-height: 1.55; margin-top: 10px; }

.faq-section { padding-block: 0 var(--section-space); display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--layout-gap); align-items: start; }
.faq-heading { position: sticky; top: 40px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; min-height: 88px; padding: 25px 40px 25px 0; cursor: pointer; position: relative; display: flex; align-items: center; gap: 20px; font-size: 14px; font-weight: 600; line-height: 1.5; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--gold); font: 500 9px/1 "DM Mono", monospace; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: var(--gold); font: 300 24px/1 "Manrope", sans-serif; transition: transform .25s ease; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { margin: -6px 38px 28px 38px; color: var(--muted); font-size: 12px; line-height: 1.8; animation: faqOpen .3s ease; }

.join-wrap { padding-bottom: var(--section-space); }
.join-card { background: #d5be8c; min-height: 330px; padding: 62px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; position: relative; overflow: hidden; }
.join-card::after { content: "CC"; position: absolute; top: -82px; right: 30%; color: rgba(255,255,255,.14); font: 600 330px/1 "Playfair Display", serif; pointer-events: none; }
.join-card > * { position: relative; z-index: 1; }
.join-card .kicker { color: rgba(23,23,19,.58); }
.join-card h2 { font-size: clamp(36px, 4.2vw, 58px); }
.join-action { width: min(280px,100%); }
.join-action .button { width: 100%; }
.join-action small { display: block; font-size: 9px; line-height: 1.55; margin-top: 12px; color: rgba(23,23,19,.62); }

.risk-note { min-height: 92px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 180px 1fr; gap: 32px; align-items: center; }
.risk-note span { color: var(--gold); font: 500 8px/1 "DM Mono", monospace; letter-spacing: .14em; }
.risk-note p { margin: 0; max-width: 760px; color: var(--muted); font-size: 10px; line-height: 1.65; }
.risk-note a { color: var(--ink); border-bottom: 1px solid var(--gold); }

footer { min-height: 160px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto auto; gap: 28px 54px; align-items: center; padding-block: 28px; }
footer p { margin: 0; color: var(--muted); font-size: 10px; letter-spacing: .05em; }
.footer-legal { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 20px; display: flex; flex-wrap: wrap; gap: 12px 26px; font: 500 9px/1.4 "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.footer-legal a { border-bottom: 1px solid transparent; padding-bottom: 3px; }
.footer-legal button { border: 0; border-bottom: 1px solid transparent; background: transparent; color: inherit; padding: 0 0 3px; cursor: pointer; font: inherit; letter-spacing: inherit; text-transform: inherit; }
.footer-legal a:hover, .footer-legal button:hover { opacity: 1; border-color: var(--gold); }
.modal-open { overflow: hidden; }
.partner-modal { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; visibility: hidden; opacity: 0; transition: opacity .38s ease, visibility .38s ease; }
.partner-modal.open { visibility: visible; opacity: 1; }
.partner-backdrop { position: absolute; inset: 0; background: rgba(14,14,12,.74); backdrop-filter: blur(7px); }
.partner-dialog { position: relative; z-index: 1; width: min(620px, calc(100% - 32px)); max-height: calc(100svh - 32px); overflow-y: auto; padding: 52px; background: var(--paper); border: 1px solid rgba(215,194,147,.65); box-shadow: 0 36px 100px rgba(0,0,0,.34); transform: translateY(28px) scale(.965); transition: transform .48s cubic-bezier(.22,1,.36,1); }
.partner-modal.open .partner-dialog { transform: none; }
.partner-dialog h2 { font-size: clamp(38px, 6vw, 62px); }
.partner-dialog > p { color: var(--muted); font-size: 13px; line-height: 1.75; max-width: 500px; margin: 22px 0 30px; }
.partner-dialog > small { display: block; color: var(--muted); font-size: 9px; line-height: 1.65; margin-top: 20px; }
.modal-close { position: absolute; right: 20px; top: 20px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.modal-close svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.partner-options { display: grid; gap: 10px; }
.partner-options button { min-height: 78px; border: 1px solid var(--line); background: transparent; color: var(--ink); padding: 14px 18px; display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 14px; text-align: left; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.partner-options button:hover { background: var(--ink); color: white; border-color: var(--ink); }
.partner-options span { color: var(--gold); font: 500 10px/1 "DM Mono", monospace; }
.partner-options b { font-size: 13px; }
.partner-options i { color: var(--muted); font: 400 8px/1 "DM Mono", monospace; letter-spacing: .06em; font-style: normal; }
.partner-options button:hover i { color: rgba(255,255,255,.58); }
.modal-disclosure { display: inline-block; margin-top: 16px; padding-bottom: 4px; border-bottom: 1px solid var(--gold); font-size: 10px; font-weight: 700; }
.analytics-consent { position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 55; max-width: 960px; margin-inline: auto; padding: 26px; background: var(--charcoal); color: var(--ivory); border: 1px solid rgba(215,194,147,.48); box-shadow: 0 28px 90px rgba(0,0,0,.32); display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: end; animation: consentIn .65s cubic-bezier(.22,1,.36,1) both; }
.analytics-consent[hidden] { display: none; }
.analytics-consent h2 { margin-top: 10px; font-size: clamp(27px, 3vw, 38px); letter-spacing: -.035em; }
.analytics-consent p { max-width: 650px; margin: 14px 0 11px; color: rgba(243,239,229,.66); font-size: 14px; line-height: 1.7; }
.analytics-consent a { display: inline-block; color: var(--gold-light); padding-bottom: 3px; border-bottom: 1px solid rgba(215,194,147,.4); font-size: 12px; font-weight: 700; }
.consent-actions { min-width: 180px; display: grid; gap: 8px; }
.consent-actions button { min-height: 47px; padding-inline: 17px; cursor: pointer; font-size: 13px; font-weight: 700; }
.consent-allow { border: 1px solid var(--gold-light); background: var(--gold-light); color: var(--ink); }
.consent-reject { border: 1px solid rgba(255,255,255,.18); background: transparent; color: var(--ivory); }
.toast { position: fixed; right: 24px; bottom: 24px; z-index: 20; background: var(--ink); color: white; padding: 17px 20px; box-shadow: 0 16px 50px rgba(0,0,0,.18); transform: translateY(140%); opacity: 0; transition: all .35s ease; display: grid; gap: 4px; max-width: 330px; }
.toast strong { font-size: 12px; }
.toast span { color: rgba(255,255,255,.64); font-size: 10px; line-height: 1.5; }
.toast.show { transform: translateY(0); opacity: 1; }
.legal-page { background: var(--paper); }
.legal-back { padding-bottom: 4px; border-bottom: 1px solid var(--gold); font-size: 11px; font-weight: 700; }
.legal-shell { display: grid; grid-template-columns: 210px minmax(0, 760px); gap: 90px; justify-content: center; padding-block: 96px 130px; }
.legal-index { position: sticky; top: 36px; align-self: start; border-top: 1px solid var(--ink); padding-top: 16px; }
.legal-index span { color: var(--gold); font: 500 9px/1 "DM Mono", monospace; letter-spacing: .14em; }
.legal-index p { color: var(--muted); font: 400 9px/1.7 "DM Mono", monospace; letter-spacing: .05em; margin: 18px 0 0; }
.legal-copy h1 { font-size: clamp(52px, 7vw, 88px); line-height: .96; margin-top: 25px; }
.legal-lede { color: var(--muted); font-size: 18px; line-height: 1.75; margin: 34px 0 70px; padding-left: 24px; border-left: 2px solid var(--gold); max-width: 700px; }
.legal-copy section { border-top: 1px solid var(--line); padding-block: 30px 34px; }
.legal-copy section h2 { font: 600 25px/1.2 "Playfair Display", serif; letter-spacing: -.02em; margin: 0 0 14px; }
.legal-copy section p { color: var(--muted); font-size: 13px; line-height: 1.85; margin: 0; }
.legal-copy section p + p { margin-top: 13px; }
.legal-copy section a { color: var(--ink); border-bottom: 1px solid var(--gold); }
.legal-footer { grid-template-columns: 1fr; min-height: 150px; }
.legal-footer .footer-legal { grid-column: auto; }
.footer-legal a[aria-current="page"] { color: var(--gold); border-color: var(--gold); }
.reveal { opacity: 0; filter: blur(5px); transform: translate3d(0,30px,0) scale(.988); transition: opacity .85s ease, filter .85s ease, transform .9s cubic-bezier(.22,1,.36,1); will-change: opacity, transform; }
.reveal.visible { opacity: 1; filter: blur(0); transform: translate3d(0,0,0) scale(1); }
.delay-1 { transition-delay: .12s; }

.hero-copy.visible > * { animation: heroLineIn .72s cubic-bezier(.22,1,.36,1) both; }
.hero-copy.visible > *:nth-child(2) { animation-delay: .07s; }
.hero-copy.visible > *:nth-child(3) { animation-delay: .14s; }
.hero-copy.visible > *:nth-child(4) { animation-delay: .21s; }
.hero-copy.visible > *:nth-child(5) { animation-delay: .28s; }
.products-grid.visible .product-card, .flow-steps.visible article, .resource-grid.visible .resource-card, .faq-list.visible details, .tempo-band.visible > div { animation: childRise .7s cubic-bezier(.22,1,.36,1) backwards; }
.products-grid.visible .product-card:nth-child(2), .resource-grid.visible .resource-card:nth-child(2), .flow-steps.visible article:nth-child(2), .faq-list.visible details:nth-child(2), .tempo-band.visible > div:nth-child(2) { animation-delay: .1s; }
.flow-steps.visible article:nth-child(3), .faq-list.visible details:nth-child(3), .tempo-band.visible > div:nth-child(3) { animation-delay: .18s; }
.faq-list.visible details:nth-child(4), .tempo-band.visible > div:nth-child(4) { animation-delay: .26s; }
.faq-list.visible details:nth-child(5), .tempo-band.visible > div:nth-child(5) { animation-delay: .34s; }

@keyframes navEnter { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }
@keyframes heroLineIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes childRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
@keyframes resultIn { from { opacity: 0; transform: translateY(18px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes meterFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes pairSelect { 45% { transform: translateY(-2px) scale(.97); } }
@keyframes chartFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes planUpdate { 45% { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(183,147,82,.14); } }
@keyframes valueRise { from { opacity: .3; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes consentIn { from { opacity: 0; transform: translateY(24px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(183,147,82,0); } }
@keyframes pulseDot { 50% { r: 8; opacity: .45; } }
@keyframes candleAppear { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes orbitDrift { 0%, 100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(-24px,18px,0) scale(1.06); } }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes glowDrift { 0%, 100% { transform: translateY(0); opacity: .8; } 50% { transform: translateY(120px); opacity: 1; } }
@keyframes tickerMove { to { transform: translateX(-50%); } }
@keyframes lineLoad { 0%, 100% { transform: scaleX(.45); opacity: .45; } 50% { transform: scaleX(1); opacity: 1; } }
@keyframes statusPulse { 50% { box-shadow: 0 0 0 7px rgba(106,182,138,0); } }
@keyframes toolFocus { 0%, 16%, 100% { background: transparent; color: rgba(243,239,229,.72); } 8% { background: rgba(183,147,82,.18); color: var(--gold-light); } }
@keyframes bookFloat { 0%, 100% { transform: rotate(-2deg) translateY(0); } 50% { transform: rotate(1deg) translateY(-7px); } }
@keyframes markTurn { 0%, 100% { transform: rotate(45deg); } 50% { transform: rotate(135deg); } }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  :root { --section-space: 96px; --content-space: 56px; --layout-gap: 48px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-block: 70px 90px; gap: 64px; }
  .market-card { max-width: 650px; }
  .market-heading, .flow-heading { grid-template-columns: 1fr; gap: 30px; }
  .plan-heading { grid-template-columns: 1fr; gap: 30px; }
  .plan-workbench { grid-template-columns: 1fr; }
  .flow-heading .kicker { grid-column: auto; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 480px; }
  .flow-steps { grid-template-columns: 1fr; }
  .flow-steps article { min-height: 290px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .flow-steps article:last-child { border-bottom: 0; }
  .tempo-band { grid-template-columns: 1fr 1fr; }
  .tempo-band > div { border-bottom: 1px solid rgba(23,23,19,.14); }
  .community { grid-template-columns: 1fr; gap: var(--content-space); }
  .faq-section { grid-template-columns: 1fr; gap: var(--content-space); }
  .faq-heading { position: static; }
  .join-card { grid-template-columns: 1fr; align-items: start; }
  .join-card::after { right: -30px; }
  .legal-shell { grid-template-columns: 150px minmax(0, 1fr); gap: 48px; }
}

@media (max-width: 620px) {
  :root { --section-space: 80px; --content-space: 48px; --layout-gap: 30px; }
  .shell { width: min(100% - 32px, 1180px); }
  .nav { height: 74px; }
  nav > a:not(.nav-cta) { display: none; }
  nav { gap: 0; }
  .brand-name { font-size: 10px; }
  h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero { padding-block: 58px 72px; }
  .hero-lede { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .button { width: 100%; }
  .market-card { padding: 20px; }
  .tempo-check-card { min-height: 590px; }
  .tempo-question-wrap { padding-block: 38px 25px; }
  .tempo-question-wrap h2 { font-size: 32px; }
  .tempo-options { grid-template-columns: 1fr; gap: 7px; }
  .tempo-options button { min-height: 48px; }
  .tempo-navigation span { display: none; }
  .live-countdown { grid-template-columns: 1fr auto; }
  .live-countdown em { font-size: 18px; }
  .price-row { gap: 7px; }
  .price-row > div + div { padding-left: 8px; }
  .chart { height: 215px; }
  .market-board { padding-block: var(--section-space); }
  .cc-flow { padding-block: var(--section-space) 0; }
  .market-heading { gap: 26px; }
  .market-widget { margin-top: var(--content-space); padding: 12px; }
  .widget-topline span:last-child { display: none; }
  .pair-selector { grid-template-columns: repeat(4,1fr); }
  .cc-chart-shell { height: 620px; }
  .tradingview-widget-container { height: 100%; }
  .market-widget-footer { align-items: flex-start; flex-direction: column; gap: 8px; padding-bottom: 4px; }
  .plan-checker { padding-bottom: var(--section-space); }
  .plan-heading { margin-bottom: var(--content-space); }
  .plan-heading > p { font-size: 15px; }
  .plan-form { padding: 28px 20px; }
  .plan-form-topline { align-items: flex-start; flex-direction: column; gap: 7px; }
  .plan-field-row.two-column, .plan-field-row.three-column { grid-template-columns: 1fr; }
  .plan-output { margin: 0 10px 10px; padding: 25px 20px; }
  .plan-status-row { align-items: flex-start; flex-direction: column; gap: 12px; }
  .plan-rr { padding-block: 28px; }
  .plan-metrics { grid-template-columns: 1fr; }
  .plan-metrics > div { min-height: 67px; }
  .plan-metrics > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .products { padding-block: var(--section-space); }
  .motion-rail { margin-top: calc(var(--section-space) * -1); margin-bottom: var(--section-space); }
  .section-intro { grid-template-columns: 1fr; gap: 30px; }
  .products-grid { margin-top: var(--content-space); }
  .product-card { min-height: auto; padding: 26px 22px; }
  .product-topline { margin-bottom: 42px; }
  .product-points { margin-top: 28px; }
  .workflow, .tool-strip { margin-top: 8px; }
  .community { padding-block: var(--section-space); }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card { min-height: 430px; }
  .flow-steps { margin-top: var(--content-space); }
  .flow-steps article { padding: 25px 22px; }
  .tempo-band { grid-template-columns: 1fr; }
  .tempo-band > div { min-height: 80px; border-right: 0; }
  .faq-section { padding-block: 0 var(--section-space); }
  .faq-list summary { min-height: 82px; padding-right: 30px; font-size: 12px; }
  .faq-list details p { margin-left: 29px; margin-right: 24px; }
  .live-times { grid-template-columns: 1fr; }
  .live-times small { grid-column: auto; }
  .join-wrap { width: 100%; padding-bottom: 0; }
  .join-card { padding: 56px 24px; min-height: 440px; }
  .risk-note { grid-template-columns: 1fr; gap: 10px; padding-block: 28px; }
  footer { grid-template-columns: 1fr; gap: 18px; padding-block: 38px; }
  .footer-legal { grid-column: auto; margin-top: 12px; }
  .footer-brand { margin-bottom: 8px; }
  .partner-dialog { padding: 44px 22px 26px; }
  .partner-options button { grid-template-columns: 30px 1fr; }
  .partner-options i { grid-column: 2; }
  .analytics-consent { left: 12px; right: 12px; bottom: 12px; padding: 22px 18px; grid-template-columns: 1fr; gap: 20px; }
  .consent-actions { min-width: 0; grid-template-columns: 1fr 1fr; }
  .legal-back { font-size: 10px; }
  .legal-shell { grid-template-columns: 1fr; gap: 42px; padding-block: 62px 90px; }
  .legal-index { position: static; }
  .legal-copy h1 { font-size: clamp(48px, 15vw, 68px); }
  .legal-lede { font-size: 15px; margin-bottom: 52px; padding-left: 18px; }
  .toast { left: 16px; right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; filter: none; transform: none; }
}
