/* White Coffee Cat — $COFFEE · ARC */

:root {
  --arc-navy: #050814;
  --arc-navy-2: #08101f;
  --arc-blue: #0c1a36;
  --arc-blue-mid: #132a52;
  --ice: #c8e4ff;
  --ice-bright: #e8f4ff;
  --silver: #9aadc2;
  --silver-dim: #6b7f96;
  --white: #f5f8fc;
  --coffee: #e8d9c4;
  --collar: #2a6fd6;

  --glass: rgba(12, 26, 54, 0.55);
  --glass-border: rgba(200, 228, 255, 0.14);
  --glow: rgba(120, 180, 255, 0.18);

  --font-display: "Syne", sans-serif;
  --font-body: "Outfit", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--white);
  background: var(--arc-navy);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

code {
  font-family: var(--font-mono);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--ice);
  color: var(--arc-navy);
  border-radius: 0.5rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* ——— Background ——— */

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 70% 10%, rgba(30, 70, 140, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(20, 50, 100, 0.25), transparent 50%),
    linear-gradient(165deg, var(--arc-navy) 0%, var(--arc-navy-2) 40%, var(--arc-blue) 100%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 228, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 228, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
}

.bg-arc {
  position: absolute;
  width: min(70vw, 720px);
  height: min(70vw, 720px);
  border: 1px solid rgba(200, 228, 255, 0.06);
  border-radius: 50%;
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.bg-arc--left {
  top: -10%;
  left: -15%;
  opacity: 0.5;
  animation: arcDrift 28s ease-in-out infinite alternate;
}

.bg-arc--right {
  bottom: 5%;
  right: -20%;
  width: min(50vw, 480px);
  height: min(50vw, 480px);
  opacity: 0.35;
  animation: arcDrift 36s ease-in-out infinite alternate-reverse;
}

.bg-glow {
  position: absolute;
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 68%);
  transform: translate(-50%, -50%);
  left: 70%;
  top: 20%;
  opacity: 0.7;
  transition: left 0.6s var(--ease), top 0.6s var(--ease);
  will-change: left, top;
}

.bg-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

@keyframes arcDrift {
  from { transform: rotate(0deg) translateY(0); }
  to { transform: rotate(12deg) translateY(24px); }
}

/* ——— Buttons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, box-shadow 0.25s, color 0.25s;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 3px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--ice-bright), var(--ice));
  color: var(--arc-navy);
  box-shadow: 0 0 0 1px rgba(200, 228, 255, 0.2), 0 8px 28px rgba(100, 160, 255, 0.18);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(200, 228, 255, 0.35), 0 12px 36px rgba(100, 160, 255, 0.28);
}

.btn--ghost {
  background: rgba(200, 228, 255, 0.06);
  border-color: var(--glass-border);
  color: var(--ice);
}

.btn--ghost:hover {
  background: rgba(200, 228, 255, 0.12);
  border-color: rgba(200, 228, 255, 0.28);
}

.btn--muted,
.btn--disabled,
[aria-disabled="true"].btn {
  background: rgba(154, 173, 194, 0.08);
  border-color: rgba(154, 173, 194, 0.18);
  color: var(--silver-dim);
  cursor: not-allowed;
  pointer-events: none;
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
}

/* ——— Header ——— */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 1.25rem;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.site-header.is-scrolled {
  background: rgba(5, 8, 20, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-self: start;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(200, 228, 255, 0.2);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.nav-desktop {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
}

.nav-desktop a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  color: var(--ice);
}

.nav-desktop a:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 4px;
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-self: end;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: rgba(200, 228, 255, 0.05);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ice);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle span:first-child {
  margin-bottom: 5px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  max-width: var(--max);
  margin: 0.85rem auto 0;
  padding: 1rem;
  flex-direction: column;
  gap: 0.35rem;
  background: rgba(5, 8, 20, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
}

.nav-mobile:not([hidden]) {
  display: flex;
}

.nav-mobile a {
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  font-weight: 500;
  color: var(--ice);
}

.nav-mobile a:hover {
  background: rgba(200, 228, 255, 0.06);
}

.nav-mobile .btn {
  margin-top: 0.5rem;
  width: 100%;
}

/* ——— Hero ——— */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--header-h) + 1.5rem) 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 1.2vw, 0.8rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 8.5vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.ticker-mark {
  margin: 1rem 0 1.25rem;
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 600;
  color: var(--ice);
  letter-spacing: 0.12em;
}

