/* ANODIZE TODAY — Coming Soon */

:root {
  /* === BRAND PALETTE (from brand template) === */
  --ink:        #0A0A0B;
  --graphite:   #1A1A1D;
  --steel:      #6B6E76;
  --aluminum:   #C8CACE;
  --bone:       #F4F2EE;
  --paper:      #FFFFFF;

  --voltage:    #2B4FFF;
  --voltage-dim:#1E37B8;

  /* Anodize spectrum */
  --ano-clear:  #E8E6E1;
  --ano-bronze: #8B5A2B;
  --ano-gold:   #C9A227;
  --ano-red:    #B5232E;
  --ano-purple: #6B2A86;
  --ano-blue:   #1F4FB3;
  --ano-teal:   #1F8A8A;
  --ano-black:  #1A1A1D;

  --display: 'Archivo', sans-serif;
  --body:    'Manrope', sans-serif;
  --mono:    'JetBrains Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--body);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === LAYOUT FRAME === */
.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.wrap {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* === MOTION BACKGROUND === */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: var(--bone);
}
.bg-grid {
  position: absolute;
  inset: -1px;
  background-image:
    linear-gradient(rgba(10,10,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,11,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 45%, #000 30%, transparent 80%);
}
.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 70% at 50% 50%, transparent 40%, rgba(244,242,238,0.85) 100%);
}
.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Spectrum orbs (default motion) */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
.orb-1 { width: 640px; height: 640px; background: var(--ano-blue); left: -160px; top: -120px; animation: drift1 24s ease-in-out infinite alternate; }
.orb-2 { width: 520px; height: 520px; background: var(--ano-purple); right: -120px; top: 10%; animation: drift2 30s ease-in-out infinite alternate; }
.orb-3 { width: 580px; height: 580px; background: var(--ano-teal); left: 18%; bottom: -180px; animation: drift3 28s ease-in-out infinite alternate; }
.orb-4 { width: 420px; height: 420px; background: var(--ano-red); right: 12%; bottom: -100px; animation: drift4 34s ease-in-out infinite alternate; }
.orb-5 { width: 360px; height: 360px; background: var(--ano-gold); left: 45%; top: 30%; animation: drift5 38s ease-in-out infinite alternate; opacity: 0.35; }

@keyframes drift1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, 120px) scale(1.15); }
}
@keyframes drift2 {
  0%   { transform: translate(0, 0) scale(1.05); }
  100% { transform: translate(-110px, 90px) scale(0.95); }
}
@keyframes drift3 {
  0%   { transform: translate(0, 0) scale(0.95); }
  100% { transform: translate(140px, -80px) scale(1.1); }
}
@keyframes drift4 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-90px, -120px) scale(1.08); }
}
@keyframes drift5 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-160px, 80px) scale(1.2); }
}

/* "Current" motion — animated voltage lines */
.current-lines {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
.current-lines svg { width: 100%; height: 100%; }
.current-lines .ln {
  fill: none;
  stroke: var(--voltage);
  stroke-width: 1;
  opacity: 0.35;
  stroke-dasharray: 6 14;
}
.current-lines .ln.a { animation: dash 8s linear infinite; }
.current-lines .ln.b { animation: dash 11s linear infinite reverse; opacity: 0.22; }
.current-lines .ln.c { animation: dash 14s linear infinite; opacity: 0.18; stroke: var(--ano-teal); }
.current-lines .ln.d { animation: dash 17s linear infinite reverse; opacity: 0.22; stroke: var(--ano-purple); }
@keyframes dash {
  to { stroke-dashoffset: -400; }
}

/* "Mesh" motion — slow gradient mesh */
.mesh {
  position: absolute;
  inset: -20%;
  opacity: 0;
  transition: opacity 0.5s;
  background:
    radial-gradient(circle at 20% 30%, rgba(31, 79, 179, 0.45), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(107, 42, 134, 0.4), transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(31, 138, 138, 0.4), transparent 45%),
    radial-gradient(circle at 30% 90%, rgba(201, 162, 39, 0.35), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(181, 35, 46, 0.3), transparent 35%);
  filter: blur(40px);
  animation: meshRotate 60s linear infinite;
}
@keyframes meshRotate {
  from { transform: rotate(0deg) scale(1.1); }
  to   { transform: rotate(360deg) scale(1.1); }
}

/* Mode visibility */
.bg[data-mode="spectrum"] .orb { opacity: 0.55; }
.bg[data-mode="spectrum"] .orb-5 { opacity: 0.35; }
.bg[data-mode="current"] .orb { opacity: 0; }
.bg[data-mode="current"] .current-lines { opacity: 1; }
.bg[data-mode="mesh"] .orb { opacity: 0; }
.bg[data-mode="mesh"] .mesh { opacity: 0.9; }
.bg[data-mode="off"] .orb,
.bg[data-mode="off"] .current-lines,
.bg[data-mode="off"] .mesh { opacity: 0; }

/* === NAV === */
.nav {
  padding: 28px 0;
  position: relative;
  z-index: 10;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
}
.logo { white-space: nowrap; }
.nav-meta { white-space: nowrap; }
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--ano-red) 0%, var(--ano-gold) 25%, var(--ano-teal) 55%, var(--ano-blue) 80%, var(--ano-purple) 100%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 5px;
  background: var(--ink);
  border-radius: 2px;
}
.logo-mark::before {
  content: 'A';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--bone);
  font-family: var(--display);
  font-weight: 900;
  font-size: 15px;
  z-index: 2;
  letter-spacing: 0;
}
.logo-word {
  font-family: var(--display);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.nav-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
.nav-meta .dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-meta .dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--voltage);
  box-shadow: 0 0 0 4px rgba(43,79,255,0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(43,79,255,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(43,79,255,0); }
}

