/* Phoenix Growth Collective — site styles */

:root {
  --navy-950: #060f29;
  --navy-900: #0a1838;
  --navy-800: #112553;
  --navy-700: #1b3577;
  --blue-600: #1e6cff;
  --blue-500: #3a82ff;
  --blue-400: #6aa1ff;
  --blue-100: #e6efff;
  --blue-50:  #f1f6ff;

  --ink: #0c1530;
  --ink-2: #2a3556;
  --muted: #5a657f;
  --line: rgba(12, 21, 48, 0.10);
  --line-soft: rgba(12, 21, 48, 0.06);
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --bg-cream: #fbfaf6;

  --shadow-sm: 0 1px 0 rgba(12,21,48,0.04), 0 1px 2px rgba(12,21,48,0.06);
  --shadow-md: 0 12px 28px -16px rgba(12,21,48,0.22), 0 2px 6px rgba(12,21,48,0.06);
  --shadow-lg: 0 30px 60px -28px rgba(12,21,48,0.30), 0 8px 24px -12px rgba(12,21,48,0.18);

  --radius: 14px;
  --radius-lg: 22px;

  --font-display: "Archivo", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

/* ── layout ─────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-600);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--blue-600);
}

.eyebrow.on-dark { color: var(--blue-400); }
.eyebrow.on-dark::before { background: var(--blue-400); }

/* ── nav ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
}
.nav-links a { transition: color .15s; }
.nav-links a:hover { color: var(--blue-600); }

/* ── Mobile nav (hamburger + drop-down sheet) ─────────────────── */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .2s, top .2s, opacity .15s;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid var(--line-soft);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 20px;
    font-size: 17px;
    /* hidden by default */
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line-soft);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-links a.btn-primary {
    margin-top: 12px;
    border-bottom: 0;
    justify-content: center;
    padding: 14px 22px;
  }
}

.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 800; letter-spacing: 0.08em;
  font-size: 14px;
  color: var(--navy-900);
  text-transform: uppercase;
}
.brand-sub {
  font-weight: 500;
  color: var(--blue-600);
  letter-spacing: 0.16em;
  font-size: 10px;
  display: block;
  margin-top: 1px;
}

.brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background:
    radial-gradient(120% 120% at 0% 0%, var(--blue-500), var(--navy-900) 70%);
  position: relative;
  box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: white;
  flex-shrink: 0;
}
.brand-mark::after {
  content: "P";
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
}

/* logo image — full Phoenix lockup ─────────────────── */
.brand-logo {
  display: block;
  height: 48px;
  width: auto;
  border-radius: 9px;
  background: #000;
  flex-shrink: 0;
}

/* logo image — just the phoenix bird, cropped from lockup ── */
.brand-mark-img {
  width: 44px; height: 44px;
  border-radius: 10px;
  background-color: #000;
  background-image: url('assets/phoenix-logo.jpeg');
  background-size: 200% 270%;
  background-position: center 18%;
  background-repeat: no-repeat;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.brand-tagline {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-600);
  display: block;
  margin-top: 2px;
}
@media (max-width: 640px) { .brand-tagline { display: none; } }

/* hero watermark: massive bird, dimmed ─────────────── */
.hero-watermark {
  position: absolute;
  top: 50%; right: -6%;
  transform: translateY(-50%);
  width: 720px; height: 720px;
  background-image: url('assets/phoenix-logo.jpeg');
  background-size: 175% 240%;
  background-position: center 14%;
  background-repeat: no-repeat;
  opacity: 0.20;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black 30%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 65%);
  z-index: 0;
}
@media (max-width: 960px) {
  .hero-watermark { width: 460px; height: 460px; right: -28%; opacity: 0.14; }
}

.hero-inner > * { position: relative; z-index: 1; }

/* ── Screen-reader-only utility (SEO/AI crawler readable, visually hidden) ─ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* footer big lockup ─────────────────────────────────── */
.footer-logo {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 12px;
  background: #000;
}

