/* ============================================================
   ACO BY ANT — Drop Operations & Checkout Intake System
   Cybernetic Tactical Glass Theme
   ============================================================ */

:root {
  /* Surface & Base */
  --void: #030611;
  --bg: #050a1b;
  --surface-1: #09122c;
  --surface-2: #0e1c45;
  --surface-3: #15265c;
  --surface-hover: #1b2f6e;

  /* Glassmorphism */
  --glass-bg: rgba(9, 18, 44, 0.72);
  --glass-card: rgba(14, 28, 69, 0.65);
  --glass-border: rgba(56, 189, 248, 0.18);
  --glass-border-strong: rgba(56, 189, 248, 0.45);
  --glass-blur: blur(24px) saturate(180%);

  /* Neon & Brand Accents */
  --blue-core: #2563eb;
  --blue-light: #3b82f6;
  --blue-glow: rgba(37, 99, 235, 0.35);
  --cyan-core: #00f5ff;
  --cyan-light: #38bdf8;
  --cyan-glow: rgba(0, 245, 255, 0.28);
  --cyan-deep: #0284c7;

  /* Status Colors */
  --status-ok: #10b981;
  --status-ok-bg: rgba(16, 185, 129, 0.15);
  --status-warn: #f59e0b;
  --status-warn-bg: rgba(245, 158, 11, 0.15);
  --status-danger: #ef4444;
  --status-danger-bg: rgba(239, 68, 68, 0.15);

  /* Typography Colors */
  --text-1: #ffffff;
  --text-2: #cbd5e1;
  --text-3: #64748b;
  --text-muted: #475569;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 50px -15px rgba(2, 6, 23, 0.85);
  --shadow-glow: 0 0 25px rgba(0, 245, 255, 0.25);
  --shadow-glow-blue: 0 0 35px rgba(37, 99, 235, 0.3);

  /* Geometry & Timing */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1200px;

  /* Fonts */
  --font-display: "Space Grotesk", "Outfit", -apple-system, sans-serif;
  --font-sans: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--void);
  color: var(--text-1);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

#ambient-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  opacity: 0.85;
}

/* ============================================================
   Stage Lighting & Atmospheric Backdrops
   ============================================================ */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(1000px 650px at 15% 5%, rgba(37, 99, 235, 0.25), transparent 60%),
    radial-gradient(850px 600px at 85% 15%, rgba(0, 245, 255, 0.16), transparent 55%),
    radial-gradient(900px 700px at 50% 90%, rgba(37, 99, 235, 0.15), transparent 65%),
    linear-gradient(180deg, #050a1a 0%, #030611 100%);
}

/* Tactical Holographic Micro-Grid & Film Grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

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

/* ============================================================
   Site Header & Floating Island Nav
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(5, 10, 27, 0.78);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-1);
}

.brand img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 12px var(--cyan-glow));
  transition: transform 0.3s var(--ease-spring);
}

.brand:hover img {
  transform: scale(1.06) rotate(2deg);
}

.brand span {
  background: linear-gradient(135deg, #ffffff 60%, var(--cyan-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 28, 69, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 4px 8px;
}

.site-nav a {
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-2);
  transition: all 0.2s ease;
}

.site-nav a:hover {
  color: var(--cyan-core);
  background: rgba(56, 189, 248, 0.1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(0, 245, 255, 0.2));
  border: 1px solid var(--glass-border-strong);
  color: var(--cyan-core);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.15);
  transition: all 0.25s var(--ease-spring);
}

.header-cta:hover {
  background: linear-gradient(135deg, var(--blue-core), var(--cyan-core));
  color: #030611;
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.45);
  transform: translateY(-1px);
}

/* ============================================================
   Layout Container
   ============================================================ */

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* ============================================================
   Buttons & Action Controls
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.25s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-core), var(--cyan-light));
  color: #030712;
  font-weight: 800;
  box-shadow: 0 8px 24px -4px rgba(37, 99, 235, 0.5), 0 0 20px rgba(0, 245, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, var(--cyan-core));
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -4px rgba(37, 99, 235, 0.6), 0 0 30px rgba(0, 245, 255, 0.55);
}

.btn-secondary {
  background: var(--glass-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--text-1);
}

.btn-secondary:hover {
  border-color: var(--cyan-light);
  color: var(--cyan-core);
  background: rgba(21, 38, 92, 0.85);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.25);
  transform: translateY(-2px);
}

