/* ========================================================================
   TOAI · toaibrands.com
   Single-page landing site. Pure CSS, mobile-first, no framework.
   ======================================================================== */

/* ====== TOKENS ====== */
:root {
  --onyx: #0a0a0a;
  --onyx-soft: #18181b;
  --slate-800: #27272a;
  --slate-700: #3f3f46;
  --slate-500: #71717a;
  --slate-400: #a1a1aa;
  --slate-300: #d4d4d8;
  --bone: #fafafa;
  --bone-soft: #f5f5f4;
  --pulse: #22d3ee;
  --pulse-deep: #0891b2;
  --pulse-glow: rgba(34, 211, 238, 0.18);
  --amber: #f59e0b;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-cyan: 0 0 40px -8px rgba(34,211,238,0.45);

  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
}

/* ====== RESET / BASE ====== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Make HTML `hidden` attribute beat any author display rules */
[hidden] { display: none !important; }
html, body {
  margin: 0; padding: 0;
  background: var(--onyx);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--pulse); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

/* ====== TYPOGRAPHY ====== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--slate-400); font-weight: 600;
}
.eyebrow-cyan { color: var(--pulse); }
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pulse);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.section-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--bone);
}
.section-h2.small { font-size: clamp(22px, 3vw, 28px); }
.section-h2.buy-h2 { font-size: clamp(28px, 3.4vw, 36px); }

.section-sub {
  margin: 16px 0 0;
  color: var(--slate-400);
  font-size: 16px;
  max-width: 600px;
}

.section-head { max-width: 720px; margin-bottom: 32px; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { color: inherit; }
.btn-primary {
  background: var(--pulse);
  color: var(--onyx);
  box-shadow: var(--shadow-cyan);
}
.btn-primary:hover {
  background: #67e8f9;
  box-shadow: 0 0 50px -6px rgba(34,211,238,0.7);
  color: var(--onyx);
}
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(255,255,255,0.18);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  color: var(--bone);
  border-color: rgba(255,255,255,0.3);
}
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: 64px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--bone);
}
.brand-icon { width: 24px; height: 24px; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--bone);
}
.brand:hover { color: var(--bone); }
.brand:hover .brand-word { color: var(--pulse); }

.nav-links {
  display: none;
  gap: 32px;
  font-size: 14px;
  color: var(--slate-300);
}
.nav-links a:hover { color: var(--bone); }
@media (min-width: 768px) {
  .nav-links { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(34,211,238,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero { padding: 120px 0 140px; }
  .hero-grid { grid-template-columns: 1.2fr 1fr; gap: 64px; }
}

.hero-copy { max-width: 600px; }
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 24px 0 24px;
  background: linear-gradient(180deg, #ffffff 0%, #a3a3a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-h1-soft {
  font-weight: 500;
  color: var(--slate-400);
  -webkit-text-fill-color: var(--slate-400);
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--slate-300);
  max-width: 540px;
  line-height: 1.55;
  margin: 0 0 32px;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 40px;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pill {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--slate-400);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  letter-spacing: 0.02em;
}

/* ===== HERO PRODUCT PHOTO ===== */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  margin: 0;
}
.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  /* image is now native onyx — let it blend into the page; keep just the cyan glow */
  box-shadow: 0 0 80px -20px rgba(34,211,238,0.18);
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-glow {
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(34,211,238,0.18) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero-waveform {
  position: absolute;
  inset-inline: -20%;
  bottom: -10%;
  width: 140%;
  height: auto;
  max-height: 200px;
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
   BODY-MAP LEAD MAGNET
   ============================================================ */
.magnet {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--onyx) 0%, #0d1417 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.magnet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .magnet-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
  }
}

.magnet-sub {
  margin: 14px 0 18px;
  color: var(--pulse);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.magnet-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate-300);
  margin: 0 0 28px;
  max-width: 520px;
}
.magnet-trust {
  font-size: 13px;
  color: var(--slate-500);
  margin: 14px 0 0;
}

/* ===== body-map preview card ===== */
.magnet-preview {
  margin: 0;
  position: relative;
}
.preview-card {
  background:
    radial-gradient(at top right, rgba(34,211,238,0.07) 0%, transparent 50%),
    rgba(255,255,255,0.02);
  border-radius: var(--radius-lg);
  padding: 22px 26px 18px;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.6),
    0 0 60px -20px rgba(34,211,238,0.18);
  border: 1px solid rgba(34,211,238,0.20);
  transform: rotate(-1.2deg);
  transition: transform 0.4s ease;
}
.magnet-preview:hover .preview-card { transform: rotate(0deg); }
.preview-bar {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.preview-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--bone);
}
.preview-pages {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-400);
  font-weight: 600;
}
.preview-bodies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.preview-figure-wrap {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 12px 10px 14px;
}
.preview-view-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pulse);
  font-weight: 700;
}
.preview-figure-img {
  width: 100%;
  max-height: 260px;
  height: auto;
  object-fit: contain;
  display: block;
}
.preview-legend {
  display: flex; gap: 16px; justify-content: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 10px;
  color: var(--slate-400);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.preview-legend span { display: inline-flex; align-items: center; gap: 5px; }
.preview-legend i {
  width: 8px; height: 8px; border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.1);
}

