@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600;6..72,700&display=swap");

:root {
  --bg: #04090d;
  --bg-elevated: rgba(10, 18, 24, 0.82);
  --bg-panel: rgba(12, 21, 28, 0.72);
  --bg-panel-strong: rgba(15, 26, 34, 0.94);
  --line: rgba(198, 211, 220, 0.14);
  --line-strong: rgba(221, 231, 237, 0.26);
  --text: #edf3f7;
  --muted: #9caab4;
  --soft: #d3d9de;
  --accent: #ff9d2f;
  --accent-strong: #f2f5f7;
  --accent-deep: #516579;
  --accent-warm: #ff9d2f;
  --accent-warm-soft: #ffbd69;
  --accent-silver: #d9dfe5;
  --accent-silver-soft: #b8c2cb;
  --accent-silver-deep: #8793a0;
  --accent-cyan: #58d8ef;
  --accent-risk: #8f5e52;
  --accent-profit: #ff9d2f;
  --accent-alt: #4fd6ef;
  --accent-btc: #dce2e8;
  --success: #93d8b1;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 157, 47, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(174, 188, 198, 0.14), transparent 26%),
    radial-gradient(circle at 50% 0%, rgba(88, 216, 239, 0.08), transparent 26%),
    linear-gradient(180deg, #061017 0%, #050b10 28%, #03070b 100%);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 90%);
  opacity: 0.25;
}

img {
  max-width: 100%;
  display: block;
}

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

p,
ul,
ol {
  margin: 0;
}

main {
  overflow: clip;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(3, 7, 11, 0.9), rgba(3, 7, 11, 0.45));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand-wordmark {
  gap: 0;
  letter-spacing: 0;
  text-transform: none;
}

.brand-textmark {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: "Newsreader", serif;
  font-size: clamp(1.82rem, 2.2vw, 2.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--accent-silver);
  text-transform: none;
}

.site-header .brand-textmark {
  font-size: clamp(2.15rem, 2.9vw, 2.9rem);
}

.site-footer .brand-textmark {
  font-size: clamp(1.82rem, 2.2vw, 2.15rem);
}

.brand-textmark::after {
  content: "";
  position: absolute;
  left: 0.14em;
  bottom: -0.28rem;
  width: 2.6rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 157, 47, 0.95), rgba(217, 223, 229, 0.3));
}

.site-footer .brand-textmark::after {
  width: 2.1rem;
  bottom: -0.24rem;
  opacity: 0.85;
}

.brand-wordmark img {
  width: clamp(190px, 22vw, 255px);
  height: auto;
  max-width: 100%;
}

.brand-name {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-name strong {
  font-size: 0.95rem;
}

.brand-name span {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.14em;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.menu-toggle svg {
  width: 18px;
  height: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.68rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--text);
  background: linear-gradient(135deg, rgba(255, 157, 47, 0.1), rgba(217, 223, 229, 0.06));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #041015;
  background: linear-gradient(135deg, #ffbd69 0%, #ff9d2f 60%, #f07d0a 100%);
  box-shadow: 0 12px 36px rgba(255, 157, 47, 0.32), 0 2px 0 rgba(255,255,255,0.12) inset;
  border-color: rgba(255, 180, 80, 0.3);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(217, 223, 229, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.button-tertiary {
  color: var(--soft);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.hero {
  padding: 4.8rem 0 3rem;
}

.hero-grid,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-warm);
  box-shadow: 0 0 0 6px rgba(255, 157, 47, 0.12);
}

.hero-copy h1,
.page-hero h1,
.section-title {
  margin: 1.15rem 0 0;
  font-family: "Newsreader", serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(3.5rem, 8vw, 6.6rem);
  max-width: 13ch;
}

.hero-copy > h1:first-child {
  margin-top: 0;
}

.hero-copy h1 span {
  display: block;
  margin-top: 0.32em;
  font-size: clamp(1.15rem, 2.2vw, 1.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--accent-warm-soft);
  opacity: 0.92;
  font-weight: 500;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 4.8rem);
  max-width: 11ch;
}

.hero-copy p,
.page-hero p,
.section-intro {
  margin-top: 1.3rem;
  max-width: 64ch;
  color: var(--soft);
  font-size: 1.05rem;
}

.hero-actions,
.section-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.meta-card,
.panel,
.card,
.note-card,
.archive-card,
.signal-card,
.timeline-step,
.legal-card,
.form-panel,
.dial-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(12, 20, 27, 0.92), rgba(8, 14, 19, 0.86));
  box-shadow: var(--shadow);
}