.hero-lead {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero-sub {
  margin: 0 0 1.75rem;
  color: var(--silver);
  font-size: 1.05rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ca-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.9rem;
  background: rgba(8, 16, 31, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 0.65rem;
  max-width: 100%;
}

.ca-chip__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.ca-chip__value {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--ice);
  word-break: break-all;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(320px, 52vh, 620px);
}

.arc-halo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.arc-svg {
  width: min(100%, 560px);
  height: auto;
  animation: haloPulse 8s ease-in-out infinite;
}

.arc-path {
  fill: none;
  stroke: rgba(200, 228, 255, 0.35);
  stroke-width: 10;
  stroke-linecap: round;
}

.arc-path--mid {
  stroke: rgba(180, 210, 255, 0.22);
  stroke-width: 6;
}

.arc-path--inner {
  stroke: rgba(160, 200, 255, 0.14);
  stroke-width: 3;
}

.arc-base {
  stroke: rgba(200, 228, 255, 0.2);
  stroke-width: 2;
}

@keyframes haloPulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.025); }
}

.hero-cat-wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  animation: catFloat 5.5s ease-in-out infinite;
  will-change: transform;
}

.hero-cat {
  width: 100%;
  filter: drop-shadow(0 24px 48px rgba(0, 20, 60, 0.55));
}

@keyframes catFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.eye-glints {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.eye-glint {
  position: absolute;
  width: 3.2%;
  height: 3.2%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, rgba(255, 255, 255, 0.4) 55%, transparent 70%);
  opacity: 0.55;
  mix-blend-mode: screen;
  transition: transform 0.15s linear;
  will-change: transform;
}

/* Approximate eye positions on the transparent hero asset */
.eye-glint--l {
  top: 34.5%;
  left: 38.5%;
}

.eye-glint--r {
  top: 34.5%;
  left: 54.5%;
}

.status-chip {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 12%;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.7rem 0.95rem;
  background: rgba(5, 8, 20, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.status-chip__order {
  color: var(--silver);
}

.status-chip__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ice);
}

.status-chip__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 10px var(--ice);
  animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.terminal-strip {
  max-width: var(--max);
  margin: 2rem auto 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-dim);
  border-top: 1px solid rgba(200, 228, 255, 0.08);
  border-bottom: 1px solid rgba(200, 228, 255, 0.08);
}

/* ——— Marquee ——— */

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(200, 228, 255, 0.1);
  background: rgba(8, 16, 31, 0.55);
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  white-space: nowrap;
}

.marquee-group .dot {
  color: var(--collar);
  opacity: 0.8;
}

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

/* ——— Sections ——— */

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 1.25rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Order / Receipt ——— */

.order-section .section-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.75rem;
  align-items: start;
}

.receipt {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background:
    linear-gradient(165deg, rgba(220, 235, 255, 0.1), rgba(12, 26, 54, 0.65) 40%, rgba(8, 16, 31, 0.8));
  border: 1px solid rgba(200, 228, 255, 0.2);
  border-radius: 1.25rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.receipt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255, 255, 255, 0.015) 3px,
    rgba(255, 255, 255, 0.015) 4px
  );
  pointer-events: none;
}