/* ── FOUNDER PROFILES ─────────────────────────────────── */
.founders {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 60px;
}
.founder {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.founder.reverse { grid-template-columns: 1.15fr 0.85fr; }
.founder.reverse .founder-media { order: 2; }

@media (max-width: 900px) {
  .founder, .founder.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .founder.reverse .founder-media { order: 0; }
  .founders { margin-top: 56px; padding-top: 48px; }
}

.founder-media {
  position: relative;
}
.founder-photo-real {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  display: block;
  box-shadow: var(--shadow-md);
}
.founder-photo-real.placeholder {
  background:
    repeating-linear-gradient(135deg,
      rgba(12,21,48,0.06) 0 14px,
      rgba(12,21,48,0.03) 14px 28px);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(12,21,48,0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
  box-shadow: none;
}
.founder-badge {
  position: absolute;
  left: -10px; bottom: 18px;
  background: var(--blue-600);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 900px) { .founder-badge { left: 16px; bottom: 16px; } }

.founder-body .eyebrow { color: var(--blue-600); }
.founder-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.02em;
  margin-top: 10px;
  line-height: 1.05;
}
.founder-role {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.founder-bio {
  margin-top: 22px;
  display: grid;
  gap: 16px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
}
.founder-bio p { margin: 0; }
.founder-bio .clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.founder-tags {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.founder-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 6px 12px;
}

.founder-toggle {
  margin-top: 18px;
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.founder-toggle::after {
  content: "↓";
  transition: transform .2s;
}
.founder-toggle.open::after { transform: rotate(180deg); }
.founder-toggle:hover { color: var(--navy-900); }

/* ── buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, color .15s, box-shadow .15s, border-color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(30,108,255,.55), inset 0 -1px 0 rgba(0,0,0,.12);
}
.btn-primary:hover { background: #1a5ee0; }

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { background: var(--bg-soft); border-color: rgba(12,21,48,0.18); }

.btn-ghost {
  background: transparent; color: var(--ink);
  padding: 12px 0;
}
.btn-ghost::after {
  content: "→"; margin-left: 2px; transition: transform .15s;
}
.btn-ghost:hover::after { transform: translateX(3px); }

.btn-dark {
  background: var(--navy-900);
  color: #fff;
  box-shadow: 0 8px 22px -10px rgba(6,15,41,.5);
}
.btn-dark:hover { background: var(--navy-800); }

.btn-sm { padding: 10px 16px; font-size: 13.5px; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  background: var(--navy-950);
  color: #f4f7ff;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 85% 0%, rgba(30,108,255,0.32), transparent 60%),
    radial-gradient(60% 50% at 0% 100%, rgba(30,108,255,0.18), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 70% at 50% 35%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 35%, black, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  padding: 92px 0 120px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; padding: 64px 0 80px; }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 8.4vw, 116px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: #fff;
  text-transform: uppercase;
}
.hero h1 .accent {
  color: var(--blue-400);
  background: linear-gradient(180deg, #79b0ff 0%, #3a82ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  margin-top: 28px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: rgba(232,238,252,0.75);
  max-width: 540px;
}
.hero-cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 40px;
  display: flex; gap: 28px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232,238,252,0.55);
}
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-meta i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(58,130,255,0.18);
}

/* hero side card */
.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.10);
}
.hero-card-hd {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,238,252,0.55);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-card-hd b { color: var(--blue-400); font-weight: 600; letter-spacing: 0.18em; }

.price-rows { display: grid; gap: 14px; margin-top: 20px; }
.price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 18px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}
.price-row .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 6vw, 36px);
  letter-spacing: -0.02em;
  color: #fff;
}
.price-row .num .dec { font-size: 16px; color: rgba(232,238,252,0.55); margin-left: 2px; font-weight: 600; }
.price-row .lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,238,252,0.6);
}