.meta-card {
  padding: 1.1rem 1.2rem;
}

.meta-card strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-silver);
  text-shadow: 0 0 24px rgba(255, 157, 47, 0.08);
}

.meta-card span {
  color: var(--muted);
}

.dial-panel {
  padding: 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(255, 157, 47, 0.1), transparent 30%),
    radial-gradient(circle at bottom left, rgba(217, 223, 229, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(12, 20, 27, 0.94), rgba(8, 14, 19, 0.9));
}

.panel-glow::before,
.card::before,
.dial-panel::before,
.note-card::before,
.archive-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.dial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.dial-header > div {
  display: grid;
  gap: 0.36rem;
  justify-items: start;
}

.dial-header span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.dial-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(220, 226, 232, 0.12), rgba(255, 157, 47, 0.08));
  color: var(--accent-silver-soft);
  border: 1px solid rgba(217, 223, 229, 0.16);
  font-weight: 700;
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.03em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dial-graphic {
  position: relative;
  width: 100%;
  margin: 0 auto 1.5rem;
}

.cycle-map {
  position: relative;
  isolation: isolate;
  padding: 0.15rem;
}

.cycle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cycle-state {
  --state-rgb: 220 226 232;
  --glow-x: 18%;
  --glow-y: 18%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 176px;
  aspect-ratio: 1 / 1;
  padding: 1.3rem 1.25rem;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgb(var(--state-rgb) / 0.14);
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgb(var(--state-rgb) / 0.14), transparent 56%),
    linear-gradient(180deg, rgba(10, 16, 21, 0.94), rgba(5, 10, 14, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 28px rgba(0, 0, 0, 0.14),
    0 10px 26px rgb(var(--state-rgb) / 0.1);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.cycle-state::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(var(--state-rgb) / 0.45), transparent);
}

.cycle-state strong {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  font-size: 1rem;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: rgb(var(--state-rgb) / 0.96);
  text-shadow: 0 0 20px rgb(var(--state-rgb) / 0.1);
}

.cycle-state span {
  position: relative;
  z-index: 1;
  max-width: 22ch;
  font-size: 0.8rem;
  line-height: 1.42;
  color: var(--muted);
}

.cycle-state-btc,
.cycle-state-risk {
  padding-right: 5.8rem;
  text-align: left;
  align-items: flex-start;
}

.cycle-state-alt,
.cycle-state-profit {
  --glow-x: 82%;
  padding-left: 5.8rem;
  text-align: right;
  align-items: flex-end;
}

.cycle-state-btc,
.cycle-state-alt {
  padding-bottom: 2.5rem;
}

.cycle-state-risk,
.cycle-state-profit {
  --glow-y: 82%;
  padding-top: 2.5rem;
}

.cycle-state-btc {
  --state-rgb: 220 226 232;
}

.cycle-state-alt {
  --state-rgb: 79 214 239;
}

.cycle-state-profit {
  --state-rgb: 255 157 47;
  grid-column: 2;
  grid-row: 2;
}

.cycle-state-risk {
  --state-rgb: 143 94 82;
  grid-column: 1;
  grid-row: 2;
}