.receipt-stamp {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.receipt-title {
  margin: 0.5rem 0 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.receipt-product {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--ice);
}

.receipt-lines {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  font-size: clamp(0.78rem, 1.5vw, 0.9rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.receipt-lines li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: baseline;
  color: var(--silver);
}

.receipt-lines li span:last-child {
  color: var(--white);
}

.receipt-lines .dots {
  border-bottom: 1px dotted rgba(200, 228, 255, 0.25);
  min-width: 2rem;
  transform: translateY(-0.25em);
}

.receipt-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(200, 228, 255, 0.18);
  border-bottom: 1px solid rgba(200, 228, 255, 0.18);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.receipt-total span:last-child {
  color: var(--ice);
}

.receipt-note {
  margin: 1.5rem 0 1.25rem;
  color: var(--silver);
  font-size: 1.05rem;
  line-height: 1.5;
}

.receipt-barcode {
  height: 36px;
  background: repeating-linear-gradient(
    90deg,
    var(--ice) 0 2px,
    transparent 2px 5px,
    var(--ice) 5px 7px,
    transparent 7px 12px,
    var(--ice) 12px 13px,
    transparent 13px 16px
  );
  opacity: 0.35;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.order-module {
  padding: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  backdrop-filter: blur(12px);
}

.order-module h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-dim);
  font-weight: 500;
}

.order-qty {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.order-module ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.order-module li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--silver);
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(200, 228, 255, 0.08);
}

.order-module li span:last-child {
  color: var(--ice);
}

/* ——— About ——— */

.about-open {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.about-blast {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.about-blast--accent {
  color: var(--ice);
}

.lore {
  max-width: 42rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.lore-line {
  margin: 0 0 0.85rem;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.lore-line--soft {
  color: var(--silver);
}

.lore-highlight {
  margin: 1.5rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ice);
  max-width: 18ch;
}

.lore--spaced {
  margin-left: clamp(0rem, 8vw, 6rem);
}

.lore--split {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  max-width: none;
  align-items: end;
}

.lore-daily {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--coffee);
}

.lore-daily p {
  margin: 0 0 0.15em;
}

.lore-original {
  margin: 2rem 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.banner-break {
  margin: 0 0 clamp(2.5rem, 6vw, 4rem);
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.banner-break img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ——— Chain ——— */

.chain-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.chain-arc {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0.45;
}

.chain-arc svg {
  width: min(920px, 110%);
  height: auto;
  animation: arcDrift 24s ease-in-out infinite alternate;
}

.chain-arc-path {
  fill: none;
  stroke: rgba(200, 228, 255, 0.35);
  stroke-width: 14;
  stroke-linecap: round;
}

.chain-arc-path--soft {
  stroke: rgba(200, 228, 255, 0.12);
  stroke-width: 6;
}

.chain-inner {
  position: relative;
  z-index: 1;
}

.chain-title {
  margin: 0 0 2.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.chain-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.chain-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.1rem 1.75rem;
  background: rgba(8, 16, 31, 0.55);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  min-width: min(280px, 90vw);
}

.chain-node img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
}

.chain-node span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.chain-node--ticker span {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--ice);
}

.chain-node--arc span {
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}

.chain-arrow {
  color: var(--silver-dim);
  font-size: 1.25rem;
  line-height: 1;
}

/* ——— Get / Glass ——— */

.glass-panel {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: linear-gradient(160deg, rgba(200, 228, 255, 0.08), rgba(12, 26, 54, 0.55));
  border: 1px solid var(--glass-border);
  border-radius: 1.35rem;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.glass-panel h2 {
  margin: 0 0 1.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.get-grid {
  display: grid;
  gap: 1.5rem;
}

.get-label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.get-ca-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.get-ca {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.85rem 1rem;
  background: rgba(5, 8, 20, 0.65);
  border: 1px solid var(--glass-border);
  border-radius: 0.65rem;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  color: var(--ice);
  word-break: break-all;
  overflow-wrap: anywhere;
}

.get-hint {
  margin: 0.55rem 0 0;
  font-size: 0.85rem;
  color: var(--silver-dim);
}

.get-value {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--coffee);
}

.get-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

/* ——— Chart ——— */

.chart-panel {
  min-height: 320px;
  border-radius: 1.35rem;
  border: 1px solid var(--glass-border);
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(40, 90, 170, 0.2), transparent),
    rgba(8, 16, 31, 0.7);
  overflow: hidden;
  position: relative;
}

.chart-panel iframe {
  width: 100%;
  height: min(70vh, 560px);
  border: 0;
  display: block;
}

.chart-placeholder {
  min-height: 360px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem;
  gap: 0.5rem;
}

.chart-eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.chart-status {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ice);
}

.chart-note {
  margin: 0.5rem 0 0;
  color: var(--silver);
}

/* ——— Community ——— */

.community-section {
  padding-bottom: 0;
  overflow: hidden;
}

.community-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 1rem;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 4vw, 2.5rem) 0;
  background: linear-gradient(180deg, transparent, rgba(12, 26, 54, 0.65));
  border: 1px solid var(--glass-border);
  border-bottom: none;
  border-radius: 1.5rem 1.5rem 0 0;
  overflow: hidden;
}