.magnet-form {
  display: flex; flex-direction: column; gap: 12px;
}
.form-stack {
  display: flex; flex-direction: column; gap: 10px;
}
.form-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
  font-weight: 600;
}
.form-row {
  display: flex; flex-direction: column; gap: 10px;
}
@media (min-width: 560px) {
  .form-row { flex-direction: row; }
}
.form-input, .form-field input {
  flex: 1;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--bone);
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
  outline: none;
  min-width: 0;
}
.form-input:focus, .form-field input:focus {
  border-color: var(--pulse);
  background: rgba(0,0,0,0.6);
}
.form-input::placeholder, .form-field input::placeholder {
  color: var(--slate-500);
}
/* Inline validation states */
.form-input.input-invalid {
  border-color: #fca5a5;
  background: rgba(127, 29, 29, 0.18);
  box-shadow: 0 0 0 3px rgba(252, 165, 165, 0.12);
}
.form-input.input-valid {
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}
.field-error {
  margin: 4px 0 0;
  min-height: 18px;
  font-size: 13px;
  color: #fca5a5;
  line-height: 1.4;
}
.field-error:empty { display: none; }
.field-suggestion {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--pulse);
  line-height: 1.4;
}
.field-suggestion:empty { display: none; }
.field-suggestion button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--pulse);
  text-decoration: underline;
  cursor: pointer;
}
.field-suggestion button:hover { color: #67e8f9; }
.form-submit {
  position: relative;
}
.form-submit .btn-spinner {
  position: absolute;
  width: 16px; height: 16px;
  border: 2px solid rgba(10,10,10,0.3);
  border-top-color: var(--onyx);
  border-radius: 50%;
  opacity: 0;
  animation: spin 0.8s linear infinite;
}
.form-submit.loading .btn-label { opacity: 0; }
.form-submit.loading .btn-spinner { opacity: 1; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-error {
  margin: 4px 0 0;
  font-size: 13px;
  color: #fca5a5;
  min-height: 18px;
}

.magnet-success {
  text-align: center;
  padding: 24px;
}
.success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--pulse);
  color: var(--onyx);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700;
  margin-bottom: 16px;
  box-shadow: var(--shadow-cyan);
}
.magnet-success h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--bone);
}
.magnet-success p {
  color: var(--slate-300);
  margin: 0 0 20px;
}

/* ============================================================
   MODES
   ============================================================ */
.modes {
  padding: 80px 0;
  background: var(--onyx);
}
.mode-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .mode-grid { grid-template-columns: repeat(3, 1fr); } }
.mode-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.18s, background 0.18s;
}
.mode-card:hover {
  border-color: rgba(34,211,238,0.35);
  background: rgba(34,211,238,0.03);
}
.mode-icon { width: 36px; height: 36px; margin-bottom: 16px; }
.mode-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--bone);
}
.mode-card p {
  font-size: 14px;
  color: var(--slate-300);
  line-height: 1.55;
  margin: 0 0 16px;
}
.mode-meta {
  display: block;
  font-size: 12px;
  color: var(--slate-500);
  letter-spacing: 0.02em;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ============================================================
   CONTROLS / OLED FEATURE
   ============================================================ */
.controls {
  padding: 80px 0;
  background: var(--onyx);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.controls-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .controls-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.controls-photo {
  margin: 0;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, #131820 0%, #050608 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.55);
  aspect-ratio: 1 / 1;
}
.controls-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.controls-sub {
  margin: 16px 0 24px;
  font-size: 17px;
  color: var(--slate-300);
  line-height: 1.55;
  max-width: 520px;
}
.controls-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.controls-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--slate-300);
  line-height: 1.55;
}
.controls-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--pulse);
  border-radius: 50%;
}
.controls-list b { color: var(--bone); font-weight: 600; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  padding: 80px 0;
  background: #0d1417;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.steps {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: var(--onyx);
  padding: 28px;
  display: flex; flex-direction: column;
}
.step-num {
  font-family: ui-monospace, "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--pulse);
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--bone);
}
.step p {
  font-size: 14px;
  color: var(--slate-400);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   USE CASES — Where to use it
   ============================================================ */
.usecases {
  padding: 80px 0;
  background: var(--onyx);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.usecase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px)  { .usecase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .usecase-grid { grid-template-columns: repeat(5, 1fr); } }
.usecase-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.18s, background 0.18s;
}
.usecase-card:hover {
  border-color: rgba(34,211,238,0.35);
  background: rgba(34,211,238,0.03);
}
.usecase-icon { width: 28px; height: 28px; margin-bottom: 14px; }
.usecase-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--bone);
}
.usecase-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--slate-400);
  margin: 0;
}