.btn-quiet {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-2);
}

.btn-quiet:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.05);
}

.btn-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  background: rgba(14, 28, 69, 0.8);
  border: 1px solid var(--glass-border);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-mini:hover {
  border-color: var(--cyan-light);
  color: var(--cyan-core);
  background: var(--surface-3);
}

.btn-dup {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--glass-border);
  color: var(--cyan-light);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-dup:hover {
  background: var(--cyan-core);
  color: #030712;
  border-color: var(--cyan-core);
}

/* ============================================================
   Hero Section
   ============================================================ */

.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--cyan-light);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-core);
  box-shadow: 0 0 10px var(--cyan-core);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
}

h1 {
  font-size: clamp(44px, 6vw, 76px);
  margin: 24px 0 20px;
  background: linear-gradient(135deg, #ffffff 40%, #cbd5e1 75%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lede {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.6;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.micro-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 12px;
}

.micro-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.micro-row span::before {
  content: "■";
  color: var(--cyan-core);
  font-size: 8px;
}

/* 3D Telemetry Hero Visual Card */
.hero-visual {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(14, 28, 69, 0.75), rgba(6, 12, 32, 0.95));
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-strong);
  box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  gap: 16px;
}

.hero-visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hero-logo-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-logo-box img {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.45));
  transition: transform 0.4s var(--ease-spring);
}

.cooking-pulse {
  animation: ant-cooking 1.2s infinite alternate ease-in-out;
}

@keyframes ant-cooking {
  0% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 15px rgba(0, 245, 255, 0.4)); }
  100% { transform: scale(1.1) rotate(3deg); filter: drop-shadow(0 0 35px rgba(0, 245, 255, 0.85)); }
}

.hero-logo-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-logo-meta strong {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--text-1);
}

.hero-logo-meta span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan-light);
  letter-spacing: 0.08em;
}

.telemetry-terminal {
  width: 100%;
  border-radius: var(--radius-md);
  background: rgba(3, 7, 20, 0.92);
  border: 1px solid var(--glass-border);
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.7);
  margin-top: auto;
}

.telemetry-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
  font-size: 10.5px;
  color: var(--cyan-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.telemetry-feed {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 110px;
  max-height: 120px;
  overflow: hidden;
}

.telemetry-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: line-fade-in 0.25s ease forwards;
}

@keyframes line-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.sim-btn-wrap {
  margin-top: 6px;
}

.sim-btn-wrap .btn-mini {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.35), rgba(0, 245, 255, 0.25));
  border-color: var(--cyan-light);
  color: var(--cyan-core);
  padding: 8px 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
}

.sim-btn-wrap .btn-mini:hover {
  background: linear-gradient(135deg, var(--blue-core), var(--cyan-core));
  color: #030611;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

/* ============================================================
   Section Headings
   ============================================================ */

.section {
  padding: 96px 0;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
  position: relative;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
}

.section-kicker {
  color: var(--cyan-light);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.section-head p {
  color: var(--text-2);
  max-width: 480px;
  margin: 0;
}

/* ============================================================
   Service Paths Comparison Cards
   ============================================================ */

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

.service-card {
  position: relative;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--glass-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--ease-spring);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--cyan-light);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-4px);
}

.service-card--primary {
  border-color: var(--blue-light);
  background: linear-gradient(160deg, rgba(14, 28, 69, 0.8), rgba(9, 18, 44, 0.9));
  box-shadow: 0 10px 40px -10px rgba(37, 99, 235, 0.35);
}

.service-card--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-core), transparent);
}

.service-number {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-light);
}

.service-price {
  position: absolute;
  top: 32px;
  right: 36px;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.service-price span {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--cyan-core);
  margin-top: 4px;
  text-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
}

.service-card h3 {
  font-size: 28px;
  margin: 36px 0 16px;
}

.service-card p {
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 0 24px;
}

.service-points {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: grid;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  font-size: 14px;
  color: var(--text-2);
}

.service-points li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-points li::before {
  content: "✦";
  color: var(--cyan-core);
  font-size: 11px;
}

/* ============================================================
   Retailer Lanes Grid
   ============================================================ */

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

.lane {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--glass-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--ease-spring);
  display: flex;
  flex-direction: column;
}

