/* ============================================
   Axon Co — Shared Marketing Site Stylesheet
   Brand: Dark (#0A0A0A) + Cyan (#06B6D4) accent
          Logo gradient (#3B82F6 → #06B6D4) for primary CTAs and highlights
   Type:  Outfit (display) + Inter (body)
   ============================================ */

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

:root {
  /* Surface */
  --bg:           #0A0A0A;
  --bg-raised:   #111111;
  --bg-card:     #161616;
  --border:      rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  /* Text */
  --text-primary:   #F0F0F2;
  --text-secondary: #A0A0A8;
  --text-muted:     #6B6B74;

  /* Brand — cyan from the logo gradient's right stop */
  --accent:       #06B6D4;
  --accent-dim:   rgba(6, 182, 212, 0.13);
  --accent-glow:  rgba(6, 182, 212, 0.08);
  --accent-strong: rgba(6, 182, 212, 0.28);

  /* Logo gradient — blue → cyan, primary CTA + key highlights */
  --grad-blue:    #3B82F6;
  --grad-cyan:    #06B6D4;
  --gradient:     linear-gradient(90deg, #3B82F6, #06B6D4);

  /* Status */
  --green:     #34D399;
  --green-dim: rgba(52, 211, 153, 0.10);
  --red:       #F87171;
  --red-dim:   rgba(248, 113, 113, 0.10);

  /* Layout */
  --maxw: 1140px;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
}

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

body {
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

p { color: var(--text-secondary); }

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

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ---------- Nav ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
nav .container {
  display: flex; justify-content: space-between; align-items: center;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; gap: 10px; }
.nav-logo .brand-logo {
  height: 80px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 18px rgba(6, 182, 212, 0.18));
  transition: transform 0.3s, filter 0.3s;
}
.nav-logo:hover .brand-logo { transform: scale(1.04); filter: drop-shadow(0 6px 24px rgba(6, 182, 212, 0.35)); }
.footer-logo-link .brand-logo { height: 64px; }
nav .container { height: 96px !important; }
/* Legacy classes, kept for backwards compat in case any inline references */
.nav-wordmark {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 2px;
}
.nav-wordmark span {
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 1px;
  margin-left: 2px;
}
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  color: var(--text-muted);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after {
  content: ''; display: block;
  width: 100%; height: 2px;
  background: var(--accent);
  margin-top: 4px;
  border-radius: 2px;
}
.nav-cta {
  background: var(--text-primary) !important;
  color: var(--bg) !important;
  padding: 8px 20px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }
.nav-cta::after { display: none !important; }
.mobile-menu-btn {
  display: none;
  background: none; border: none;
  color: var(--text-primary);
  font-size: 22px;
  cursor: pointer; padding: 4px;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--text-primary); color: var(--bg);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600; font-size: 15px;
  border: none; cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text-secondary);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 500; font-size: 15px;
  border: 1px solid var(--border-hover);
  transition: border-color 0.2s, color 0.2s;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--text-muted); color: var(--text-primary); }

.btn-accent {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient); color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600; font-size: 15px;
  border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.25s;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  box-shadow: 0 6px 22px -8px rgba(6, 182, 212, 0.5);
}
.btn-accent:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(6, 182, 212, 0.6); }

/* ---------- Sections ---------- */
section { padding: 120px 0; }
section.compact { padding: 80px 0; }

