/* ─────────────────────────────────────────────────────────────────
   azDrum Solutions — shared stylesheet
   All pages link to this file. Page-specific overrides go in a
   <style> block at the bottom of each page's <head> if needed.
───────────────────────────────────────────────────────────────── */

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --dark:          #0C0E16;
  --dark-2:        #141720;
  --dark-3:        #1D2235;
  --dark-border:   rgba(255,255,255,0.08);
  --dark-border-2: rgba(255,255,255,0.14);
  --light:         #F2F4F8;
  --surface:       #FFFFFF;
  --ink:           #0B1220;
  --body:          #374151;
  --muted:         #6B7280;
  --border:        #D8DCE8;
  --border-light:  #E8EBF2;
  --accent:        #6366F1;
  --accent-dark:   #818CF8;
  --accent-strong: #4F46E5;
  --accent-soft:   #EEF2FF;
  --max:           1160px;
  --radius:        14px;
  --radius-sm:     8px;
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --dur:           240ms;
  --dur-slow:      380ms;
  --font-display:  'Space Grotesk', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --dot-light:     radial-gradient(circle, rgba(99,102,241,0.07) 1px, transparent 1px);
  --dot-dark:      radial-gradient(circle, rgba(99,102,241,0.18) 1px, transparent 1px);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a   { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto;
}

/* ─── NAV ────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(12, 14, 22, 0.94);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--dark-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 64px;
}

.brand img {
  height: 20px;
  width: auto;
  opacity: 0.9;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--dur) var(--ease);
}

.nav a:hover,
.nav a.current { color: #fff; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.925rem;
  font-weight: 600;
  transition: background var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  box-shadow: 0 6px 20px rgba(99,102,241,0.35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(99,102,241,0.42);
}

.btn-primary:active { transform: scale(0.98); transition-duration: 80ms; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.7);
  font-size: 0.925rem;
  font-weight: 500;
  transition: border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.42);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost:active { transform: scale(0.98); transition-duration: 80ms; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--surface);
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}

.btn-outline:hover {
  border-color: var(--accent-strong);
  box-shadow: 0 4px 16px rgba(79,70,229,0.12);
  transform: translateY(-1px);
}

/* ─── SECTION LABEL ──────────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.label-ink { color: var(--accent-strong); }
.label-dim { color: var(--accent-dark); }

/* ─── HERO (shared base) ─────────────────────────────────────── */
.hero-section {
  background: var(--dark);
  padding: 9.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--dot-dark);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -15%; right: -8%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(99,102,241,0.35);
  background: rgba(99,102,241,0.1);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-kicker::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-dark);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 17ch;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent-dark);
}

/* Subpage hero variant — smaller */
.hero-section.subpage .hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  max-width: 22ch;
}

.hero-sub {
  margin-top: 1.6rem;
  max-width: 50ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* ─── STATS STRIP ────────────────────────────────────────────── */
.stats-strip {
  background: var(--dark-2);
  border-bottom: 1px solid var(--dark-border-2);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  padding: 2rem;
  border-right: 1px solid var(--dark-border-2);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}

.stat-number sup {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-dark);
  vertical-align: super;
}

.stat-label {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.4;
}

/* ─── WHO I HELP ─────────────────────────────────────────────── */
.who-section {
  background: var(--surface);
  padding: 5.5rem 0;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.who-headline {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--ink);
}

.who-headline em {
  font-style: normal;
  color: var(--accent-strong);
}

.who-body {
  margin-top: 1.1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  max-width: 46ch;
}

.who-tiles {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.who-tile {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-light);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}

.who-tile::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent-strong);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease);
}

.who-tile:hover {
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(15,18,40,0.07);
  transform: translateX(2px);
}

.who-tile:hover::before { opacity: 1; }

.who-tile-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.who-tile-icon svg { width: 15px; height: 15px; color: var(--accent-strong); stroke-width: 2; }

.who-tile-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.925rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.who-tile-text span {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
  margin-top: 0.2rem;
}

/* ─── STATEMENT BAND ─────────────────────────────────────────── */
.statement-section {
  background: var(--dark);
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
  background-image: var(--dot-dark);
  background-size: 28px 28px;
}

.statement-mark {
  position: absolute;
  right: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  height: clamp(14rem, 26vw, 24rem);
  width: auto;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

.statement-inner { position: relative; z-index: 2; max-width: 780px; }

.statement-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #fff;
}

.statement-quote em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
}

.statement-attr {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: rgba(255,255,255,0.52);
  font-size: 0.84rem;
}

.statement-attr::before {
  content: "";
  display: block;
  width: 28px; height: 1px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ─── HOW I WORK ─────────────────────────────────────────────── */
.how-section {
  background: var(--dark-3);
  padding: 5.5rem 0;
}

.how-header { margin-bottom: 2.75rem; }

.how-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 28ch;
  line-height: 1.15;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
}

.how-card {
  background: rgba(255,255,255,0.03);
  border: 1.5px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease),
              background var(--dur-slow) var(--ease);
}