.lane:hover {
  border-color: var(--cyan-light);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-4px);
}

.lane-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.lane h3 {
  font-size: 32px;
  margin-top: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--glass-border);
  color: var(--cyan-light);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lane p {
  color: var(--text-2);
  margin: 0 0 24px;
}

.lane-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}

.lane-list li {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(4, 8, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 13px;
  color: var(--text-2);
}

.lane-list strong {
  display: block;
  color: var(--text-1);
  font-family: var(--font-mono);
  font-size: 12px;
  margin-bottom: 4px;
}

.lane .btn {
  margin-top: auto;
  width: 100%;
}

/* ============================================================
   Steps & Operational Workflow
   ============================================================ */

.requirements {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.requirement-note {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(14, 28, 69, 0.7), rgba(9, 18, 44, 0.9));
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

.requirement-note strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  margin: 16px 0 12px;
}

.requirement-note p {
  color: var(--text-2);
  margin: 0;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--glass-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  transition: all 0.25s ease;
}

.step:hover {
  border-color: var(--cyan-light);
  transform: translateX(4px);
}

.step-index {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 800;
  color: var(--cyan-core);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: rgba(0, 245, 255, 0.1);
  border: 1px solid rgba(0, 245, 255, 0.25);
}

.step h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.step p {
  color: var(--text-2);
  margin: 0;
  font-size: 14px;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.process-step {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
}

.process-step b {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--cyan-core);
  margin-bottom: 8px;
}

.process-step strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.process-step span {
  color: var(--text-2);
  font-size: 14px;
}

/* ============================================================
   Form Pages & Intake Cards (target.html / pokemon.html)
   ============================================================ */

.form-page {
  padding: 60px 0 100px;
}

.form-intro {
  margin-bottom: 40px;
}

.form-intro h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 16px 0 12px;
}

.form-intro p {
  color: var(--text-2);
  font-size: 16px;
  max-width: 620px;
}

.form-shell {
  display: grid;
  gap: 32px;
}

.form-block {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--glass-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

.form-block h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.form-block p {
  color: var(--text-2);
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 24px;
}

.block-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.block-head h2 {
  margin-bottom: 4px;
}

.block-head p {
  margin-bottom: 0;
}

/* Choice Grid (Service selector) */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.choice {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(6, 12, 30, 0.6);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  position: relative;
}

.choice:hover {
  border-color: var(--blue-light);
  background: rgba(14, 28, 69, 0.7);
}

.choice input[type="radio"] {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 18px;
  height: 18px;
  accent-color: var(--cyan-core);
}

.choice b {
  font-size: 16px;
  color: var(--text-1);
  margin-bottom: 6px;
  padding-right: 32px;
}

.choice span {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 12px;
  line-height: 1.5;
}

.choice em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan-light);
  letter-spacing: 0.05em;
  margin-top: auto;
}

.choice:has(input[type="radio"]:checked) {
  border-color: var(--cyan-core);
  background: rgba(14, 34, 85, 0.75);
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.2);
}

/* Form Fields & Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-help {
  font-size: 11px;
  color: var(--text-3);
  text-transform: none;
  letter-spacing: normal;
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(4, 8, 22, 0.85);
  border: 1px solid var(--glass-border);
  color: var(--text-1);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--cyan-core);
  background: rgba(6, 12, 34, 0.95);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.25);
}

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

.subhead {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-light);
  margin: 24px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--glass-border);
}

/* Contained Deck Viewport (Accounts & Profiles) */
.deck-container {
  max-height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px;
  border-radius: var(--radius-md);
  background: rgba(4, 8, 20, 0.6);
  border: 1px solid var(--glass-border);
  margin: 12px 0 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan-core) rgba(6, 12, 30, 0.8);
}

.deck-container::-webkit-scrollbar {
  width: 6px;
}
.deck-container::-webkit-scrollbar-track {
  background: rgba(6, 12, 30, 0.8);
  border-radius: 4px;
}
.deck-container::-webkit-scrollbar-thumb {
  background: var(--cyan-core);
  border-radius: 4px;
}

/* Deck Management Toolbar */
.deck-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 14px 0 8px;
  flex-wrap: wrap;
}

.deck-search-wrap {
  flex: 1;
  min-width: 220px;
}