.price-note {
  margin-top: 16px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(30,108,255,0.18), rgba(30,108,255,0.04));
  border: 1px solid rgba(58,130,255,0.30);
  border-radius: 12px;
  font-size: 13px;
  color: #d6e4ff;
  display: flex; gap: 10px; align-items: center;
}
.price-note b { color: #fff; }

/* ── SECTION SHELL ───────────────────────────────────── */
.section {
  padding: 110px 0;
}
.section.tight { padding: 80px 0; }
@media (max-width: 720px) { .section, .section.tight { padding: 72px 0; } }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 {
  margin-top: 14px;
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-head p {
  margin-top: 18px;
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
}

/* ── ABOUT ─────────────────────────────────────── */
.about {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about p {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink-2);
}
.about p + p { margin-top: 18px; }

.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.team-card {
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
}
.team-photo {
  aspect-ratio: 4/5;
  background:
    repeating-linear-gradient(135deg,
      rgba(12,21,48,0.05) 0 12px,
      rgba(12,21,48,0.02) 12px 24px),
    var(--bg);
  border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(12,21,48,0.40);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}
.team-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.team-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.stat {
  padding: 22px 0 4px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 38px);
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
.stat .lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── SERVICES ─────────────────────────────────── */
.services {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

.svc {
  background: #fff;
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .2s;
  position: relative;
}
.svc:hover { background: var(--blue-50); }
.svc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--blue-600);
  font-weight: 500;
}
.svc h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 2px;
}
.svc p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}
.svc-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue-50);
  display: grid; place-items: center;
  color: var(--blue-600);
  margin-bottom: 6px;
}

/* ── OFFER ─────────────────────────────────────── */
.offer {
  background: var(--navy-950);
  color: #f4f7ff;
  position: relative;
  overflow: hidden;
}
.offer::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 100% 0%, rgba(30,108,255,0.28), transparent 70%),
    radial-gradient(40% 60% at 0% 100%, rgba(30,108,255,0.16), transparent 70%);
  pointer-events: none;
}
.offer .section-head h2 { color: #fff; }
.offer .section-head p { color: rgba(232,238,252,0.7); }

.offer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: stretch;
}
@media (max-width: 960px) { .offer-grid { grid-template-columns: 1fr; } }

.offer-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.offer-card.featured {
  background:
    linear-gradient(180deg, rgba(30,108,255,0.18), rgba(30,108,255,0.05)),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border-color: rgba(58,130,255,0.4);
  box-shadow: 0 30px 70px -28px rgba(30,108,255,0.5);
}

.offer-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d6e4ff;
  margin-bottom: 20px;
}
.offer-card.featured .offer-tag {
  background: var(--blue-600); border-color: var(--blue-500); color: #fff;
}

.offer-price {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--font-display);
  color: #fff;
}
.offer-price .big { font-size: clamp(46px, 9vw, 64px); font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.offer-price .per { font-size: 18px; font-weight: 500; color: rgba(232,238,252,0.65); margin-left: 6px; }
.offer-price-sub {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,238,252,0.55);
}

.offer-list {
  margin-top: 28px;
  padding: 24px 0 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid; gap: 14px;
}
.offer-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px;
  color: rgba(232,238,252,0.85);
  list-style: none;
}
.offer-list li svg { color: var(--blue-400); flex-shrink: 0; margin-top: 3px; }

.offer-cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

.offer-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(232,238,252,0.55);
}

.savings-pill {
  position: absolute;
  top: -14px; right: 24px;
  background: linear-gradient(135deg, #ffd75e, #ff9a3c);
  color: #2a1c00;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 12px 24px -8px rgba(255,170,60,0.4);
}

.ala-carte {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1.05fr 1.95fr;
  gap: 36px;
  align-items: start;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .ala-carte { grid-template-columns: 1fr; gap: 28px; } }
.ala-carte h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800; color: #fff;
  letter-spacing: -0.02em;
}
.ala-carte p { color: rgba(232,238,252,0.65); margin-top: 12px; font-size: 15px; }
.ala-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
}
@media (max-width: 600px) { .ala-list { grid-template-columns: 1fr; } }
.ala-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14.5px;
  color: rgba(232,238,252,0.85);
}
.ala-item:nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 600px) { .ala-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); } .ala-item:last-child { border-bottom: 0; } }
.ala-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-400);
  flex-shrink: 0;
}

