/* ============================================================
   DCR LIVE — production stylesheet
   Palette: bg #060504 · text #F2EEE6 · amber #F2A33C / #F5B942
   ============================================================ */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #060504;
  color: #F2EEE6;
  font-family: 'Archivo', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(242,163,60,0.35); }

input, select, textarea, button { font-family: 'Archivo', sans-serif; }
input::placeholder, textarea::placeholder { color: rgba(242,238,230,0.28); letter-spacing: 0.06em; }

img { max-width: 100%; }

/* ---------- ambient background ---------- */
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(242,163,60,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,163,60,0.028) 1px, transparent 1px);
  background-size: 72px 72px;
}
.bg-glow {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(1200px 600px at 75% -10%, rgba(242,163,60,0.06), transparent 60%);
}

/* ---------- logo autofocus brackets ---------- */
.dcr-lockup { position: relative; display: inline-block; line-height: 0; }
.dcr-lockup img { display: block; }
.dcr-focus {
  position: absolute; inset: 0; width: 100%; height: 100%;
  overflow: visible; pointer-events: none;
}
.dcr-focus path {
  stroke: #F2A33C; stroke-width: 2; fill: none; vector-effect: non-scaling-stroke;
  opacity: 0.8; transform-box: fill-box; transform-origin: center;
}
.dcr-focus .dcr-br-tl { animation: dcr-focus-tl 2.6s cubic-bezier(0.22, 1, 0.36, 1) infinite; }
.dcr-focus .dcr-br-bl { animation: dcr-focus-bl 2.6s cubic-bezier(0.22, 1, 0.36, 1) infinite; }
.dcr-focus .dcr-br-tr { animation: dcr-focus-tr 2.6s cubic-bezier(0.22, 1, 0.36, 1) infinite; }
.dcr-focus .dcr-br-br { animation: dcr-focus-br 2.6s cubic-bezier(0.22, 1, 0.36, 1) infinite; }
@keyframes dcr-focus-tl {
  0%, 58%, 94%, 100% { transform: translate(0, 0); opacity: 0.8; filter: none; }
  7% { transform: translate(34%, 34%); opacity: 1; filter: drop-shadow(0 0 5px rgba(242,163,60,1)); }
  12% { transform: translate(22%, 22%); opacity: 0.9; filter: drop-shadow(0 0 3px rgba(242,163,60,0.7)); }
  17% { transform: translate(30%, 30%); opacity: 1; filter: drop-shadow(0 0 6px rgba(242,163,60,1)); }
  21% { opacity: 0.85; }
  25% { transform: translate(30%, 30%); opacity: 1; filter: drop-shadow(0 0 7px rgba(242,163,60,1)); }
  46% { transform: translate(30%, 30%); opacity: 1; filter: drop-shadow(0 0 5px rgba(242,163,60,0.9)); }
  56% { transform: translate(0, 0); opacity: 0.8; filter: none; }
}
@keyframes dcr-focus-bl {
  0%, 58%, 94%, 100% { transform: translate(0, 0); opacity: 0.8; filter: none; }
  7% { transform: translate(34%, -34%); opacity: 1; filter: drop-shadow(0 0 5px rgba(242,163,60,1)); }
  12% { transform: translate(22%, -22%); opacity: 0.9; filter: drop-shadow(0 0 3px rgba(242,163,60,0.7)); }
  17% { transform: translate(30%, -30%); opacity: 1; filter: drop-shadow(0 0 6px rgba(242,163,60,1)); }
  21% { opacity: 0.85; }
  25% { transform: translate(30%, -30%); opacity: 1; filter: drop-shadow(0 0 7px rgba(242,163,60,1)); }
  46% { transform: translate(30%, -30%); opacity: 1; filter: drop-shadow(0 0 5px rgba(242,163,60,0.9)); }
  56% { transform: translate(0, 0); opacity: 0.8; filter: none; }
}
@keyframes dcr-focus-tr {
  0%, 58%, 94%, 100% { transform: translate(0, 0); opacity: 0.8; filter: none; }
  7% { transform: translate(-34%, 34%); opacity: 1; filter: drop-shadow(0 0 5px rgba(242,163,60,1)); }
  12% { transform: translate(-22%, 22%); opacity: 0.9; filter: drop-shadow(0 0 3px rgba(242,163,60,0.7)); }
  17% { transform: translate(-30%, 30%); opacity: 1; filter: drop-shadow(0 0 6px rgba(242,163,60,1)); }
  21% { opacity: 0.85; }
  25% { transform: translate(-30%, 30%); opacity: 1; filter: drop-shadow(0 0 7px rgba(242,163,60,1)); }
  46% { transform: translate(-30%, 30%); opacity: 1; filter: drop-shadow(0 0 5px rgba(242,163,60,0.9)); }
  56% { transform: translate(0, 0); opacity: 0.8; filter: none; }
}
@keyframes dcr-focus-br {
  0%, 58%, 94%, 100% { transform: translate(0, 0); opacity: 0.8; filter: none; }
  7% { transform: translate(-34%, -34%); opacity: 1; filter: drop-shadow(0 0 5px rgba(242,163,60,1)); }
  12% { transform: translate(-22%, -22%); opacity: 0.9; filter: drop-shadow(0 0 3px rgba(242,163,60,0.7)); }
  17% { transform: translate(-30%, -30%); opacity: 1; filter: drop-shadow(0 0 6px rgba(242,163,60,1)); }
  21% { opacity: 0.85; }
  25% { transform: translate(-30%, -30%); opacity: 1; filter: drop-shadow(0 0 7px rgba(242,163,60,1)); }
  46% { transform: translate(-30%, -30%); opacity: 1; filter: drop-shadow(0 0 5px rgba(242,163,60,0.9)); }
  56% { transform: translate(0, 0); opacity: 0.8; filter: none; }
}
.dcr-rec {
  fill: #FF2A2A;
  animation: dcr-rec-pulse 1.1s ease-in-out infinite;
}
.dcr-led-amber {
  fill: #F2A33C;
  animation: dcr-amber-glow 3.6s ease-in-out infinite;
}
.dcr-led-green {
  fill: #F2A33C;
  opacity: 0.95;
  filter: drop-shadow(0 0 3px rgba(242,163,60,0.8)) drop-shadow(0 0 7px rgba(242,163,60,0.35));
}
@keyframes dcr-amber-glow {
  0%, 100% { opacity: 0.55; filter: drop-shadow(0 0 2px rgba(242,163,60,0.45)); }
  50% { opacity: 0.95; filter: drop-shadow(0 0 4px rgba(242,163,60,0.9)) drop-shadow(0 0 9px rgba(242,163,60,0.4)); }
}
@keyframes dcr-rec-pulse {
  0%, 100% { opacity: 0.3; filter: drop-shadow(0 0 2px rgba(255,42,42,0.4)); }
  40%, 55% { opacity: 1; filter: drop-shadow(0 0 4px rgba(255,42,42,1)) drop-shadow(0 0 10px rgba(255,42,42,0.55)); }
}
/* neon status sign */
.dcr-neon { animation: dcr-neon 4.6s ease-in-out infinite; }
@keyframes dcr-neon {
  0%, 100% { opacity: 1; text-shadow: 0 0 3px rgba(255,216,140,0.55), 0 0 12px rgba(242,163,60,0.4), 0 0 30px rgba(242,163,60,0.2); }
  45% { text-shadow: 0 0 4px rgba(255,222,150,0.9), 0 0 18px rgba(242,163,60,0.65), 0 0 46px rgba(242,163,60,0.35); }
  52% { opacity: 0.88; }
  54% { opacity: 1; }
  58% { text-shadow: 0 0 4px rgba(255,222,150,0.85), 0 0 16px rgba(242,163,60,0.6), 0 0 42px rgba(242,163,60,0.32); }
}
/* feature card icon animations (more dynamic) */
.dcr-spin { animation: dcr-spin 12s linear infinite; transform-box: fill-box; transform-origin: center; }
@keyframes dcr-spin { to { transform: rotate(360deg); } }
.dcr-pulse2 { animation: dcr-pulse2 2.6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes dcr-pulse2 {
  0%, 100% { transform: scale(1); opacity: 0.85; filter: none; }
  50% { transform: scale(1.12); opacity: 1; filter: drop-shadow(0 0 3px rgba(242,163,60,0.9)); }
}
.dcr-ping { animation: dcr-ping 2.8s cubic-bezier(0, 0, 0.2, 1) infinite; transform-box: fill-box; transform-origin: center; }
@keyframes dcr-ping {
  0% { transform: scale(0.55); opacity: 0; }
  12% { opacity: 0.7; }
  70%, 100% { transform: scale(1.5); opacity: 0; }
}
.dcr-wave { animation: dcr-wave 2.8s ease-in-out infinite; }
@keyframes dcr-wave {
  0%, 100% { opacity: 0.45; filter: none; }
  30% { opacity: 1; filter: drop-shadow(0 0 2px rgba(242,163,60,0.9)); }
  60% { opacity: 0.45; filter: none; }
}
/* layer pillar icon animations */
.dcr-glow { animation: dcr-glow 5.2s ease-in-out infinite; }
@keyframes dcr-glow {
  0%, 100% { opacity: 0.8; filter: none; }
  50% { opacity: 1; filter: drop-shadow(0 0 3px rgba(242,163,60,0.75)); }
}
.dcr-node { animation: dcr-node 3.4s ease-in-out infinite; }
@keyframes dcr-node {
  0%, 100% { opacity: 0.5; filter: none; }
  30% { opacity: 1; filter: drop-shadow(0 0 3px rgba(242,163,60,0.9)); }
  60% { opacity: 0.5; filter: none; }
}
.dcr-led { animation: dcr-led 2.6s ease-in-out infinite; }
@keyframes dcr-led {
  0%, 100% { opacity: 0.3; filter: none; }
  50% { opacity: 1; filter: drop-shadow(0 0 2px rgba(242,163,60,0.9)); }
}
@media (prefers-reduced-motion: reduce) {
  .dcr-focus path { animation: none !important; }
  .dcr-rec { animation: none !important; opacity: 0.8; }
  .dcr-led-amber { animation: none !important; opacity: 0.75; }
  .dcr-glow, .dcr-node, .dcr-led, .dcr-spin, .dcr-pulse2, .dcr-ping, .dcr-wave { animation: none !important; }
  .dcr-neon { animation: none !important; text-shadow: 0 0 4px rgba(255,222,150,0.8), 0 0 16px rgba(242,163,60,0.55), 0 0 40px rgba(242,163,60,0.3) !important; }
}

/* ---------- navigation ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: 64px; padding: 0 clamp(16px, 3vw, 36px);
  background: rgba(6,5,4,0.9);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(242,163,60,0.22);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.nav-logo img { height: 38px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: clamp(16px, 2.6vw, 38px); }
.nav-links a {
  color: rgba(242,238,230,0.72); text-decoration: none;
  font-size: 11.5px; letter-spacing: 0.22em; font-weight: 500;
  transition: color 0.25s;
}
.nav-links a:first-child { color: #F2EEE6; }
.nav-links a:hover { color: #F2A33C; }

.nav-cta {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  color: #F2A33C; font-size: 11.5px; letter-spacing: 0.22em; font-weight: 600;
  border: 1px solid rgba(242,163,60,0.55); padding: 11px 20px;
  transition: box-shadow 0.25s, background 0.25s;
}
.nav-cta:hover { box-shadow: 0 0 18px rgba(242,163,60,0.35); background: rgba(242,163,60,0.08); }
.nav-cta .dot {
  display: inline-block; width: 7px; height: 7px;
  border: 1px solid #F2A33C; border-radius: 50%;
  box-shadow: 0 0 6px rgba(242,163,60,0.8);
}

.menu-btn {
  display: none;
  background: none; border: 1px solid rgba(242,163,60,0.5); color: #F2A33C;
  padding: 9px 14px; font-size: 11px; letter-spacing: 0.22em; cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
  flex-direction: column;
  background: rgba(6,5,4,0.97);
  border-bottom: 1px solid rgba(242,163,60,0.3);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: #F2EEE6; text-decoration: none; font-size: 13px; letter-spacing: 0.22em;
  padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a.accent { color: #F2A33C; border-top: 1px solid rgba(242,163,60,0.3); }

/* ---------- hero ---------- */
.hero {
  position: relative; z-index: 1;
  padding: 96px clamp(16px, 3vw, 36px) 48px;
  display: flex; flex-wrap: wrap; gap: 28px;
  max-width: 1720px; margin: 0 auto;
}

.hero-brand {
  flex: 1 1 320px; min-width: 300px;
  display: flex; flex-direction: column; justify-content: center;
  padding: 24px 8px;
}
.hero-eyebrow { font-size: 12px; letter-spacing: 0.42em; color: #F2A33C; font-weight: 500; margin-bottom: 22px; }
.hero-brand img { width: min(100%, 440px); height: auto; display: block; margin-bottom: 34px; }
.hero-brand h1 {
  margin: 0 0 10px; font-size: clamp(20px, 1.9vw, 30px);
  line-height: 1.32; letter-spacing: 0.16em; font-weight: 600; color: #F2EEE6;
}
.hero-sub { font-size: clamp(13px, 1.05vw, 16px); letter-spacing: 0.24em; color: #F2A33C; font-weight: 500; margin-bottom: 30px; }
.hero-rule { width: 56px; height: 1px; background: rgba(242,163,60,0.6); margin-bottom: 30px; }
.hero-support { margin: 0 0 36px; font-size: 13px; letter-spacing: 0.18em; color: rgba(242,238,230,0.78); line-height: 1.9; }
.hero-invite {
  align-self: flex-start; text-decoration: none;
  color: #060504; background: #F2A33C;
  font-size: 12px; letter-spacing: 0.24em; font-weight: 700; padding: 14px 26px;
  transition: box-shadow 0.25s;
}
.hero-invite:hover { box-shadow: 0 0 26px rgba(242,163,60,0.55); }

.hero-stage {
  flex: 1.5 1 380px; min-width: 300px;
  position: relative; min-height: 420px; overflow: hidden;
}
.hero-stage picture { display: contents; }
.hero-stage img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 22%;
}
.hero-stage .fade-x { position: absolute; inset: 0; background: linear-gradient(90deg, #060504 0%, transparent 12%, transparent 88%, #060504 100%); }
.hero-stage .fade-y { position: absolute; inset: 0; background: linear-gradient(180deg, #060504 0%, transparent 14%, transparent 78%, #060504 100%); }

/* ---------- access portal card ---------- */
.portal {
  flex: 1 1 320px; min-width: 300px; align-self: center;
  border: 1px solid rgba(242,163,60,0.45);
  background: linear-gradient(160deg, rgba(20,15,8,0.9), rgba(8,6,4,0.95));
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
  padding: 26px 26px 28px; position: relative;
}
.portal-head {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(242,163,60,0.3);
  padding-bottom: 14px; margin-bottom: 20px;
}
.portal-head .label { font-size: 11px; letter-spacing: 0.32em; color: rgba(242,238,230,0.85); font-weight: 600; }
.portal-head .pips { display: flex; gap: 5px; }
.portal-head .pips span { width: 5px; height: 5px; display: inline-block; }
.portal-head .pips span:nth-child(1) { background: rgba(242,163,60,0.9); }
.portal-head .pips span:nth-child(2) { background: rgba(242,163,60,0.45); }
.portal-head .pips span:nth-child(3) { background: rgba(242,163,60,0.2); }

.portal-status {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; margin-bottom: 22px;
}
.portal-status .k { font-size: 10.5px; letter-spacing: 0.3em; color: rgba(242,163,60,0.8); margin-bottom: 8px; }
.portal-status .v {
  font-size: clamp(24px, 2vw, 32px); letter-spacing: 0.14em;
  color: #F5B942; font-weight: 600; text-shadow: 0 0 22px rgba(242,163,60,0.4);
}
.portal-status svg { flex: 0 0 auto; }

.portal-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-top: 1px solid rgba(255,255,255,0.08);
}
.portal-row.last { padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 20px; }
.portal-row .k { font-size: 10.5px; letter-spacing: 0.26em; color: rgba(242,238,230,0.6); }
.portal-row .v { font-size: 11px; letter-spacing: 0.24em; color: #F2A33C; font-weight: 600; }

.portal-cta {
  display: block; text-align: center; text-decoration: none;
  color: #F5B942; border: 1px solid rgba(242,163,60,0.7);
  background: rgba(242,163,60,0.07);
  font-size: 14px; letter-spacing: 0.26em; font-weight: 700;
  padding: 15px 10px 13px;
  transition: box-shadow 0.25s, background 0.25s;
}
.portal-cta:hover { box-shadow: 0 0 24px rgba(242,163,60,0.4); background: rgba(242,163,60,0.14); }
.portal-cta small {
  display: block; font-size: 9px; letter-spacing: 0.3em;
  color: rgba(242,163,60,0.75); font-weight: 500; margin-top: 7px;
}

/* ---------- generic section ---------- */
.section {
  position: relative; z-index: 1; scroll-margin-top: 72px;
  border-top: 1px solid rgba(242,163,60,0.18);
  max-width: 1720px; margin: 0 auto;
}

.section-head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 28px;
}
.section-head h2 { margin: 0; font-size: 15px; letter-spacing: 0.3em; font-weight: 600; color: #FCFAF5; }
.section-head .sub { font-size: 12px; letter-spacing: 0.3em; color: #F2A33C; font-weight: 500; }

/* ---------- what is dcr live ---------- */
.overview {
  padding: clamp(56px, 7vw, 96px) clamp(16px, 3vw, 36px);
  display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 64px);
}
.overview-intro { flex: 1 1 320px; min-width: 290px; max-width: 480px; }
.overview-intro .eyebrow { font-size: 11.5px; letter-spacing: 0.34em; color: #F2A33C; font-weight: 600; margin-bottom: 20px; }
.overview-intro h2 {
  margin: 0 0 22px; font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.25; font-weight: 600; letter-spacing: 0.01em; color: #FCFAF5;
}
.overview-intro p { margin: 0 0 32px; font-size: 15.5px; line-height: 1.8; color: #F2A33C; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px; text-decoration: none;
  color: #F2EEE6; border: 1px solid rgba(242,238,230,0.35);
  font-size: 11.5px; letter-spacing: 0.26em; font-weight: 600; padding: 13px 22px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.btn-ghost:hover { border-color: #F2A33C; box-shadow: 0 0 16px rgba(242,163,60,0.25); }
.btn-ghost .arrow { color: #F2A33C; }

.features {
  flex: 2.2 1 520px; min-width: 290px; scroll-margin-top: 72px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0;
}
.feature {
  padding: 8px 26px 24px;
  border-left: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s, transform 0.3s;
}
.feature:hover { border-color: rgba(242,163,60,0.75); transform: translateY(-3px); }
.feature svg { margin-bottom: 18px; }
.feature h3 { margin: 0 0 12px; font-size: 13px; letter-spacing: 0.22em; color: #F2A33C; font-weight: 600; }
.feature p { margin: 0; font-size: 14px; line-height: 1.75; color: rgba(242,238,230,0.68); }

/* ---------- layers ---------- */
.layers { padding: clamp(48px, 6vw, 80px) clamp(16px, 3vw, 36px); }
.layers .section-head { margin-bottom: 44px; }
.layer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 24px 8px; margin-bottom: 44px;
}
.layer {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 10px 4px; transition: transform 0.3s;
}
.layer:hover { transform: translateY(-3px); }
.layer span { font-size: 11px; letter-spacing: 0.26em; color: rgba(242,238,230,0.8); }
.layers-tagline { text-align: center; font-size: 13px; letter-spacing: 0.4em; color: #F2A33C; font-weight: 600; }

/* ---------- roadmap ---------- */
.roadmap { padding: clamp(48px, 6vw, 80px) clamp(16px, 3vw, 36px); }
.roadmap .section-head { margin-bottom: 40px; }

.roadmap-track {
  display: flex; gap: 18px; overflow-x: auto; padding-bottom: 26px;
  scrollbar-width: thin; scrollbar-color: rgba(242,163,60,0.4) transparent;
}
.city {
  flex: 0 0 210px;
  background: #0B0906;
  transition: transform 0.3s, box-shadow 0.3s;
}
.city:hover { transform: translateY(-4px); }
.city .skyline { height: auto; aspect-ratio: 259 / 198; position: relative; overflow: hidden; background: #0B0906; }
.city .skyline img { width: 100%; height: 100%; object-fit: cover; display: block; }
.city .skyline::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,5,4,0.05), rgba(6,5,4,0.32));
}
.city .body { padding: 16px 16px 18px; }
.city h3 { margin: 0 0 6px; font-size: 14px; letter-spacing: 0.2em; font-weight: 600; color: #FCFAF5; }
.city .date { font-size: 12px; letter-spacing: 0.16em; color: rgba(242,238,230,0.6); margin-bottom: 12px; }
.city .status { display: flex; align-items: center; gap: 8px; }
.city .status span:last-child { font-size: 10px; letter-spacing: 0.2em; font-weight: 600; }

.city.tier-launch { border: 1px solid rgba(242,163,60,0.55); }
.city.tier-launch:hover { box-shadow: 0 0 22px rgba(242,163,60,0.22); }
.city.tier-launch .skyline {
  border-bottom: 1px solid rgba(242,163,60,0.35);
}
.city.tier-active { border: 1px solid rgba(242,163,60,0.32); }
.city.tier-active:hover { box-shadow: 0 0 22px rgba(242,163,60,0.18); }
.city.tier-active .skyline {
  border-bottom: 1px solid rgba(242,163,60,0.25);
}
.city.tier-planning { border: 1px solid rgba(255,255,255,0.14); }
.city.tier-planning:hover { box-shadow: 0 0 22px rgba(242,163,60,0.14); }
.city.tier-planning .skyline {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.city.tier-future { border: 1px solid rgba(255,255,255,0.1); }
.city.tier-future:hover { box-shadow: 0 0 22px rgba(242,163,60,0.12); }
.city.tier-future .skyline {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tag-launch {
  position: absolute; top: 10px; right: 10px; z-index: 1;
  font-size: 9px; letter-spacing: 0.2em; font-weight: 700;
  color: #060504; background: #F2A33C; padding: 4px 8px;
}

.dot-confirmed { width: 9px; height: 9px; border-radius: 50%; background: #F2A33C; box-shadow: 0 0 8px rgba(242,163,60,0.9); display: inline-block; flex: 0 0 auto; }
.dot-active    { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid #F2A33C; background: rgba(242,163,60,0.35); display: inline-block; flex: 0 0 auto; }
.dot-planning  { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid rgba(242,238,230,0.7); display: inline-block; flex: 0 0 auto; }
.dot-future    { width: 9px; height: 9px; border-radius: 50%; border: 1.5px dashed rgba(242,238,230,0.5); display: inline-block; flex: 0 0 auto; }

.status .lbl-confirmed { color: #F2A33C; }
.status .lbl-active    { color: rgba(242,163,60,0.9); }
.status .lbl-planning  { color: rgba(242,238,230,0.7); }
.status .lbl-future    { color: rgba(242,238,230,0.5); }

.roadmap-legend {
  display: flex; flex-wrap: wrap; gap: 18px 34px; margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px;
}
.roadmap-legend .item { display: flex; align-items: center; gap: 9px; }
.roadmap-legend .item span:last-child { font-size: 10px; letter-spacing: 0.22em; color: rgba(242,238,230,0.75); }

/* ---------- request access form ---------- */
.request { padding: clamp(56px, 7vw, 96px) clamp(16px, 3vw, 36px); max-width: 1100px; }
.request-card {
  border: 1px solid rgba(242,163,60,0.4);
  background: linear-gradient(165deg, rgba(20,15,8,0.85), rgba(8,6,4,0.95));
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
  padding: clamp(28px, 4vw, 56px);
}
.request-head {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  border-bottom: 1px solid rgba(242,163,60,0.3);
  padding-bottom: 18px; margin-bottom: 30px;
}
.request-head .eyebrow { font-size: 11px; letter-spacing: 0.32em; color: rgba(242,163,60,0.85); font-weight: 600; margin-bottom: 10px; }
.request-head h2 { margin: 0; font-size: clamp(22px, 2.2vw, 32px); letter-spacing: 0.12em; font-weight: 600; color: #FCFAF5; }
.request-head svg { flex: 0 0 auto; }

.request-form {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px 24px;
}
.request-form label { display: flex; flex-direction: column; gap: 9px; }
.request-form label.full { grid-column: 1 / -1; }
.request-form .field-label { font-size: 10px; letter-spacing: 0.26em; color: rgba(242,163,60,0.85); font-weight: 600; }
.request-form input,
.request-form select,
.request-form textarea {
  background: rgba(6,5,4,0.7); border: 1px solid rgba(255,255,255,0.16);
  color: #F2EEE6; padding: 13px 14px; font-size: 14px; outline: none;
  transition: border-color 0.25s;
}
.request-form select { background: rgba(6,5,4,0.9); appearance: none; -webkit-appearance: none; }
.request-form textarea { resize: vertical; }
.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus { border-color: #F2A33C; }

.request-footer {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 18px; margin-top: 6px;
}
.btn-submit {
  cursor: pointer;
  color: #F5B942; border: 1px solid rgba(242,163,60,0.7);
  background: rgba(242,163,60,0.07);
  font-size: 13px; letter-spacing: 0.26em; font-weight: 700; padding: 16px 36px;
  transition: box-shadow 0.25s, background 0.25s;
}
.btn-submit:hover { box-shadow: 0 0 24px rgba(242,163,60,0.4); background: rgba(242,163,60,0.14); }
.request-note {
  margin: 0; font-size: 11px; letter-spacing: 0.08em;
  color: rgba(242,238,230,0.45); max-width: 420px; line-height: 1.7;
}

.request-confirm { display: none; text-align: center; padding: 30px 10px 20px; }
.request-confirm.visible { display: block; }
.request-confirm .code { font-size: 12px; letter-spacing: 0.3em; color: #F2A33C; font-weight: 600; margin-bottom: 14px; }
.request-confirm .title { font-size: 24px; letter-spacing: 0.14em; color: #FCFAF5; font-weight: 600; margin-bottom: 14px; }
.request-confirm p { margin: 0 auto; max-width: 460px; font-size: 14px; line-height: 1.8; color: rgba(242,238,230,0.65); }
.request-form.hidden { display: none; }

/* ---------- about ---------- */
.about {
  padding: clamp(56px, 7vw, 96px) clamp(16px, 3vw, 36px);
  max-width: 1100px; text-align: center;
}
.about .eyebrow { font-size: 11.5px; letter-spacing: 0.34em; color: #F2A33C; font-weight: 600; margin-bottom: 22px; }
.about h2 {
  margin: 0 auto 24px; max-width: 760px;
  font-size: clamp(22px, 2.2vw, 32px); line-height: 1.4; font-weight: 600; color: #FCFAF5;
}
.about p { margin: 0 auto 40px; max-width: 680px; font-size: 15px; line-height: 1.85; color: rgba(242,238,230,0.68); }
.about-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.about-ctas .btn-ghost { padding: 14px 26px; letter-spacing: 0.24em; }
.btn-amber {
  text-decoration: none; color: #F5B942;
  border: 1px solid rgba(242,163,60,0.7); background: rgba(242,163,60,0.07);
  font-size: 11.5px; letter-spacing: 0.24em; font-weight: 700; padding: 14px 26px;
  transition: box-shadow 0.25s, background 0.25s;
}
.btn-amber:hover { box-shadow: 0 0 20px rgba(242,163,60,0.4); background: rgba(242,163,60,0.14); }

/* ---------- footer ---------- */
.site-footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(242,163,60,0.25);
  background: #040302;
  padding: 40px clamp(16px, 3vw, 36px) 34px;
}
.footer-main {
  max-width: 1720px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
}
.footer-brand { display: flex; align-items: center; gap: 20px; flex: 1 1 320px; min-width: 280px; }
.footer-brand img { height: 44px; width: auto; display: block; }
.footer-brand .tagline {
  font-size: 10.5px; letter-spacing: 0.18em; line-height: 1.8;
  color: #F2A33C; max-width: 260px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 14px 30px; flex: 1 1 340px; justify-content: center; }
.footer-links a {
  color: rgba(242,238,230,0.7); text-decoration: none;
  font-size: 10.5px; letter-spacing: 0.22em; transition: color 0.25s;
}
.footer-links a:hover { color: #F2A33C; }

.footer-social { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.footer-social a {
  width: 32px; height: 32px;
  border: 1px solid rgba(242,238,230,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(242,238,230,0.7); text-decoration: none;
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  transition: border-color 0.25s, color 0.25s;
}
.footer-social a:hover { border-color: #F2A33C; color: #F2A33C; }

.footer-bottom {
  max-width: 1720px; margin: 30px auto 0;
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
}
.footer-bottom .division { font-size: 10px; letter-spacing: 0.28em; color: #F2A33C; font-weight: 600; }
.footer-bottom .copyright { font-size: 10px; letter-spacing: 0.18em; color: rgba(242,238,230,0.4); }

/* ---------- responsive ---------- */
@media (max-width: 1119px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: block; }
}
@media (min-width: 1120px) {
  .mobile-nav { display: none !important; }
}
@media (max-width: 640px) {
  .hero { padding-top: 84px; }
  .hero-stage { min-height: 320px; }
  .portal { align-self: stretch; }
}