.deck-search {
  width: 100%;
  padding: 8px 14px;
  font-size: 13px;
  font-family: var(--font-sans);
  background: rgba(6, 12, 30, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-1);
  transition: all 0.2s ease;
}

.deck-search:focus {
  outline: none;
  border-color: var(--cyan-core);
  box-shadow: 0 0 12px var(--cyan-glow);
}

.deck-toolbar-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-danger-soft {
  color: #f87171 !important;
  border-color: rgba(239, 68, 68, 0.25) !important;
}
.btn-danger-soft:hover {
  background: rgba(239, 68, 68, 0.15) !important;
  border-color: #ef4444 !important;
}

/* Card item containers (Accounts & Profiles) */
.form-card {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(6, 12, 30, 0.7);
  border: 1px solid var(--glass-border);
  margin-bottom: 10px;
  transition: all 0.2s ease;
}

.form-card:last-child {
  margin-bottom: 0;
}

.form-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.form-card:not(.is-collapsed) .card-head {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}

.card-head-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
  cursor: pointer;
}

.card-expand-icon {
  font-size: 11px;
  color: var(--cyan-core);
  transition: transform 0.2s ease;
  display: inline-block;
  width: 14px;
  text-align: center;
}

.card-title {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-core);
  margin: 0;
  white-space: nowrap;
}

.card-summary {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.card-actions {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}

/* Collapsed Card State */
.form-card.is-collapsed {
  padding: 10px 16px;
  background: rgba(6, 12, 30, 0.45);
}

.form-card.is-collapsed:hover {
  background: rgba(6, 12, 30, 0.7);
  border-color: rgba(56, 189, 248, 0.4);
}

.form-card.is-collapsed .card-expand-icon {
  transform: rotate(-90deg);
}

.form-card.is-collapsed .card-body {
  display: none;
}

.empty {
  padding: 24px;
  text-align: center;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 13px;
  border: 1px dashed var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

/* Checkbox Switch & Toggles */
.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 18px 0;
}

.check, .consent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  user-select: none;
}

.check input[type="checkbox"], .consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--cyan-core);
  cursor: pointer;
}

.consent {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(6, 12, 30, 0.6);
  border: 1px solid var(--glass-border);
  margin-top: 16px;
  width: 100%;
}

/* Bulk Import Drawer */
.bulk-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  margin-bottom: 24px;
}

.bulk-box {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(4, 8, 22, 0.7);
  border: 1px solid var(--glass-border);
}

.bulk-box strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  margin-bottom: 4px;
  color: var(--text-1);
}

.bulk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  align-items: center;
}

.bulk-actions input[type="file"] {
  display: none;
}

/* Form Submit Bar & Status Message */
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}

.status {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cyan-light);
  min-height: 24px;
}

.status.err {
  color: var(--status-danger);
}

/* ============================================================
   Admin Console & Submission Inbox
   ============================================================ */

.admin-page {
  padding-bottom: 120px;
}

.admin-login {
  max-width: 440px;
  margin: 40px auto;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--glass-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-strong);
  box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
  display: grid;
  gap: 20px;
}

.admin-login h2 {
  font-size: 26px;
  margin: 0;
  text-align: center;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.metric {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
}

.metric span {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}

.metric b {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--cyan-core);
  text-shadow: 0 0 15px rgba(0, 245, 255, 0.35);
}

.admin-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.admin-panel {
  border-radius: var(--radius-lg);
  background: var(--glass-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}

.admin-table th {
  padding: 16px 20px;
  background: rgba(4, 7, 20, 0.8);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  border-bottom: 1px solid var(--glass-border);
}

.admin-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-2);
}

.admin-table tr:hover td {
  background: rgba(56, 189, 248, 0.04);
}

.admin-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-top: 1px solid var(--glass-border);
  background: rgba(4, 7, 20, 0.4);
}

.admin-settings {
  margin-top: 32px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
}

.admin-settings summary {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan-light);
  cursor: pointer;
}

.admin-settings form {
  margin-top: 20px;
  display: grid;
  gap: 16px;
  max-width: 400px;
}

/* Submission Inspect Dialog */
dialog {
  border-radius: var(--radius-lg);
  background: #09122c;
  color: var(--text-1);
  border: 1px solid var(--glass-border-strong);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), var(--shadow-glow-blue);
  padding: 32px;
  max-width: 800px;
  width: 90vw;
}