/* ── PROCESS ───────────────────────────────────── */
.process {
  background: var(--bg);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }
.step {
  padding: 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  position: relative;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 200px;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--blue-600);
}
.step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.step p { color: var(--muted); font-size: 14px; line-height: 1.55; }

/* ── FAQ ────────────────────────────────────────────── */
.faq {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color .15s, box-shadow .15s;
  overflow: hidden;
}
.faq-item:hover { border-color: rgba(30,108,255,0.20); }
.faq-item.open {
  border-color: rgba(30,108,255,0.30);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--ink);
  cursor: pointer;
  line-height: 1.35;
}
.faq-q:hover { color: var(--blue-600); }
.faq-chev {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-50);
  position: relative;
  transition: transform .2s, background .15s;
}
.faq-chev::before,
.faq-chev::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px;
  height: 2px;
  background: var(--blue-600);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform .2s;
}
.faq-chev::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.open .faq-chev::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-a {
  padding: 0 24px 24px;
  animation: faq-in .2s ease;
}
.faq-a p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 740px;
}
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .faq-q { padding: 18px 18px; font-size: 16px; }
  .faq-a { padding: 0 18px 20px; }
}

/* ── SIGN UP ──────────────────────────────────── */
.signup {
  background: var(--bg-cream);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .signup-grid { grid-template-columns: 1fr; gap: 40px; } }
.signup .section-head { margin-bottom: 32px; }

.signup-bullets {
  display: grid; gap: 16px;
  margin-top: 28px;
}
.signup-bullet {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px;
  color: var(--ink-2);
}
.signup-bullet svg { flex-shrink: 0; color: var(--blue-600); margin-top: 3px; }

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.form-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 24px;
}
.form-hd h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800; letter-spacing: -0.01em;
}
.form-hd .badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 5px 10px;
  border-radius: 999px;
}
.form-hd .badge i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(30,108,255,0.18);
}

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.field label .req { color: #d44; margin-left: 2px; }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(30,108,255,0.12);
}
.field textarea { min-height: 90px; resize: vertical; }
.field-hint { font-size: 12px; color: var(--muted); }

.plan-select { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.plan-opt {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  background: #fff;
}
.plan-opt:hover { border-color: rgba(30,108,255,0.4); }
.plan-opt.active {
  border-color: var(--blue-600);
  background: var(--blue-50);
  box-shadow: 0 0 0 3px rgba(30,108,255,0.10);
}
.plan-opt-top {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.plan-opt.active .plan-opt-top { color: var(--blue-600); }
.plan-opt-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-top: 6px;
  color: var(--ink);
}
.plan-opt-sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

.consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12.5px; color: var(--muted);
  margin: 8px 0 18px;
  line-height: 1.45;
}
.consent input { margin-top: 2px; accent-color: var(--blue-600); }

.form .btn { width: 100%; padding: 16px 20px; font-size: 15px; }

.form-success {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 18px 0;
}
.form-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue-50); color: var(--blue-600);
  display: grid; place-items: center; margin-bottom: 14px;
}
.form-success h4 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800; letter-spacing: -0.01em;
}
.form-success p { color: var(--muted); margin-top: 8px; }

/* ── FOOTER ────────────────────────────────────── */
.footer {
  background: var(--navy-950);
  color: rgba(232,238,252,0.7);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,238,252,0.55);
  margin-bottom: 14px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer ul a { color: rgba(232,238,252,0.75); transition: color .15s; font-size: 14.5px; }