/* Nav eyebrow — top-right tag, height-matched to the logo mark for visual alignment.
   Specificity bumped to beat the .eyebrow base rule that comes later in this file. */
.nav-meta .nav-eyebrow {
  margin-bottom: 0;
  padding: 0 14px;
  height: 32px;
  font-size: 10px;
  letter-spacing: 0.24em;
}
.workflow {
  padding: 8px 0 48px;
  position: relative;
  z-index: 5;
}
.workflow-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(10,10,11,0.12);
  border-bottom: 1px solid rgba(10,10,11,0.12);
}
.step {
  position: relative;
  padding: 28px 28px 28px 28px;
  border-right: 1px solid rgba(10,10,11,0.08);
  background: rgba(244, 242, 238, 0.4);
  backdrop-filter: blur(8px);
  transition: background 0.25s ease;
}
.step:last-child { border-right: none; }
.step:hover { background: rgba(255,255,255,0.55); }
.step:hover .step-num { color: var(--voltage); }

.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--steel);
  transition: color 0.25s ease;
}
.step-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--ink);
  opacity: 0.8;
}
.step-icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.5; fill: none; }
.step h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.step p {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.55;
  max-width: 240px;
}

/* connector dot between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bone);
  border: 1px solid rgba(10,10,11,0.2);
  z-index: 2;
}

/* === CENTERPIECE === */
.center {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 60px 0 80px;
  position: relative;
  z-index: 5;
}
.center-inner {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bone);
  border: 1px solid rgba(10,10,11,0.14);
  padding: 10px 18px;
  border-radius: 100px;
  margin-bottom: 36px;
}
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--voltage);
  box-shadow: 0 0 12px var(--voltage);
  animation: led-blink 2.4s ease-in-out infinite;
}
@keyframes led-blink {
  0%, 100% {
    opacity: 1;
    background: var(--voltage);
    box-shadow: 0 0 12px var(--voltage), 0 0 4px var(--voltage);
  }
  50% {
    opacity: 0.35;
    background: color-mix(in oklch, var(--voltage) 45%, transparent);
    box-shadow: 0 0 2px var(--voltage);
  }
}
@media (prefers-reduced-motion: reduce) {
  .eyebrow::before { animation: none; }
}

.headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
}
.headline .row { display: block; }
.headline .accent {
  background-image: linear-gradient(
    90deg in oklch longer hue,
    oklch(48% 0.13 260),
    oklch(48% 0.13 260)
  );
  background-size: 200% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: accentFlow 22s linear infinite;
}
@keyframes accentFlow {
  from { background-position: 0% 50%; }
  to   { background-position: 200% 50%; }
}

.sub {
  font-size: 19px;
  color: var(--steel);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.55;
}
.sub-emphasis {
  font-weight: 600;
  color: var(--ink);
}