.cycle-state.is-active {
  transform: translateY(-3px);
  border-color: rgb(var(--state-rgb) / 0.58);
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgb(var(--state-rgb) / 0.28), transparent 60%),
    linear-gradient(135deg, rgb(var(--state-rgb) / 0.1), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(10, 16, 21, 0.95), rgba(5, 10, 14, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 38px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgb(var(--state-rgb) / 0.22),
    0 18px 44px rgb(var(--state-rgb) / 0.26);
}

.cycle-state.is-active::before {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgb(var(--state-rgb) / 0.86), transparent);
}

.cycle-state.is-active::after {
  content: "";
  position: absolute;
  inset: 0.48rem;
  border-radius: 18px;
  border: 1px solid rgb(var(--state-rgb) / 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 0 24px rgb(var(--state-rgb) / 0.08);
  pointer-events: none;
}

.cycle-state.is-active strong {
  color: rgba(247, 250, 252, 0.98);
  text-shadow:
    0 0 18px rgb(var(--state-rgb) / 0.32),
    0 1px 0 rgba(0, 0, 0, 0.28);
}

.cycle-state.is-active span {
  color: var(--soft);
}

.cycle-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 196px;
  height: 196px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  pointer-events: none;
}

.cycle-orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.18));
}

.cycle-orbit-base {
  fill: none;
  stroke: rgba(217, 223, 229, 0.12);
  stroke-width: 4;
}

.cycle-orbit-segment {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 114 414;
  transform-box: fill-box;
  transform-origin: center;
}

.cycle-orbit-segment-btc {
  stroke: rgba(220, 226, 232, 0.96);
  transform: rotate(-174deg);
}

.cycle-orbit-segment-alt {
  stroke: rgba(79, 214, 239, 0.94);
  transform: rotate(-84deg);
}

.cycle-orbit-segment-profit {
  stroke: rgba(255, 157, 47, 0.95);
  transform: rotate(6deg);
}

.cycle-orbit-segment-risk {
  stroke: rgba(143, 94, 82, 0.94);
  transform: rotate(96deg);
}

.cycle-logo-shell {
  position: relative;
  width: 96px;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(16, 21, 27, 0.98), rgba(7, 12, 16, 0.98));
  border: 2px solid rgba(220, 226, 232, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 30px rgba(0, 0, 0, 0.22);
}

.cycle-logo-shell::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle, rgba(220, 226, 232, 0.08), transparent 72%);
  z-index: -1;
}

.cycle-logo-shell img {
  display: block;
  width: 108%;
  height: 108%;
  object-fit: cover;
  clip-path: circle(45% at 50% 50%);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

.dial-copy strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.18rem;
  color: var(--accent-silver);
}

.dial-copy p {
  color: var(--soft);
}

.section,
.page-hero {
  padding: 3.5rem 0;
}

.page-hero {
  padding-top: 3.2rem;
  padding-bottom: 1.5rem;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.section-title {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  max-width: 12ch;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.card,
.note-card,
.archive-card,
.signal-card,
.timeline-step,
.legal-card,
.form-panel {
  padding: 1.4rem;
}

.card h3,
.archive-card h3,
.timeline-step h3,
.legal-card h3,
.signal-card h3,
.note-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.card p,
.archive-card p,
.timeline-step p,
.signal-card p,
.legal-card p,
.note-card p {
  margin-top: 0.8rem;
  color: var(--soft);
}

.label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.3rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 157, 47, 0.18);
  background: linear-gradient(135deg, rgba(255, 157, 47, 0.08), rgba(217, 223, 229, 0.05));
  color: var(--accent-silver-soft);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pillar-list,
.bullet-list,
.link-list,
.archive-list,
.footer-links,
.stat-list {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
}

.pillar-list li,
.bullet-list li,
.archive-list li,
.stat-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--soft);
}

.pillar-list li::before,
.bullet-list li::before,
.archive-list li::before,
.stat-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 0.48rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffffff);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.2rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-step span,
.archive-meta,
.detail-row span,
.footer-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.signal-card {
  display: grid;
  gap: 0.7rem;
}

.signal-card .bullet-list {
  gap: 0.45rem;
}

.signal-card h3 {
  margin-bottom: 0.1rem;
}

