/* kodakGP — premium glass desk · dark luxury + molten OSRS gold */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  --bg-0: #07080c;
  --bg-1: #0c0e14;
  --bg-2: #12151e;
  --glass: rgba(18, 22, 32, 0.55);
  --glass-strong: rgba(22, 26, 38, 0.78);
  --glass-border: rgba(240, 193, 75, 0.14);
  --glass-border-bright: rgba(240, 193, 75, 0.32);
  --gold: #d4a017;
  --gold-bright: #f0c14b;
  --gold-soft: #e8b84a;
  --gold-dim: #9a7b2f;
  --amber: #e8a838;
  --molten: #ffb347;
  --text: #efece4;
  --text-muted: #9a9588;
  --text-dim: #6e6a60;
  --danger: #d4695a;
  --danger-bg: rgba(212, 105, 90, 0.12);
  --ok: #5cba7a;
  --link: #e0b84a;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font: "Outfit", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.03);
  --shadow-gold: 0 12px 40px rgba(212, 160, 23, 0.22);
  --blur: 18px;
  --header-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-weight: 400;
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Atmospheric layers */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 90% 55% at 50% -18%, rgba(212, 160, 23, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(232, 168, 56, 0.06), transparent 50%),
    radial-gradient(ellipse 40% 35% at 0% 80%, rgba(120, 80, 20, 0.08), transparent 45%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0) 40%, #05060a);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: overlay;
}

a { color: var(--link); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--gold-bright); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.wrap { width: min(1140px, 92vw); margin: 0 auto; }
.wrap-narrow { width: min(820px, 92vw); margin: 0 auto; }

/* —— Sticky glass nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(8, 10, 14, 0.62);
  backdrop-filter: blur(var(--blur)) saturate(1.35);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.35);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  min-height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.logo:hover { color: var(--molten); text-decoration: none; }
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--gold-bright) 0%, var(--gold) 45%, #6b4e12 100%);
  display: grid;
  place-items: center;
  color: #1a1206;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 4px 16px rgba(212, 160, 23, 0.35);
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), transparent 42%);
  pointer-events: none;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.15rem;
  align-items: center;
}
.nav a {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.nav a:hover, .nav a.active {
  color: var(--gold-bright);
  background: rgba(240, 193, 75, 0.08);
  box-shadow: inset 0 0 0 1px rgba(240, 193, 75, 0.18);
}
.nav-toggle {
  display: none;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--gold-bright);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 0.75rem;
    gap: 0.25rem;
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.65rem 0.85rem; }
  .header-inner { flex-wrap: wrap; }
}

/* —— Live ticker —— */
.ticker {
  background: rgba(12, 14, 20, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(240, 193, 75, 0.1);
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.45rem 0;
  overflow: hidden;
  position: relative;
}
.ticker::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 48px;
  background: linear-gradient(90deg, var(--bg-0), transparent);
  z-index: 1;
  pointer-events: none;
}
.ticker-inner {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  align-items: center;
  font-variant-numeric: tabular-nums;
}
.ticker strong { color: var(--gold-bright); font-weight: 600; letter-spacing: 0.02em; }
.ticker .sep { color: rgba(240, 193, 75, 0.25); }
.ticker .pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(92, 186, 122, 0.5);
  animation: pulse-dot 2s ease infinite;
  display: inline-block;
  margin-right: 0.35rem;
  vertical-align: middle;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(92, 186, 122, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(92, 186, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(92, 186, 122, 0); }
}