/* Email form */
.signup {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.signup-shell {
  display: flex;
  align-items: stretch;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(10,10,11,0.35), 0 0 0 6px rgba(244,242,238,0.6);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.signup-shell:focus-within {
  border-color: var(--voltage);
  box-shadow: 0 30px 60px -30px rgba(43,79,255,0.45), 0 0 0 6px rgba(43,79,255,0.12);
}
.signup-input {
  flex: 1;
  padding: 20px 24px;
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: none;
  outline: none;
}
.signup-input::placeholder { color: var(--steel); }
.signup-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bone);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.signup-btn:hover { background: var(--voltage); }
.signup-btn:active { transform: scale(0.98); }
.signup-btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.signup-btn:hover .arrow { transform: translateX(4px); }

.signup-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}
.signup-meta span { display: inline-flex; align-items: center; gap: 8px; }
.signup-meta span::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--ink);
  border-radius: 50%;
}

/* === EXPANDED SIGNUP FORM === */
.signup-wide {
  max-width: 640px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  padding: 32px;
  box-shadow: 0 30px 60px -30px rgba(10,10,11,0.35), 0 0 0 6px rgba(244,242,238,0.6);
}

.field { display: flex; flex-direction: column; gap: 10px; }
.field-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.field-label .req {
  color: var(--ano-red);
  font-size: 11px;
}

/* Text inputs */
.text-input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  background: var(--bone);
  border: 1.5px solid rgba(10,10,11,0.14);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.text-input::placeholder { color: var(--steel); }
.text-input:hover { border-color: rgba(10,10,11,0.28); }
.text-input:focus {
  border-color: var(--voltage);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(43,79,255,0.12);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Radio cards (Personal/Business, Type II/III) */
.radio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.radio-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bone);
  border: 1.5px solid rgba(10,10,11,0.14);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  user-select: none;
}
.radio-card:hover { border-color: rgba(10,10,11,0.4); }
.radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-box {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(10,10,11,0.35);
  background: var(--paper);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.radio-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--voltage);
  opacity: 0;
  transition: opacity 0.18s ease;
}
.radio-card.is-checked {
  border-color: var(--ink);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(43,79,255,0.10), 0 2px 0 var(--ink);
}
.radio-card.is-checked .radio-box {
  border-color: var(--voltage);
}
.radio-card.is-checked .radio-dot { opacity: 1; }
.radio-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.1; }
.radio-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.radio-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

/* Guide offer (free PDF download checkbox) */
.guide-offer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bone);
  border: 1.5px dashed rgba(10,10,11,0.28);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  user-select: none;
}
.guide-offer:hover { border-color: rgba(10,10,11,0.5); }
.guide-offer input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.guide-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid rgba(10,10,11,0.35);
  background: var(--paper);
  display: grid;
  place-items: center;
  color: var(--paper);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.guide-check svg { width: 11px; height: 11px; opacity: 0; transition: opacity 0.18s ease; }
.guide-doc {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--ink);
}
.guide-doc svg { width: 20px; height: 20px; }
.guide-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
  min-width: 0;
}
.guide-title {
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.guide-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--steel);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.guide-tag {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 9px;
  border-radius: 3px;
  background: var(--ink);
  color: var(--bone);
}
.guide-offer.is-checked {
  border-style: solid;
  border-color: var(--voltage);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(43,79,255,0.10);
}
.guide-offer.is-checked .guide-check {
  background: var(--voltage);
  border-color: var(--voltage);
}
.guide-offer.is-checked .guide-check svg { opacity: 1; }
.guide-offer.is-checked .guide-tag {
  background: var(--voltage);
}

@media (max-width: 520px) {
  .guide-offer { gap: 10px; padding: 14px; }
  .guide-doc { display: none; }
  .guide-sub { white-space: normal; }
}

/* Chip grid (annual part count) */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.chip {
  padding: 12px 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bone);
  border: 1.5px solid rgba(10,10,11,0.14);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  text-align: center;
}
.chip:hover { border-color: rgba(10,10,11,0.4); }
.chip.is-checked {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bone);
  box-shadow: 0 2px 0 rgba(43,79,255,0.6);
}