.signal-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.signal-state {
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 157, 47, 0.12), rgba(217, 223, 229, 0.08));
  color: var(--accent-silver);
  border: 1px solid rgba(255, 157, 47, 0.18);
  font-weight: 700;
  font-size: 0.8rem;
}

.signal-body {
  display: grid;
  gap: 0.9rem;
}

.signal-quote {
  padding: 1rem 1rem 1rem 1.15rem;
  border-left: 2px solid rgba(255, 157, 47, 0.34);
  background: linear-gradient(135deg, rgba(255, 157, 47, 0.08), rgba(255, 255, 255, 0.03));
  color: var(--accent-strong);
  font-size: 1rem;
}

.signal-card .hero-actions {
  margin-top: 1.4rem;
}

.signal-card .hero-actions .button {
  aspect-ratio: unset;
  width: auto;
}

.archive-grid,
.legal-grid,
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.archive-card,
.legal-card {
  min-height: 100%;
}

.archive-card a,
.legal-card a,
.inline-link {
  color: var(--accent-warm-soft);
}

.feature-band {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 157, 47, 0.12);
  background:
    radial-gradient(circle at top left, rgba(255, 157, 47, 0.1), transparent 28%),
    radial-gradient(circle at bottom right, rgba(217, 223, 229, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.025);
}

.feature-band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-band-grid div strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.03rem;
  color: var(--accent-silver);
}

.feature-band-grid div span {
  color: var(--soft);
  font-size: 0.92rem;
}

.form-panel form,
.contact-layout {
  display: grid;
  gap: 1rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--soft);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note,
.microcopy {
  color: var(--muted);
  font-size: 0.9rem;
}