.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -1px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
}
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ---------- Page hero (used on subpages) ---------- */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 800px; height: 600px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  top: -100px; left: -100px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 6px 14px;
  background: var(--accent-dim);
  border-radius: 4px;
}
.hero-label::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 700; line-height: 1.05;
  margin-bottom: 28px; letter-spacing: -2px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 44px;
}
.hero-buttons { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* ---------- Tile / Card grids ---------- */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.tile-grid.two { grid-template-columns: repeat(2, 1fr); }

.tile {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.tile:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.tile-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.tile-icon svg { stroke: var(--accent); }
.tile h3 {
  font-size: 17px; font-weight: 600; margin-bottom: 8px;
  color: var(--text-primary);
}
.tile p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ---------- Pricing grid ---------- */
.pricing-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 64px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.price-card {
  background: var(--bg);
  padding: 40px 36px;
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured {
  background: var(--bg-raised);
  position: relative;
}
.price-card.featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}
.price-tier {
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.price-card.featured .price-tier { color: var(--accent); }

/* Stacked setup + monthly — both visually equal */
.price-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--border);
}
.price-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 14px;
  border-right: 1px solid var(--border);
}
.price-cell:last-child { border-right: none; padding-left: 16px; }
.price-cell:first-child { padding-left: 0; }
.price-cell-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted);
}
.price-cell-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 32px; font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -1px;
  line-height: 1;
  margin-top: 2px;
}
.price-cell-amount .per {
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
  margin-left: 2px;
}
.price-cell-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.price-card.featured .price-cell-amount { color: var(--text-primary); }
.price-card.featured .price-cell:first-child .price-cell-amount,
.price-card.featured .price-cell:last-child .price-cell-amount {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Legacy single price block — keep for backwards compat (homepage teaser) */
.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 48px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -2px;
  line-height: 1;
}
.price-period { font-size: 14px; color: var(--text-muted); margin-bottom: 6px; }
.price-setup {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 28px; padding-bottom: 18px;
  border-bottom: 1px dashed var(--border);
}
.price-setup strong { color: var(--text-primary); }
.price-card ul {
  list-style: none;
  margin: 0 0 32px;
  flex: 1;
  display: flex; flex-direction: column;
  gap: 12px;
}
.price-card li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.45;
}
.price-card li .tick {
  flex-shrink: 0;
  color: var(--green);
  font-size: 13px; font-weight: 600;
  margin-top: 1px;
}
.price-card .btn-primary, .price-card .btn-accent { width: 100%; justify-content: center; margin-top: auto; }
.pricing-popular {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--accent);
  color: var(--bg);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.pricing-footer {
  text-align: center;
  margin-top: 36px;
}
.pricing-footer p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---------- Comparison table (pricing page) ---------- */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 60px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.compare-table th {
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.compare-table td:first-child { color: var(--text-primary); font-weight: 500; }
.compare-table td:not(:first-child) { text-align: center; color: var(--text-secondary); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .yes { color: var(--accent); font-size: 16px; font-weight: 700; }
.compare-table .no  { color: var(--text-muted); }
.compare-table .featured-col { background: var(--accent-dim); color: var(--text-primary); }

/* ---------- Form ---------- */
.contact-section { padding-bottom: 140px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  font-size: 24px; font-weight: 700;
  margin-bottom: 14px; letter-spacing: -0.5px;
}
.contact-info p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.contact-channel {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: var(--bg-raised);
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.contact-channel:hover { border-color: var(--border-hover); }
.contact-channel .channel-icon {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-channel .channel-icon svg { stroke: var(--accent); }
.contact-channel .channel-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-channel .channel-value {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  text-decoration: none;
}
.contact-channel .channel-value:hover { color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px; text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-status {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px; font-weight: 500;
  display: none;
}
.form-status.success {
  display: block;
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(52, 211, 153, 0.2);
}
.form-status.error {
  display: block;
  background: var(--red-dim);
  color: var(--red);
  border: 1px solid rgba(248, 113, 113, 0.2);
}

/* ---------- Bio / About ---------- */
.bio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.bio-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}
.bio-photo {
  width: 96px; height: 96px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -1px;
}
.bio-card h3 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.bio-card .bio-role {
  font-size: 13px; font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 18px;
}
.bio-card p { font-size: 14px; line-height: 1.7; }

.story {
  max-width: 720px;
  margin: 0 auto;
}
.story p { font-size: 16px; line-height: 1.85; margin-bottom: 18px; }
.story p strong { color: var(--text-primary); }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg);
}
.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand p {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ---------- Misc ---------- */
.cta-band {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, var(--accent-glow), transparent 70%),
    var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px 30px;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
.cta-band h2 { margin-bottom: 14px; font-size: clamp(28px, 4vw, 40px); }
.cta-band p { max-width: 540px; margin: 0 auto 26px; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: none; border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 15px; font-weight: 600;
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-question:hover { color: var(--accent); }
.faq-question .arrow {
  font-size: 10px;
  transition: transform 0.3s;
  color: var(--text-muted);
  flex-shrink: 0;
}
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 280px; }

/* ---------- Sophie (Voice AI) ---------- */
.sophie-hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
}
.sophie-hero-copy { max-width: 580px; }
.sophie-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.sophie-stat {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.sophie-stat:hover { border-color: var(--accent-strong); transform: translateY(-2px); }
.sophie-stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 34px; font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
.sophie-stat-label {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted);
}
.sophie-hero-visual {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
  min-height: 320px;
}
.sophie-orb {
  position: relative;
  width: 240px; height: 240px;
  display: flex; align-items: center; justify-content: center;
}
.sophie-orb-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent-strong);
  animation: sophie-pulse 3.2s ease-out infinite;
}
.sophie-orb-ring-2 { animation-delay: 1.6s; }
@keyframes sophie-pulse {
  0%   { transform: scale(0.85); opacity: 0.9; }
  80%  { transform: scale(1.35); opacity: 0;   }
  100% { transform: scale(1.35); opacity: 0;   }
}
.sophie-orb-core {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 22px 70px -20px rgba(6, 182, 212, 0.55);
}
.sophie-orb-caption {
  margin-top: 22px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Sophie pricing addon block ---------- */
.sophie-addon-section {
  border-top: 1px solid var(--border);
  background: var(--bg-raised);
}
.sophie-addon-card {
  background: var(--bg);
  border: 1px solid var(--accent-strong);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.sophie-addon-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
}
.sophie-addon-card:hover { transform: translateY(-3px); box-shadow: 0 18px 46px -22px rgba(6, 182, 212, 0.4); }
.sophie-addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.sophie-addon-tier {
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.sophie-addon-price {
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -1px; line-height: 1;
  margin-bottom: 6px;
}
.sophie-addon-price .per { font-size: 14px; font-weight: 500; color: var(--text-muted); margin-left: 2px; }
.sophie-addon-setup {
  font-size: 13px;
  color: var(--text-muted);
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px dashed var(--border);
}
.sophie-addon-setup strong { color: var(--text-primary); }
.sophie-addon-pair {
  font-size: 12px; font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
}
.sophie-addon-card ul {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.sophie-addon-card li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.sophie-addon-card li .tick { color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.sophie-addon-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient); color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700; font-size: 14px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
}
.sophie-addon-cta:hover { transform: translateY(-1px); }
.sophie-addon-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 24px;
}

/* ---------- Sophie deep-dive page ---------- */
.sophie-section { padding: 100px 0; }
.sophie-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.sophie-feature {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.sophie-feature-icon {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.sophie-feature-icon svg { stroke: var(--accent); }
.sophie-feature h3 { font-size: 16px; color: var(--text-primary); margin-bottom: 8px; }
.sophie-feature p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.sophie-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.sophie-step {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.sophie-step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 800;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 999px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.sophie-step h3 { font-size: 16px; color: var(--text-primary); margin-bottom: 8px; }
.sophie-step p { font-size: 14px; color: var(--text-muted); }

.sophie-call-cta {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  text-align: center;
  color: #fff;
  margin-top: 48px;
  box-shadow: 0 20px 60px -22px rgba(6, 182, 212, 0.55);
}
.sophie-call-cta h3 {
  color: #fff;
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 10px;
}
.sophie-call-cta p { color: rgba(255,255,255,0.92); margin-bottom: 22px; max-width: 520px; margin-left: auto; margin-right: auto; }
.sophie-call-cta a {
  display: inline-block;
  background: #fff; color: var(--bg);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  text-decoration: none;
  letter-spacing: 0.3px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 20px 28px;
    border-bottom: 1px solid var(--border);
    gap: 14px;
  }
  .nav-links.open { display: flex; }
  .nav-links a.active::after { display: none; }
  .mobile-menu-btn { display: block; }

  .tile-grid, .tile-grid.two { grid-template-columns: 1fr; }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px; margin: 0 auto;
    background: none; gap: 16px;
    border: none; border-radius: 0;
  }
  .price-card { border: 1px solid var(--border); border-radius: 12px; }
  .price-card.featured { overflow: hidden; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  section { padding: 80px 0; }
  .hero { padding: 130px 0 80px; }
  .page-hero { padding: 130px 0 60px; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 12px 10px; }
}

@media (max-width: 980px) {
  .sophie-hero { grid-template-columns: 1fr; gap: 40px; text-align: left; }
  .sophie-hero-visual { min-height: 260px; }
  .sophie-orb { width: 200px; height: 200px; }
  .sophie-orb-core { width: 110px; height: 110px; }
  .sophie-addon-grid { grid-template-columns: 1fr; }
  .sophie-feature-grid, .sophie-steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons a { justify-content: center; }
  .footer-content { grid-template-columns: 1fr; }
  .sophie-stats { grid-template-columns: 1fr; }
  .sophie-stat-num { font-size: 28px; }
}

/* ============================================================
   V2 REDESIGN — 2026-04-17
   Bigger logo, bento grids, hero mesh, illustrations,
   serif accents, noise textures, asymmetric layouts.
   ============================================================ */

/* Add Fraunces serif for editorial accents */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,700;1,9..144,500;1,9..144,700&display=swap');

:root {
  --grad-purple:  #8B5CF6;
  --grad-mesh:    radial-gradient(ellipse 100% 80% at 30% 0%, rgba(6,182,212,0.18), transparent 60%),
                  radial-gradient(ellipse 80% 60% at 80% 20%, rgba(59,130,246,0.16), transparent 65%),
                  radial-gradient(ellipse 70% 50% at 50% 80%, rgba(139,92,246,0.10), transparent 70%);
  --bg-noise:     url('/img/noise.svg');
}

.serif { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 500; letter-spacing: -0.5px; }
.serif-bold { font-family: 'Fraunces', Georgia, serif; font-weight: 700; letter-spacing: -0.5px; }

/* Subtle noise overlay utility */
.noise-bg { position: relative; }
.noise-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--bg-noise);
  background-size: 200px;
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.noise-bg > * { position: relative; z-index: 1; }

/* ----- HERO V2 ----- */
.hero-v2 {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  background: var(--bg);
  isolation: isolate;
}
.hero-v2::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-mesh), var(--bg);
  z-index: -2;
}
.hero-v2::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--bg-noise);
  background-size: 220px;
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
}
.hero-v2 .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero-v2-copy { max-width: 620px; }