.community-copy {
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 2;
}

.community-copy h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.community-ticker {
  margin: 0 0 1.75rem;
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ice);
}

.community-cat {
  position: relative;
  z-index: 1;
  margin-bottom: -8%;
  justify-self: end;
  width: min(100%, 420px);
  animation: catFloat 6s ease-in-out infinite;
}

.community-cat img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 10, 40, 0.5));
}

/* ——— Footer ——— */

.site-footer {
  padding: 2.5rem 1.25rem 2rem;
  border-top: 1px solid rgba(200, 228, 255, 0.08);
  background: rgba(5, 8, 20, 0.85);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-brand p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-meta {
  font-family: var(--font-mono) !important;
  font-weight: 400 !important;
  font-size: 0.75rem !important;
  color: var(--silver-dim);
  letter-spacing: 0.06em;
}

.footer-x {
  font-weight: 600;
  color: var(--ice);
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  transition: background 0.2s;
}

.footer-x:hover {
  background: rgba(200, 228, 255, 0.08);
}

.footer-x:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 3px;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.85rem;
  color: var(--silver-dim);
}

/* ——— Responsive ——— */

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .header-actions .btn--primary {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-copy {
    order: 1;
    text-align: left;
  }

  .hero-visual {
    order: 2;
    min-height: clamp(300px, 58vw, 480px);
  }

  .hero-cat-wrap {
    width: min(100%, 460px);
  }

  .hero-ctas .btn,
  .hero-ctas .btn--muted {
    flex: 1 1 100%;
  }

  .order-section .section-inner,
  .lore--split,
  .community-inner {
    grid-template-columns: 1fr;
  }

  .lore--spaced {
    margin-left: 0;
  }

  .community-cat {
    justify-self: center;
    margin-bottom: -12%;
    width: min(78%, 360px);
  }

  .community-copy {
    text-align: center;
  }

  .community-copy .btn {
    width: 100%;
  }

  .get-actions .btn,
  .get-actions .btn--muted,
  .get-actions span.btn {
    flex: 1 1 100%;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 0.85rem;
    max-width: 9.5rem;
    line-height: 1.15;
  }

  .status-chip {
    right: 0;
    bottom: 4%;
    font-size: 0.62rem;
  }

  .terminal-strip {
    gap: 0.5rem 0.85rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ——— Reduced motion ——— */

@media (prefers-reduced-motion: reduce) {
  .bg-arc--left,
  .bg-arc--right,
  .arc-svg,
  .hero-cat-wrap,
  .community-cat,
  .chain-arc svg,
  .marquee-track,
  .status-chip__status i {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .bg-glow {
    transition: none;
  }

  .btn--primary:hover {
    transform: none;
  }

  .eye-glint {
    transition: none;
  }
}