.status {
  min-height: 1.4rem;
  color: var(--accent-strong);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.2rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item div {
  padding: 0 1.2rem 1.2rem;
  color: var(--soft);
}

.legal-prose {
  display: grid;
  gap: 1.5rem;
}

.legal-prose section {
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.legal-prose h2,
.legal-prose h3 {
  margin: 0 0 0.9rem;
  font-size: 1.15rem;
}

.legal-prose p + p,
.legal-prose ul + p,
.legal-prose p + ul {
  margin-top: 0.85rem;
}

.legal-prose ul {
  padding-left: 1.1rem;
  color: var(--soft);
}

.cta-panel {
  padding: 2.8rem;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(255, 157, 47, 0.22);
  background:
    radial-gradient(circle at top right, rgba(255, 157, 47, 0.12), transparent 40%),
    radial-gradient(circle at bottom left, rgba(136, 199, 221, 0.1), transparent 35%),
    linear-gradient(180deg, rgba(14, 22, 30, 0.98), rgba(8, 14, 19, 0.96));
  box-shadow: 0 0 0 1px rgba(255, 157, 47, 0.06), 0 32px 80px rgba(0,0,0,0.4);
}

.cta-panel h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.cta-panel p {
  margin-top: 0.8rem;
  color: var(--soft);
}

.site-footer {
  padding: 2.8rem 0 3.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) repeat(3, minmax(0, 0.6fr));
  gap: 1.25rem;
}

.footer-links li,
.link-list li {
  color: var(--muted);
}

.footer-links a:hover,
.link-list a:hover,
.inline-link:hover {
  color: var(--text);
}

.footer-meta {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.detail-row strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--text);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.soft-badge {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-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);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-column,
  .split-panel,
  .footer-grid,
  .feature-band-grid,
  .timeline,
  .cards-grid,
  .archive-grid,
  .legal-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: 13ch;
  }

  .hero-meta {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    width: min(92vw, 320px);
    padding: 0.8rem;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(7, 12, 17, 0.97);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  .nav-link,
  .nav .button {
    width: 100%;
  }

  .nav .button {
    margin-top: 0.4rem;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .dial-graphic {
    gap: 0.9rem;
  }

  .cycle-grid {
    gap: 0.88rem;
  }

  .cycle-state {
    min-height: 154px;
    padding: 1.08rem 1.02rem;
  }

  .cycle-state-btc,
  .cycle-state-risk {
    padding-right: 5rem;
  }

  .cycle-state-alt,
  .cycle-state-profit {
    padding-left: 5rem;
  }

  .cycle-state-btc,
  .cycle-state-alt {
    padding-bottom: 2.2rem;
  }

  .cycle-state-risk,
  .cycle-state-profit {
    padding-top: 2.2rem;
  }

  .cycle-state strong {
    max-width: 11ch;
    font-size: 0.9rem;
  }

  .cycle-state span {
    max-width: 18ch;
    font-size: 0.75rem;
  }

  .cycle-core {
    width: 166px;
    height: 166px;
  }

  .cycle-logo-shell {
    width: 84px;
  }

  .site-header .brand-textmark {
    font-size: clamp(1.9rem, 6vw, 2.35rem);
  }

  .site-header .brand-textmark::after {
    width: 2.25rem;
  }

  .hero-meta,
  .field-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 16vw, 4.8rem);
  }

  .hero-copy h1 span {
    font-size: clamp(1.25rem, 6vw, 1.9rem);
  }

  .page-hero h1,
  .section-title {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .meta-card strong {
    font-size: 1.45rem;
  }

  .cta-panel,
  .card,
  .note-card,
  .archive-card,
  .signal-card,
  .timeline-step,
  .legal-card,
  .form-panel,
  .dial-panel {
    padding: 1.15rem;
  }

  .dial-graphic {
    gap: 0.85rem;
  }

  .dial-header {
    align-items: flex-start;
  }

  .cycle-grid {
    gap: 0.72rem;
  }

  .cycle-state {
    min-height: 134px;
    padding: 0.9rem 0.85rem;
  }

  .site-header .brand-textmark {
    font-size: clamp(1.7rem, 8vw, 2.05rem);
  }

  .site-header .brand-textmark::after {
    width: 2rem;
    bottom: -0.24rem;
  }

  .cycle-state-btc,
  .cycle-state-risk {
    padding-right: 3.9rem;
  }

  .cycle-state-alt,
  .cycle-state-profit {
    padding-left: 3.9rem;
  }

  .cycle-state-btc,
  .cycle-state-alt {
    padding-bottom: 1.75rem;
  }

  .cycle-state-risk,
  .cycle-state-profit {
    padding-top: 1.75rem;
  }

  .cycle-state strong {
    max-width: 9ch;
    font-size: 0.8rem;
  }

  .cycle-state span {
    max-width: 16ch;
    font-size: 0.7rem;
    line-height: 1.36;
  }

  .cycle-core {
    width: 132px;
    height: 132px;
  }

  .cycle-logo-shell {
    width: 68px;
  }

  .dial-copy strong {
    font-size: 1.02rem;
  }
}

/* ============================================================
   Live Dashboard
   ============================================================ */
.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.6rem;
}