.how-card:hover {
  border-color: rgba(99,102,241,0.45);
  background: rgba(99,102,241,0.05);
  transform: translateY(-3px);
}

.how-number {
  display: none;
}

.how-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.how-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ─── DUAL-LAYER DELIVERY ────────────────────────────────────── */
.delivery-section {
  background: var(--light);
  background-image: var(--dot-light);
  background-size: 24px 24px;
  padding: 5.5rem 0;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.125rem;
  align-items: stretch;
}

.delivery-main {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--accent-strong);
  border-radius: var(--radius);
  padding: 2.25rem 2.25rem 2.25rem 2rem;
}

.delivery-main h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1rem;
}

.delivery-main p {
  font-size: 0.95rem;
  color: var(--body);
  line-height: 1.7;
}

.delivery-main p + p { margin-top: 0.8rem; }

.delivery-pills {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
  justify-content: space-between;
}

.delivery-pill {
  background: var(--surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.4rem 1.125rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}

.delivery-pill::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent-strong);
  border-radius: 0 2px 2px 0;
}

.delivery-pill:hover {
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(15,18,40,0.07);
  transform: translateX(2px);
}

.delivery-pill h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.delivery-pill p {
  margin-top: 0.3rem;
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── PACKAGES SECTION (shared card system) ──────────────────── */
.packages-section {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  padding: 5.5rem 0;
}

.packages-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.25rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.packages-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.packages-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-strong);
  white-space: nowrap;
  transition: gap var(--dur) var(--ease);
}

.packages-view-all:hover { gap: 0.65rem; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
}

.package-card {
  background: var(--surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-slow) var(--ease),
              border-color var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease);
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-strong), #8B5CF6);
  border-radius: var(--radius) var(--radius) 0 0;
}

.package-card:hover {
  transform: translateY(-3px);
  border-color: var(--border);
  box-shadow: 0 8px 28px rgba(15,18,40,0.09);
}

.package-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  margin-top: 0.5rem;
}

.package-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.pkg-cta {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-strong);
  transition: gap var(--dur) var(--ease);
}

.package-card:hover .pkg-cta { gap: 0.6rem; }

/* ─── CONTENT SECTIONS (light) ───────────────────────────────── */
.content-section {
  background: var(--surface);
  padding: 5.5rem 0;
}

.content-section.tinted {
  background: var(--light);
  background-image: var(--dot-light);
  background-size: 24px 24px;
}

.content-section.dark {
  background: var(--dark-3);
  padding: 5.5rem 0;
}

.section-header { margin-bottom: 2.75rem; }

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.15;
}

.section-headline.light { color: #fff; }

.section-sub {
  margin-top: 0.85rem;
  font-size: 1rem;
  color: var(--body);
  max-width: 54ch;
  line-height: 1.65;
}

.section-sub.dim { color: rgba(255,255,255,0.65); }

/* ─── CONTENT CARD (light, shared) ───────────────────────────── */
.content-card {
  background: var(--surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}

.content-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent-strong);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease);
}

.content-card:hover {
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(15,18,40,0.07);
  transform: translateX(2px);
}

.content-card:hover::before { opacity: 1; }

.content-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.content-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Dark variant */
.content-card.dark-card {
  background: rgba(255,255,255,0.03);
  border-color: var(--dark-border);
}

.content-card.dark-card::before { background: var(--accent-dark); }

.content-card.dark-card:hover {
  border-color: rgba(99,102,241,0.45);
  background: rgba(99,102,241,0.05);
  transform: translateY(-3px);
  box-shadow: none;
}

.content-card.dark-card h3 { color: #fff; }
.content-card.dark-card p  { color: rgba(255,255,255,0.65); }

/* ─── INLINE PROSE ────────────────────────────────────────────── */
.prose p {
  font-size: 0.975rem;
  color: var(--body);
  line-height: 1.75;
  max-width: 62ch;
}

.prose p + p { margin-top: 0.9rem; }

.prose ul {
  margin-top: 0.9rem;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.prose li {
  font-size: 0.9rem;
  color: var(--body);
  line-height: 1.6;
}

.prose li::marker { color: var(--accent-strong); }

.prose strong { font-weight: 600; color: var(--ink); }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.125rem;
}

.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  transition: border-color var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease);
}

.faq-item:hover {
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(15,18,40,0.06);
}

.faq-item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

.faq-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── FORM ───────────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.field { display: grid; gap: 0.45rem; }
.field.full { grid-column: 1 / -1; }

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}

input,
textarea,
select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 0.925rem;
  padding: 0.8rem 1rem;
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}

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

.field-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease);
}

.check:hover { border-color: var(--accent-strong); }

.check:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.check input { width: auto; margin: 0; accent-color: var(--accent); }
.check span  { font-size: 0.9rem; font-weight: 500; color: var(--ink); }

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}