/* Submit row */
.signup-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.signup-btn-block {
  width: 100%;
  padding: 18px 24px;
  justify-content: center;
  border-radius: 4px;
}
.signup-btn-block:disabled,
.signup-btn-block[aria-disabled="true"] {
  background: var(--aluminum);
  color: var(--steel);
  cursor: not-allowed;
  box-shadow: none;
}
.signup-btn-block:disabled:hover,
.signup-btn-block[aria-disabled="true"]:hover {
  background: var(--aluminum);
}
.signup-btn-block:disabled:hover .arrow,
.signup-btn-block[aria-disabled="true"]:hover .arrow {
  transform: none;
}

/* Success state */
.signup-success {
  background: var(--paper);
  border: 1.5px solid var(--voltage);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: left;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 30px 60px -30px rgba(43,79,255,0.45), 0 0 0 6px rgba(43,79,255,0.12);
}
.signup-success .check {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--voltage);
  display: grid;
  place-items: center;
  color: var(--bone);
  font-weight: 900;
}
.signup-success h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.signup-success p {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.5;
}
.signup-success .batch {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin-top: 10px;
  text-transform: uppercase;
}

.error-msg {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ano-red);
}

/* === SPECTRUM === */
.spectrum {
  padding: 48px 0 72px;
  position: relative;
  z-index: 5;
}
.spectrum .section-head {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}
.spectrum .spectrum-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--voltage);
  margin-bottom: 14px;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
}
.spectrum .section-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 14px;
  color: var(--ink);
}
.spectrum .section-head p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--steel);
  max-width: 560px;
  margin: 0 auto;
}

.color-bar-tiles {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}
.color-swatch {
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 28px -8px rgba(10,10,11,0.28);
}
.color-swatch:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -10px rgba(10,10,11,0.36);
}
.color-swatch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.18) 0%, transparent 40%, rgba(0,0,0,0.25) 100%);
}
.color-swatch .label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  z-index: 2;
}
.color-swatch .code {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(255,255,255,0.7);
  z-index: 2;
}

@media (max-width: 980px) {
  .color-bar-tiles { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .color-bar-tiles { grid-template-columns: repeat(2, 1fr); }
}

/* === FOOTER STRIP === */
.foot {
  position: relative;
  z-index: 5;
  padding: 0 0 28px;
}
.color-bar {
  height: 6px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--ano-clear) 0%, var(--ano-bronze) 14%, var(--ano-gold) 28%, var(--ano-red) 42%, var(--ano-purple) 56%, var(--ano-blue) 70%, var(--ano-teal) 84%, var(--ano-black) 100%);
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.color-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50%      { transform: translateX(100%); }
}

.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  flex-wrap: wrap;
}
.foot-row a { color: var(--steel); text-decoration: none; transition: color 0.2s; }
.foot-row a:hover { color: var(--ink); }
.foot-links { display: flex; gap: 28px; }

/* === RESPONSIVE === */
@media (max-width: 980px) {
  .workflow-rail { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid rgba(10,10,11,0.08); }
  .nav-meta .est { display: none; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .workflow-rail { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(10,10,11,0.08); }
  .step:last-child { border-bottom: none; }
  .signup-shell { flex-direction: column; }
  .signup-btn { padding: 16px; justify-content: center; }
  .signup-meta { flex-direction: column; gap: 8px; align-items: center; }
  .foot-row { flex-direction: column; gap: 14px; text-align: center; }
  .center { padding: 40px 0; }
  .headline { font-size: clamp(44px, 12vw, 84px); }

  /* Compact signup-wide for small screens */
  .signup-wide { padding: 22px; gap: 18px; }
  .grid-2 { grid-template-columns: 1fr; }
  .radio-row { grid-template-columns: 1fr; }
  .chip-grid { grid-template-columns: repeat(2, 1fr); }

  /* nav — keep on one line, scale down */
  .nav { padding: 20px 0; }
  .nav-inner { gap: 12px; }
  .logo { gap: 8px; }
  .logo-mark { width: 26px; height: 26px; }
  .logo-mark::before { font-size: 12px; }
  .logo-word { font-size: 13px; letter-spacing: 0; }
  .nav-meta .nav-eyebrow { font-size: 9px; letter-spacing: 0.14em; height: 26px; padding: 0 10px; }
}

@media (max-width: 400px) {
  .logo-word { font-size: 11px; }
  .nav-meta .nav-eyebrow { font-size: 8px; letter-spacing: 0.1em; height: 24px; padding: 0 8px; }
}