.hero-v2 .hero-mark {
  margin-bottom: 28px;
  display: inline-block;
}
.hero-v2 .hero-mark img {
  height: 140px;
  width: auto;
  filter: drop-shadow(0 12px 48px rgba(6,182,212,0.32));
}
.hero-v2 h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(46px, 5.6vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -2.5px;
  margin-bottom: 26px;
  color: var(--text-primary);
}
.hero-v2 h1 .runs {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(95deg, #3B82F6 0%, #06B6D4 50%, #8B5CF6 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -2px;
}
.hero-v2 p.lead {
  font-size: 19px; line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-v2 .hero-meta {
  display: flex; gap: 28px; margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-v2 .hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero-v2 .hero-meta-item .num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 28px;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.hero-v2 .hero-meta-item .lbl {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted);
}

/* hero visual stack */
.hero-v2-visual {
  position: relative;
  min-height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.hero-v2-visual .mockup {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: 18px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6),
              0 0 0 1px rgba(255,255,255,0.06),
              0 0 80px rgba(6,182,212,0.15);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-v2-visual .mockup:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(0); }
.hero-v2-visual .mockup img { display: block; width: 100%; height: auto; border-radius: 18px; }
.hero-v2-visual .floater {
  position: absolute;
  background: rgba(20,22,28,0.94);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.6);
  font-size: 13px;
}
.hero-v2-visual .floater-1 { top: -22px; left: -28px; animation: floatA 6s ease-in-out infinite; }
.hero-v2-visual .floater-2 { bottom: -24px; right: -30px; animation: floatA 7s ease-in-out infinite reverse; }
.hero-v2-visual .floater .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #34D399; box-shadow: 0 0 12px #34D399;
}
.hero-v2-visual .floater .dot.cyan { background: #06B6D4; box-shadow: 0 0 12px #06B6D4; }
.hero-v2-visual .floater .label {
  color: var(--text-muted); font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; display: block;
}
.hero-v2-visual .floater .value { color: var(--text-primary); font-weight: 700; }

@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* logo wall */
.logo-wall {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
  padding: 28px 0;
  opacity: 0.55;
}
.logo-wall span {
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ----- BENTO GRID ----- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 18px;
  margin-top: 48px;
}
.bento-item {
  position: relative;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column; justify-content: space-between;
}
.bento-item:hover {
  border-color: rgba(6,182,212,0.4);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -20px rgba(6,182,212,0.18);
}
.bento-item .b-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.bento-item h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 10px; letter-spacing: -0.5px;
}
.bento-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.bento-item .b-graphic { margin-top: 18px; flex: 1; display: flex; align-items: center; justify-content: center; }