.dial-card {
  background: linear-gradient(180deg, rgba(12, 20, 27, 0.92), rgba(8, 14, 19, 0.86));
  border: 1px solid rgba(255, 157, 47, 0.18);
  border-radius: 18px;
  padding: 1.6rem;
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.dial-state {
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffbd69 0%, #ff9d2f 60%, #f07d0a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 0.2rem;
}

.dial-summary {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(229, 235, 240, 0.82);
  margin: 0;
}

.dial-states {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: grid;
  gap: 0.4rem;
}

.dial-states li {
  font-size: 0.85rem;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(229, 235, 240, 0.6);
  background: rgba(255, 255, 255, 0.02);
}

.dial-states li.is-active {
  border-color: rgba(255, 157, 47, 0.55);
  color: #ffbd69;
  background: rgba(255, 157, 47, 0.08);
  font-weight: 600;
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.live-tile {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.live-tile.is-loading {
  opacity: 0.55;
}

.live-tile-head .label {
  font-size: 0.72rem;
}

.live-tile-value {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #f5f7fa;
}

.live-tile-changes {
  display: flex;
  gap: 0.8rem;
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}

.live-tile-changes .is-up {
  color: #6cd29a;
}

.live-tile-changes .is-down {
  color: #ec7878;
}

.live-tile-changes .is-flat {
  color: rgba(229, 235, 240, 0.55);
}

.scorecard-table {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
}

.scorecard-head,
.scorecard-row {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 0.8fr) 56px minmax(0, 0.9fr);
  gap: 1rem;
  padding: 0.85rem 1.2rem;
  align-items: center;
}

.scorecard-head {
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229, 235, 240, 0.55);
}

.scorecard-row {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.scorecard-row.is-loading {
  opacity: 0.55;
}

.scorecard-name {
  display: grid;
  gap: 0.2rem;
}

.scorecard-tier {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 157, 47, 0.12);
  color: #ffbd69;
  margin-right: 0.5rem;
}

.scorecard-note {
  font-size: 0.82rem;
  color: rgba(229, 235, 240, 0.55);
}

.scorecard-value {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: #f5f7fa;
}

.scorecard-trend {
  text-align: center;
  font-size: 1.05rem;
}

.trend-up {
  color: #6cd29a;
}

.trend-down {
  color: #ec7878;
}

.trend-flat {
  color: rgba(229, 235, 240, 0.55);
}

.scorecard-status {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  text-align: center;
  border: 1px solid transparent;
}

.status-good {
  background: rgba(108, 210, 154, 0.1);
  color: #6cd29a;
  border-color: rgba(108, 210, 154, 0.3);
}

.status-bad {
  background: rgba(236, 120, 120, 0.1);
  color: #ec7878;
  border-color: rgba(236, 120, 120, 0.3);
}

.status-neutral {
  background: rgba(229, 235, 240, 0.05);
  color: rgba(229, 235, 240, 0.7);
  border-color: rgba(229, 235, 240, 0.12);
}

.event-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.event-row {
  display: grid;
  grid-template-columns: minmax(110px, 140px) minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.event-row.is-loading {
  opacity: 0.55;
}

.event-date {
  display: grid;
  gap: 0.15rem;
}

.event-day {
  font-weight: 600;
  color: #f5f7fa;
  font-size: 0.95rem;
}

.event-time {
  font-size: 0.78rem;
  color: rgba(229, 235, 240, 0.55);
}

.event-body {
  display: grid;
  gap: 0.2rem;
}

.event-title {
  font-weight: 600;
  color: #f5f7fa;
}

.event-note {
  font-size: 0.85rem;
  color: rgba(229, 235, 240, 0.65);
}

.event-empty {
  font-size: 0.9rem;
  color: rgba(229, 235, 240, 0.6);
}

.event-tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.event-high {
  background: rgba(255, 157, 47, 0.12);
  color: #ffbd69;
  border-color: rgba(255, 157, 47, 0.35);
}

.event-med {
  background: rgba(229, 235, 240, 0.06);
  color: rgba(229, 235, 240, 0.85);
  border-color: rgba(229, 235, 240, 0.15);
}

.event-low {
  background: rgba(229, 235, 240, 0.03);
  color: rgba(229, 235, 240, 0.55);
  border-color: rgba(229, 235, 240, 0.08);
}

@media (max-width: 880px) {
  .dashboard-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .live-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .scorecard-head {
    display: none;
  }

  .scorecard-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      'name value'
      'note note'
      'trend status';
    row-gap: 0.4rem;
  }

  .scorecard-name {
    grid-area: name;
  }

  .scorecard-value {
    grid-area: value;
    text-align: right;
  }

  .scorecard-trend {
    grid-area: trend;
    text-align: left;
  }

  .scorecard-status {
    grid-area: status;
    justify-self: end;
  }

  .event-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      'date tag'
      'body body';
  }

  .event-date {
    grid-area: date;
  }

  .event-body {
    grid-area: body;
  }

  .event-tag {
    grid-area: tag;
    justify-self: end;
  }
}