.turnstile-wrap {
  padding: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  padding: 4rem 0 2.75rem;
  position: relative;
  overflow: hidden;
}

.footer-mark {
  position: absolute;
  right: -2.5rem;
  bottom: -2.5rem;
  width: 220px;
  opacity: 0.06;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.footer-logo img {
  height: 20px;
  opacity: 0.85;
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  max-width: 34ch;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-end;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  transition: color var(--dur) var(--ease);
}

.footer-links a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  margin-top: 2.75rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.32);
  position: relative;
  z-index: 2;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .who-grid,
  .delivery-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
  .how-grid,
  .packages-grid,
  .faq-grid          { grid-template-columns: 1fr; }
  .stats-inner       { grid-template-columns: 1fr; }
  .stat-item         { border-right: none; border-bottom: 1px solid var(--dark-border-2); }
  .stat-item:last-child { border-bottom: none; }
  .footer-inner      { grid-template-columns: 1fr; }
  .footer-links      { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
  .footer-bottom     { flex-direction: column; gap: 0.4rem; text-align: center; }
  .packages-header   { flex-direction: column; align-items: flex-start; }
  .form-grid,
  .checkbox-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav               { display: none; }
  .hero-headline     { font-size: clamp(2.2rem, 9vw, 3rem); }
}

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

/* ─── FOOTER PRONUNCIATION ───────────────────────────────────── */
.footer-pronunciation {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  margin-top: 0.06rem;
  margin-bottom: 0.80rem;
  letter-spacing: 0.01em;
}

/* ─── DUAL-LAYER DELIVERY HIGHLIGHT ─────────────────────────── */
.dld-highlight {
  color: var(--accent-dark);
  font-weight: 600;
}

/* ─── KICKER INLINE MARK (m² logo in hero kicker) ───────────── */
.kicker-mark {
  height: 0.95em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0 -0.05em 0.1em;
  filter: brightness(0) saturate(100%) invert(65%) sepia(50%) saturate(800%) hue-rotate(200deg) brightness(105%);
}

/* ─── KICKER INLINE M² (text span replacement) ──────────────── */
.kicker-m2 {
  text-transform: none;
  font-family: var(--font-display);
  font-weight: 700;
  color: inherit;
  letter-spacing: 0;
  font-size: 1.3em;
  display: inline;
}

/* ─── PROMPT CALLOUT ─────────────────────────────────────────── */
.prompt-section {
  background: var(--dark);
  background-image: var(--dot-dark);
  background-size: 28px 28px;
  padding: 4.5rem 0;
}

.prompt-callout {
  background: var(--dark-2);
  border: 1.5px solid var(--dark-border-2);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.prompt-callout-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
}

.prompt-callout-headline {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 38ch;
}

.prompt-callout-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 58ch;
  margin-bottom: 1.75rem;
}

.prompt-block {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.prompt-when {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.prompt-file {
  display: inline-block;
  padding: 0.1em 0.45em;
  border-radius: 4px;
  background: rgba(99,102,241,0.2);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 500;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.prompt-block p {
  color: rgba(255,255,255,0.72);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: none;
  margin-top: 0.65rem;
}

.prompt-block ol {
  margin-top: 0.75rem;
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.prompt-block li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.prompt-block li::marker { color: var(--accent-dark); }

.prompt-layout {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

.prompt-layout > * {
  flex: 1 1 0;
  min-width: 0;
}

/* prose column: keep text pinned to top even when stretched */
.prompt-layout-prose {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.prompt-layout-prose p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: none;
}

.prompt-layout-prose p + p { margin-top: 0.75rem; }

@media (max-width: 900px) {
  .prompt-layout { flex-direction: column; }
}

/* ─── PROMPT INTRO (foundation layer text above the prompt) ─── */
.prompt-intro {
  font-style: italic;
  color: rgba(255,255,255,0.42) !important;
  font-size: 0.82rem !important;
  margin-top: 0 !important;
  margin-bottom: 0.9rem !important;
  padding-bottom: 0.9rem !important;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ─── STANDOUT LINE (callout text in light panels) ───────────── */
.standout-line {
  display: block;
  margin-top: 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-strong);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

/* ─── WORK CALLOUT (about page pull-quote style) ─────────────── */
.work-callout {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent-strong);
  background: var(--accent-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-strong);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

/* ─── PACKAGE HIGHLIGHT ANIMATION ───────────────────────────── */
@keyframes pkg-highlight-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(99,102,241,0);    border-color: var(--border-light); }
  15%  { box-shadow: 0 0 0 6px rgba(99,102,241,0.22), 0 0 36px rgba(99,102,241,0.18); border-color: var(--accent); }
  55%  { box-shadow: 0 0 0 3px rgba(99,102,241,0.12), 0 0 20px rgba(99,102,241,0.1);  border-color: rgba(99,102,241,0.5); }
  100% { box-shadow: none; border-color: var(--border-light); }
}

.pkg-highlight {
  animation: pkg-highlight-pulse 2.2s ease-out forwards;
}