.bento-wide  { grid-column: span 4; }
.bento-half  { grid-column: span 3; }
.bento-third { grid-column: span 2; }
.bento-tall  { grid-column: span 2; grid-row: span 2; }
.bento-full  { grid-column: span 6; }

.bento-item.featured {
  background: linear-gradient(140deg, rgba(59,130,246,0.10), rgba(6,182,212,0.04));
  border-color: rgba(6,182,212,0.32);
}
.bento-item .b-corner-glyph {
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  opacity: 0.10;
  background: var(--gradient);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.bento-item .pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase;
  background: rgba(6,182,212,0.12);
  color: var(--accent);
  padding: 6px 12px; border-radius: 999px;
  align-self: flex-start;
}

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-wide, .bento-half, .bento-third, .bento-tall, .bento-full { grid-column: span 2; }
  .bento-tall { grid-row: auto; }
  .hero-v2 .container { grid-template-columns: 1fr; gap: 56px; }
  .hero-v2-visual .mockup { transform: none; }
  .hero-v2 .hero-mark img { height: 96px; }
  .hero-v2-visual .floater-1 { top: -10px; left: 0; }
  .hero-v2-visual .floater-2 { bottom: -10px; right: 0; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .bento-wide, .bento-half, .bento-third, .bento-tall, .bento-full { grid-column: span 1; }
}