/* ============================================================
   BEST RESULTS — numbered bullets
   ============================================================ */
.bestresults {
  padding: 80px 0;
  background: #0d1417;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bullets {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 14px;
  max-width: 820px;
}
.bullet {
  display: flex; gap: 18px;
  align-items: flex-start;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}
.bullet-num {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--pulse);
  color: var(--onyx);
  font-family: ui-monospace, "JetBrains Mono", monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 0 28px -10px rgba(34,211,238,0.6);
}
.bullet strong {
  display: block;
  font-size: 16px;
  color: var(--bone);
  font-weight: 600;
  margin-bottom: 4px;
}
.bullet > div span {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate-400);
}

/* ============================================================
   LIFESTYLE BANNER (full-bleed image with overlay headline)
   ============================================================ */
.lifestyle {
  position: relative;
  background: var(--onyx);
  overflow: hidden;
  margin-top: 80px;
  min-height: 380px;
}
.lifestyle-image {
  position: absolute;
  inset: 0;
}
.lifestyle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.lifestyle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 50%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .lifestyle::after {
    background: linear-gradient(180deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.85) 100%);
  }
  .lifestyle-image img { object-position: center center; }
}
.lifestyle-overlay {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  min-height: 380px;
  display: flex;
  align-items: center;
}
.lifestyle-h2 {
  margin: 10px 0 16px;
  color: var(--bone);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.lifestyle-sub {
  margin: 0;
  font-size: 17px;
  color: var(--slate-200, #e5e5e5);
  line-height: 1.55;
  max-width: 460px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* ============================================================
   WHAT'S IN THE BOX
   ============================================================ */
.box {
  padding: 80px 0;
  background: var(--onyx);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.box-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .box-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.box-copy p {
  font-size: 16px;
  color: var(--slate-300);
  line-height: 1.55;
  max-width: 520px;
  margin: 16px 0 24px;
}
.box-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.box-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  color: var(--slate-200, #e5e5e5);
  line-height: 1.4;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.box-list li:last-child { border-bottom: 0; }
.box-bullet {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  background: rgba(34,211,238,0.12);
  color: var(--pulse);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.box-photo {
  margin: 0;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.55);
  aspect-ratio: 1 / 1;
}
.box-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 80px 0;
  background: var(--onyx);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.quote-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 900px) { .quote-grid { grid-template-columns: repeat(3, 1fr); } }
.quote-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
  display: flex; flex-direction: column;
  gap: 14px;
}
.quote-card .stars {
  color: #f5c518;
  font-size: 16px;
  letter-spacing: 2px;
}
.quote-card blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate-200, #e5e5e5);
  font-style: normal;
  letter-spacing: -0.005em;
}
.quote-card figcaption {
  display: flex; flex-direction: column; gap: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: auto;
}
.quote-card figcaption strong {
  font-size: 14px; color: var(--bone); font-weight: 600;
}
.quote-card figcaption span {
  font-size: 12px; color: var(--slate-500);
}

/* ============================================================
   FAQ — native <details> accordion
   ============================================================ */
.faq-section {
  padding: 80px 0;
  background: #0d1417;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.faq-list {
  max-width: 820px;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  color: var(--bone);
  transition: background 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(255,255,255,0.02); }
.faq-item summary strong { font-weight: 600; }
.faq-icon {
  color: var(--pulse);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 22px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--slate-300);
}
.faq-answer a {
  color: var(--pulse);
  text-decoration: none;
  border-bottom: 1px solid rgba(34,211,238,0.4);
}
.faq-answer a:hover { color: #67e8f9; }

/* ============================================================
   ABOUT TOAI — brand panel
   ============================================================ */
.about {
  padding: 80px 0;
  background: var(--onyx);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.about-panel {
  background:
    radial-gradient(at top right, rgba(34,211,238,0.10) 0%, transparent 50%),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 820px;
  margin: 0 auto;
}
@media (min-width: 768px) { .about-panel { padding: 56px; } }
.about-brand {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 24px;
}
.about-icon { width: 36px; height: 36px; flex-shrink: 0; }
.about-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--bone);
  margin: 0;
}
.about-tag {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--pulse);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.about-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate-300);
}
.about-body a {
  color: var(--pulse);
  border-bottom: 1px solid rgba(34,211,238,0.4);
}