/* —— Glass cards —— */
.glass, .card, .pay-method, .faq-item, .chat-panel, .calc-result, .rate-board, .token-hero-card {
  background: var(--glass);
  backdrop-filter: blur(var(--blur)) saturate(1.2);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.glass::before, .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, transparent 38%, transparent 62%, rgba(212,160,23,0.04) 100%);
  pointer-events: none;
  z-index: 0;
}
.card > *, .glass > * { position: relative; z-index: 1; }
.card {
  padding: 1.4rem 1.5rem;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.card:hover {
  border-color: var(--glass-border-bright);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}
.card h3, .card .card-title {
  margin: 0 0 0.55rem;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.card p { margin: 0; color: var(--text-muted); font-size: 0.94rem; }
.card .card-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 0.85rem;
  background: linear-gradient(145deg, rgba(240,193,75,0.2), rgba(212,160,23,0.05));
  border: 1px solid var(--glass-border);
  font-size: 1.15rem;
  color: var(--gold-bright);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.15rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 760px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* —— Hero —— */
.hero {
  padding: 4.5rem 0 3rem;
  text-align: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(240, 193, 75, 0.1);
  border: 1px solid var(--glass-border-bright);
  margin-bottom: 1.35rem;
}
.hero h1, .hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  background: linear-gradient(135deg, #fff8e7 10%, var(--gold-bright) 45%, var(--gold) 70%, #c48920 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}
.hero .tagline {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 300;
  max-width: 38rem;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 2.75rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 560px) {
  .hero-stats { grid-template-columns: 1fr; }
}
.stat-pill {
  padding: 1rem 1.1rem;
  text-align: center;
}
.stat-pill .stat-val {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
}
.stat-pill .stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.2s var(--ease), filter 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: linear-gradient(180deg, #f5d06a 0%, var(--gold) 48%, #b8860b 100%);
  color: #1a1206;
  border-color: rgba(255, 220, 140, 0.35);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-gold:hover { filter: brightness(1.07); color: #1a1206; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-bright);
  border-color: var(--glass-border-bright);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(240, 193, 75, 0.1);
  color: var(--molten);
  box-shadow: 0 0 24px rgba(212, 160, 23, 0.12);
}
.btn-sm { padding: 0.42rem 0.85rem; font-size: 0.8rem; }
.btn-copy {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--glass-border);
  font-family: var(--mono);
  font-size: 0.75rem;
  border-radius: 8px;
}
.btn-copy:hover { border-color: var(--gold-dim); color: var(--gold-bright); }
.btn-copy.copied { border-color: var(--ok); color: var(--ok); }

/* —— Sections —— */
.section { padding: 2.5rem 0 3.25rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 600;
  color: var(--gold-bright);
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}
.section-sub {
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  font-size: 0.98rem;
  font-weight: 300;
  max-width: 36rem;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.section-head .section-sub { margin: 0; }

.page-hero {
  padding: 2.25rem 0 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}
.page-hero h1 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: -0.015em;
}
.page-hero p { margin: 0; color: var(--text-muted); font-weight: 300; max-width: 40rem; }

/* —— Disclaimers —— */
.disclaimer {
  background: var(--danger-bg);
  border: 1px solid rgba(212, 105, 90, 0.35);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: #e8c4bc;
  margin: 1rem 0 1.5rem;
  backdrop-filter: blur(10px);
}
.disclaimer strong { color: #f0a898; }
.disclaimer-soft {
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.28);
  color: var(--text-muted);
}
.disclaimer-soft strong { color: var(--gold-bright); }

/* —— Forms —— */
label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  background: rgba(5, 6, 10, 0.55);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.18);
}
.form-row { margin-bottom: 1.1rem; }
.form-row-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .form-row-inline { grid-template-columns: 1fr; }
}

/* —— Calculator / quote —— */
.calc-result {
  padding: 1.35rem;
  margin-top: 1rem;
  border-color: var(--glass-border-bright);
}
.calc-result .big, .big {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--gold-bright);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.calc-meta { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.5rem; }

.order-ref {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
  padding: 0.75rem 0.9rem;
  background: rgba(0,0,0,0.35);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--glass-border-bright);
}
.order-ref code {
  font-family: var(--mono);
  font-size: 0.95rem;
  color: var(--molten);
  letter-spacing: 0.06em;
  font-weight: 500;
}
.order-ref .ref-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* —— Payment method cards + QR —— */
.pay-methods { display: grid; gap: 0.85rem; margin-top: 0.5rem; }
.pay-method {
  padding: 1.15rem 1.2rem;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}