/* ----- ASYMMETRIC SECTION ----- */
.asym-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.asym-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.asym-section.flip .container { grid-template-columns: 1fr 1fr; direction: rtl; }
.asym-section.flip .container > * { direction: ltr; }
.asym-section .copy h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(34px, 4vw, 52px); font-weight: 700;
  line-height: 1.05; letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.asym-section .copy h2 .em {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  color: var(--accent);
}
.asym-section .visual { position: relative; }
.asym-section .visual img { width: 100%; max-width: 560px; height: auto; display: block; }
.asym-section .visual::after {
  content: '';
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse at center, rgba(6,182,212,0.18), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 980px) {
  .asym-section .container { grid-template-columns: 1fr; gap: 48px; }
  .asym-section.flip .container { grid-template-columns: 1fr; direction: ltr; }
}

/* ----- TESTIMONIALS ----- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.testimonial {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  display: flex; flex-direction: column; gap: 22px;
}
.testimonial::before {
  content: '\201C';
  position: absolute; top: 6px; right: 18px;
  font-family: 'Fraunces', serif;
  font-size: 88px; line-height: 1;
  color: var(--accent); opacity: 0.18;
}
.testimonial .quote {
  font-family: 'Fraunces', serif;
  font-size: 17px; font-weight: 500; line-height: 1.55;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}
.testimonial .person { display: flex; align-items: center; gap: 14px; }
.testimonial .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 16px;
  color: #fff;
  flex-shrink: 0;
  background: var(--gradient);
  /* PLACEHOLDER: swap to real photo (Unsplash etc) when available */
}
.testimonial .avatar.t2 { background: linear-gradient(135deg,#8B5CF6,#EC4899); }
.testimonial .avatar.t3 { background: linear-gradient(135deg,#34D399,#06B6D4); }
.testimonial .person-meta { display: flex; flex-direction: column; gap: 2px; }
.testimonial .person-name { color: var(--text-primary); font-weight: 600; font-size: 14px; }
.testimonial .person-role { color: var(--text-muted); font-size: 12px; }

@media (max-width: 880px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* ----- DECORATIVE SHAPES ----- */
.deco-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  z-index: 0;
}
.deco-blob.cyan { background: rgba(6,182,212,0.32); }
.deco-blob.blue { background: rgba(59,130,246,0.30); }
.deco-blob.purple { background: rgba(139,92,246,0.22); }

/* ----- INDUSTRY GRID v2 ----- */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.ind-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.ind-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.ind-card:hover { transform: translateY(-4px); border-color: rgba(6,182,212,0.4); }
.ind-card:hover::after { transform: scaleX(1); }
.ind-card .ic {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.ind-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--text-primary); }
.ind-card p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

@media (max-width: 880px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ind-grid { grid-template-columns: 1fr; } }

/* ----- HERO LOCKUP for sub-pages ----- */
.page-hero-v2 {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-v2::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-mesh);
  z-index: -2;
}
.page-hero-v2 .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px; align-items: center;
}
.page-hero-v2 .copy { max-width: 620px; }
.page-hero-v2 h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800; line-height: 1.04; letter-spacing: -2px;
  margin-bottom: 22px;
}
.page-hero-v2 h1 .em {
  font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 500;
  background: linear-gradient(95deg,#3B82F6,#06B6D4 60%,#8B5CF6);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero-v2 .lead {
  font-size: 18px; line-height: 1.65; color: var(--text-secondary);
  margin-bottom: 30px; max-width: 540px;
}
.page-hero-v2 .visual { position: relative; }
.page-hero-v2 .visual img { width: 100%; max-width: 460px; height: auto; display: block; margin-left: auto; }

@media (max-width: 980px) {
  .page-hero-v2 .container { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-v2 { padding: 140px 0 60px; }
  .page-hero-v2 .visual img { margin-left: 0; max-width: 360px; }
}

/* ----- CALLOUT BANDS / GRADIENT BG ----- */
.cta-band-v2 {
  position: relative;
  padding: 64px;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(6,182,212,0.10) 60%, rgba(139,92,246,0.14));
  border: 1px solid rgba(6,182,212,0.30);
}
.cta-band-v2::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--bg-noise); background-size: 200px;
  opacity: 0.08; mix-blend-mode: overlay; z-index: -1;
}
.cta-band-v2 h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 3.6vw, 46px); font-weight: 700;
  margin-bottom: 16px; letter-spacing: -1.2px;
}
.cta-band-v2 h2 .em {
  font-family: 'Fraunces', serif; font-style: italic;
  font-weight: 500; color: var(--accent);
}
.cta-band-v2 p { font-size: 17px; max-width: 540px; margin-bottom: 28px; color: var(--text-secondary); }

/* ----- Mobile nav fix for taller header ----- */
@media (max-width: 880px) {
  nav .container { height: 76px !important; }
  .nav-logo .brand-logo { height: 56px; }
  .footer-logo-link .brand-logo { height: 48px; }
  .hero-v2 .hero-mark img { height: 72px; }
}

/* ----- Big logo lockup for footer ----- */
.footer-brand-v2 .footer-logo-link .brand-logo { height: 72px; }