/* ============================================================
   BUY BAND — centered stage CTA
   ============================================================ */
.buy-band {
  position: relative;
  padding: 120px 0;
  background: var(--onyx);
  overflow: hidden;
  text-align: center;
}
/* ambient cyan glow behind the CTA — feels like a spotlight on a stage */
.buy-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(34,211,238,0.16) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.buy-wrap {
  position: relative;
  z-index: 1;
  max-width: 780px;
  display: flex; flex-direction: column;
  align-items: center;
}
.buy-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
  color: var(--bone);
}
.buy-headline-soft {
  font-weight: 500;
  color: var(--slate-400);
}
.buy-sub {
  margin: 20px 0 36px;
  color: var(--slate-300);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  max-width: 580px;
}
.buy-cta {
  font-size: 16px;
  padding: 18px 32px;
  letter-spacing: 0.02em;
}
.buy-disclaimer {
  margin: 28px 0 0;
  font-size: 12px;
  color: var(--slate-500);
  letter-spacing: 0.02em;
}

/* ============================================================
   SUPPORT
   ============================================================ */
.support {
  padding: 80px 0;
  background: #0d1417;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.support-head {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}
.support-sub {
  margin: 16px 0 0;
  color: var(--slate-300);
  font-size: 16px;
  line-height: 1.55;
}
.support-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 560px;
  margin: 0 auto;
}
.support-card p {
  color: var(--slate-300);
  font-size: 14px;
  line-height: 1.55;
  margin: 12px 0 24px;
}
.form-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  margin-bottom: 16px;
}
@media (min-width: 520px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
  font-weight: 600;
}
.form-field input { padding: 12px 14px; font-size: 14px; }

.contact-row {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.2);
  transition: border-color 0.18s, background 0.18s;
}
.contact-row:hover {
  border-color: rgba(34,211,238,0.4);
  background: rgba(34,211,238,0.04);
  color: inherit;
}
.contact-icon { width: 28px; height: 28px; flex-shrink: 0; }
.contact-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-400);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-value {
  display: block;
  font-size: 16px;
  color: var(--bone);
  font-weight: 500;
}
.contact-row:hover .contact-value { color: var(--pulse); }

/* ============================================================
   LEGAL PAGES (Privacy, Terms)
   ============================================================ */
.legal {
  padding: 64px 0 80px;
  background: var(--onyx);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.legal-container {
  max-width: 760px;
}
.legal-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 14px 0 12px;
  background: linear-gradient(180deg, #ffffff 0%, #a3a3a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.legal-meta {
  margin: 0 0 32px;
  font-size: 13px;
  color: var(--slate-500);
  letter-spacing: 0.02em;
}
.legal-meta time { color: var(--slate-300); }
.legal-lede {
  margin: 0 0 36px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-200, #e5e5e5);
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
  color: var(--bone);
}
.legal p, .legal li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate-300);
}
.legal p { margin: 0 0 14px; }
.legal ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--bone); font-weight: 600; }
.legal a {
  color: var(--pulse);
  text-decoration: none;
  border-bottom: 1px solid rgba(34,211,238,0.4);
  transition: color 0.15s, border-color 0.15s;
}
.legal a:hover {
  color: #67e8f9;
  border-bottom-color: #67e8f9;
}
.legal-disclaimer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px !important;
  color: var(--slate-500) !important;
  line-height: 1.6 !important;
}
.legal-disclaimer em { color: var(--slate-400); font-style: italic; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 56px 0 32px;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.brand-footer .brand-word { font-size: 20px; }
.footer-tagline {
  margin: 0;
  color: var(--slate-400);
  font-size: 14px;
}
.footer-middle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
@media (min-width: 768px) {
  .footer-middle { grid-template-columns: repeat(4, 1fr); gap: 40px; }
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-400);
  font-weight: 600;
  margin: 0 0 6px;
}
.footer-col a {
  font-size: 13px;
  color: var(--slate-300);
}
.footer-col a:hover { color: var(--pulse); }

.footer-bottom {
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.footer-disclaimer {
  margin: 0;
  font-size: 11px;
  font-style: italic;
  color: var(--slate-500);
  line-height: 1.55;
  max-width: 720px;
}
.footer-copyright {
  margin: 0;
  font-size: 11px;
  color: var(--slate-500);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