.footer ul a:hover { color: #fff; }
.footer-brand p { font-size: 14px; color: rgba(232,238,252,0.6); margin-top: 14px; max-width: 320px; }
.footer-base {
  margin-top: 48px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 12.5px;
  color: rgba(232,238,252,0.45);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}
@media (max-width: 600px) { .footer-base { flex-direction: column; } }

/* ── divider strip with the three taglines ─────────── */
.strip {
  background: var(--navy-900);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 36px 0;
}
.strip-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 700px) { .strip-row { grid-template-columns: 1fr; } }
.strip-item {
  display: flex; gap: 14px; align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.005em;
}
.strip-item .accent { color: var(--blue-400); font-weight: 800; }
.strip-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(30,108,255,0.15);
  display: grid; place-items: center;
  color: var(--blue-400);
  flex-shrink: 0;
}

/* ───────────────────────────────────────────────────────────────────
   MOBILE POLISH — overrides for narrow viewports.
   Touch targets ≥ 44px, no horizontal scroll, tighter padding.
   ─────────────────────────────────────────────────────────────────── */

/* Prevent any element from causing horizontal overflow */
html, body { overflow-x: hidden; max-width: 100%; }

/* All anchored buttons get a touch-friendly minimum size */
.btn { min-height: 44px; }

@media (max-width: 720px) {
  /* Brand lockup gets tighter so logo + name fit nicely with hamburger */
  .brand { gap: 10px; font-size: 13px; }
  .brand-mark-img { width: 40px; height: 40px; }
  .brand-sub { font-size: 9.5px; }

  /* Hero buttons stack full-width for thumb reach */
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  /* Hero meta — break into a tighter row */
  .hero-meta {
    gap: 14px;
    font-size: 10.5px;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Hero card padding tighter */
  .hero-card { padding: 22px; }
  .price-row { padding: 14px 16px; }

  /* Section heads scale down */
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(28px, 7vw, 38px); }
  .section-head p { font-size: 15px; }

  /* Eyebrow gets a touch smaller */
  .eyebrow { font-size: 10px; }

  /* Service grid: each card has tight padding */
  .svc { padding: 22px 20px 24px; }
  .svc h3 { font-size: 19px; }
  .svc p { font-size: 14px; }

  /* Offer cards full-bleed feel on mobile */
  .offer-card { padding: 26px 22px; }
  .offer-tag { margin-bottom: 14px; }
  .offer-list li { font-size: 14px; }
  .savings-pill { right: 16px; top: -12px; font-size: 11px; padding: 6px 11px; }

  /* Process steps slightly tighter */
  .step { padding: 22px; min-height: 0; }

  /* FAQ chevron smaller, padding tighter */
  .faq-chev { width: 26px; height: 26px; }

  /* Form padding tighter */
  .form { padding: 24px 20px; }
  .form-hd { margin-bottom: 18px; }
  .field input, .field select, .field textarea { font-size: 16px; /* prevents iOS zoom */ }
  .plan-opt { padding: 12px; }
  .plan-opt-price { font-size: 18px; }

  /* Stats — 3 across is fine but center-align */
  .stat { padding: 16px 8px 4px; }
  .stat .lbl { font-size: 9.5px; }

  /* Founder badge stays inside on mobile */
  .founder-badge {
    left: auto; right: 16px; bottom: 16px;
    font-size: 10px; padding: 6px 12px;
  }
  .founder-name { font-size: clamp(24px, 6vw, 30px); }
  .founder-bio { font-size: 14.5px; }

  /* Footer tighter */
  .footer { padding: 48px 0 28px; }
  .footer-grid { gap: 28px; }
  .footer-base { font-size: 11px; gap: 8px; }
}

/* Very small screens (≤ 380px): ultra-compact */
@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
  .nav-inner { height: 64px; }
  .nav-links { top: 64px; }
  .brand { font-size: 12px; }
  .brand-mark-img { width: 36px; height: 36px; }
  .brand-sub { display: none; } /* keep just "Phoenix" + logo */
  .hero-inner { padding: 56px 0 64px; }
  .hero h1 { font-size: 38px; }
  .section, .section.tight { padding: 56px 0; }
  .offer-price .big { font-size: 42px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid var(--line); border-right: 0; }
}