dialog::backdrop {
  background: rgba(3, 6, 17, 0.85);
  backdrop-filter: blur(8px);
}

.dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

dialog pre {
  background: rgba(4, 7, 20, 0.9);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  font-family: var(--font-mono);
  font-size: 12px;
  overflow-x: auto;
  max-height: 480px;
  color: var(--cyan-light);
}

.dialog-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 12px;
  flex-wrap: wrap;
}

.dialog-tab {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--glass-border);
  color: var(--text-2);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.dialog-tab:hover {
  background: rgba(56, 189, 248, 0.1);
  color: var(--text-1);
}

.dialog-tab.active {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--cyan);
  color: var(--cyan-light);
  font-weight: 700;
}

.dialog-file-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.dialog-file-info {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
}

/* ============================================================
   Footer
   ============================================================ */

footer {
  padding: 40px 0;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 12px;
}

.footer-row {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Thank You / Confirmation Screen */
.thankyou {
  max-width: 680px;
  margin: 60px auto;
  padding: 60px 40px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--glass-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-strong);
  box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thankyou .ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--cyan-core);
  background: rgba(0, 245, 255, 0.12);
  border: 2px solid var(--cyan-core);
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.35);
  margin-bottom: 24px;
}

.receipt-id {
  display: inline-block;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  background: rgba(4, 8, 22, 0.85);
  border: 1px solid var(--cyan-light);
  color: var(--cyan-core);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 20px auto 32px;
  word-break: break-all;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.btn-ember {
  background: linear-gradient(135deg, var(--blue-core), var(--cyan-core));
  color: #030712;
  font-weight: 800;
  box-shadow: 0 8px 24px -4px rgba(37, 99, 235, 0.5), 0 0 20px rgba(0, 245, 255, 0.35);
}

.btn-ember:hover {
  background: linear-gradient(135deg, #1d4ed8, var(--cyan-light));
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -4px rgba(37, 99, 235, 0.6), 0 0 30px rgba(0, 245, 255, 0.55);
}

/* ============================================================
   Interactive Drop Capacity & Fee Calculator
   ============================================================ */

.calc-box {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--glass-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-strong);
  box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.calc-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.calc-slider-header h3 {
  font-size: 20px;
  margin: 0;
}

.calc-slider-display {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--cyan-core);
  text-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(14, 28, 69, 0.9);
  outline: none;
  border: 1px solid var(--glass-border);
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cyan-core);
  cursor: pointer;
  box-shadow: 0 0 15px var(--cyan-core);
  border: 2px solid #ffffff;
  transition: transform 0.2s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-presets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.preset-btn {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  background: rgba(6, 12, 30, 0.6);
  border: 1px solid var(--glass-border);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-2);
  transition: all 0.2s ease;
}

.preset-btn:hover, .preset-btn.active {
  background: rgba(0, 245, 255, 0.15);
  border-color: var(--cyan-core);
  color: var(--cyan-core);
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.2);
}

.calc-mode-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.calc-mode-label {
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(6, 12, 30, 0.6);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.2s ease;
}

.calc-mode-label input {
  display: none;
}

.calc-mode-label:has(input:checked) {
  border-color: var(--cyan-core);
  background: rgba(14, 34, 85, 0.7);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

.calc-result-box {
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(4, 8, 22, 0.85);
  border: 1px solid var(--glass-border-strong);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.calc-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-2);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-stat-row b {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--text-1);
}

.calc-rate-badge {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid rgba(0, 245, 255, 0.3);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

/* ============================================================
   Interactive FAQ Accordion
   ============================================================ */

.faq-grid {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--glass-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover, .faq-item.is-open {
  border-color: var(--cyan-light);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  background: transparent;
  border: none;
  cursor: pointer;
}

.faq-icon {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--cyan-core);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-spring);
  padding: 0 26px;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.6;
}

.faq-item.is-open .faq-answer {
  padding-bottom: 22px;
}

/* ============================================================
   Responsive Breakpoints
   ============================================================ */

@media (max-width: 960px) {
  .hero-grid,
  .services,
  .lane-grid,
  .requirements,
  .bulk-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }
  .admin-grid,
  .admin-filters,
  .process-strip {
    grid-template-columns: 1fr;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }
  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .form-grid,
  .form-grid--three {
    grid-template-columns: 1fr;
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .form-block {
    padding: 20px;
  }
}