.pay-method:hover {
  border-color: var(--glass-border-bright);
  transform: translateY(-2px);
}
.pay-method.selected {
  border-color: var(--gold-dim);
  background: rgba(212, 160, 23, 0.1);
  box-shadow: 0 0 0 1px rgba(240, 193, 75, 0.15), var(--shadow-gold);
}
.pay-method h4 {
  margin: 0 0 0.35rem;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}
.pay-method > p { margin: 0; color: var(--text-muted); font-size: 0.88rem; }
.pay-detail {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
  display: none;
}
.pay-method.selected .pay-detail { display: block; }
.pay-detail-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
}
@media (max-width: 520px) {
  .pay-detail-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .pay-detail-grid .addr-stack { width: 100%; }
}
.qr-box {
  width: 132px;
  height: 132px;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.qr-box img, .qr-box canvas { width: 116px !important; height: 116px !important; display: block; }
.qr-caption {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btc-rail {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  margin-bottom: 0.65rem;
  background: rgba(0,0,0,0.25);
}
.btc-rail:last-child { margin-bottom: 0; }
.btc-rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
}
.addr-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin: 0.4rem 0;
}
.addr-row code, .addr-stack code {
  flex: 1;
  min-width: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  background: rgba(0,0,0,0.4);
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  word-break: break-all;
  color: var(--amber);
  letter-spacing: -0.01em;
}
.addr-stack { display: flex; flex-direction: column; gap: 0.5rem; min-width: 0; }

/* —— Packages —— */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.85rem;
  margin: 1rem 0 0.5rem;
}
.pkg-card {
  text-align: center;
  padding: 1.1rem 0.85rem;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s var(--ease), background 0.25s;
}
.pkg-card:hover, .pkg-card.active {
  border-color: var(--gold-dim);
  background: rgba(212, 160, 23, 0.1);
  transform: translateY(-2px);
}
.pkg-card .pkg-usd {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--gold-bright);
  font-weight: 600;
}
.pkg-card .pkg-gp {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* —— Rates board —— */
.rate-board { padding: 0; overflow: hidden; margin-bottom: 1.25rem; }
.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.rate-table th, .rate-table td {
  text-align: left;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--glass-border);
}
.rate-table th {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.3);
}
.rate-table td { font-variant-numeric: tabular-nums; }
.rate-table tr:last-child td { border-bottom: none; }
.rate-table tbody tr { transition: background 0.2s; }
.rate-table tbody tr:hover { background: rgba(240, 193, 75, 0.04); }

.badge {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(212, 160, 23, 0.14);
  color: var(--gold-bright);
  border: 1px solid var(--glass-border-bright);
}

/* —— FAQ —— */
.faq-item {
  margin-bottom: 0.7rem;
  overflow: hidden;
  padding: 0;
}
.faq-item summary {
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--gold-bright);
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-dim);
  font-family: var(--font);
  font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { border-bottom: 1px solid var(--glass-border); }
.faq-item .faq-body {
  padding: 1rem 1.2rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* —— Chat —— */
.chat-layout { display: grid; gap: 1rem; min-height: 420px; }
.chat-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: min(580px, 72vh);
  padding: 0;
}
.chat-toolbar {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.28);
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.chat-msg {
  max-width: 85%;
  padding: 0.65rem 0.9rem;
  border-radius: 14px 14px 14px 4px;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--glass-border);
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
}
.chat-msg .who {
  font-size: 0.74rem;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
}
.chat-msg .when {
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-left: 0.4rem;
  font-weight: 400;
}
.chat-msg.system {
  align-self: center;
  max-width: 95%;
  text-align: center;
  background: transparent;
  border-style: dashed;
  color: var(--text-muted);
  font-size: 0.82rem;
  border-radius: 999px;
}
.chat-compose {
  display: flex;
  gap: 0.5rem;
  padding: 0.85rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.28);
}
.chat-compose input { flex: 1; }
.chat-status { font-size: 0.78rem; color: var(--text-muted); margin-left: auto; }
.chat-status.live { color: var(--ok); }
.chat-status.err { color: var(--danger); }

/* —— Floating KODAK bot —— */
.kodak-bot-btn {
  position: fixed;
  bottom: 1.35rem;
  right: 1.35rem;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold-dim));
  color: #1a1206;
  border: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 32px rgba(212, 160, 23, 0.45), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform 0.25s var(--ease), filter 0.2s;
}
.kodak-bot-btn:hover { filter: brightness(1.08); transform: scale(1.05); }
.kodak-bot-panel {
  position: fixed;
  bottom: 5.75rem;
  right: 1.35rem;
  z-index: 100;
  width: min(380px, calc(100vw - 2rem));
  height: 480px;
  background: var(--glass-strong);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  border: 1px solid var(--glass-border-bright);
  border-radius: 18px;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.kodak-bot-panel.open { display: flex; animation: dock-in 0.35s var(--ease); }
@keyframes dock-in {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.kodak-bot-head {
  padding: 0.95rem 1.1rem;
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.kodak-bot-head strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}
.kodak-bot-head button {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}
.kodak-bot-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.kodak-bot-msgs .bubble {
  max-width: 92%;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  font-size: 0.86rem;
  line-height: 1.45;
}
.kodak-bot-msgs .bubble.bot {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--glass-border);
  align-self: flex-start;
  border-radius: 12px 12px 12px 4px;
}
.kodak-bot-msgs .bubble.user {
  background: rgba(212, 160, 23, 0.16);
  border: 1px solid var(--glass-border-bright);
  align-self: flex-end;
  border-radius: 12px 12px 4px 12px;
}
.kodak-bot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0 0.85rem 0.55rem;
}
.kodak-bot-quick button {
  font-size: 0.7rem;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
}
.kodak-bot-quick button:hover {
  border-color: var(--gold-dim);
  color: var(--gold-bright);
}
.kodak-bot-input {
  display: flex;
  gap: 0.4rem;
  padding: 0.7rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.28);
}
.kodak-bot-input input { flex: 1; font-size: 0.88rem; padding: 0.55rem 0.7rem; }

/* —— Token desk —— */
.token-price-display {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
}

/* —— Footer —— */
.site-footer {
  margin-top: 3.5rem;
  border-top: 1px solid var(--glass-border);
  padding: 2.5rem 0 2.75rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  background: rgba(0,0,0,0.25);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.75rem;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h4 {
  color: var(--gold-bright);
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 0.35rem 0; }
.site-footer a { color: var(--text-muted); }
.site-footer a:hover { color: var(--gold-bright); }
.footer-legal {
  margin-top: 1.75rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.76rem;
  line-height: 1.55;
  color: var(--text-dim);
}

/* —— Reveal animations —— */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* —— Recon checklist —— */
.recon-box {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border-bright);
  background: rgba(212, 160, 23, 0.06);
}
.recon-box h4 {
  margin: 0 0 0.55rem;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.recon-box ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.recon-box li { margin: 0.35rem 0; }

/* —— Misc —— */
code, .mono { font-family: var(--mono); }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.specular {
  position: relative;
  overflow: hidden;
}
.specular::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 40%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: rotate(20deg);
  pointer-events: none;
  animation: sheen 7s ease-in-out infinite;
}
@keyframes sheen {
  0%, 100% { transform: translateX(-120%) rotate(20deg); }
  50% { transform: translateX(350%) rotate(20deg); }
}

main { min-height: 50vh; padding-bottom: 2rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
