/* ═══════════════════════════════════════════════
   Jason Chua — Virtual CIO & Cybersecurity Advisor
   Final merged stylesheet
   ═══════════════════════════════════════════════ */

:root {
  --bg: #0A1628;
  --bg-surface: #0F1D32;
  --bg-card: rgba(15, 29, 50, 0.7);
  --text: #F9FAFB;
  --text-secondary: #94A3B8;
  --text-dim: #536380;
  --cyan: #00B4D8;
  --cyan-bright: #67E8F9;
  --cyan-dim: rgba(0, 180, 216, 0.12);
  --cyan-glow: rgba(0, 180, 216, 0.3);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 64px rgba(2, 8, 23, 0.4);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--text-secondary); }
ul { padding-left: 1.15rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}


/* ── Ambient atmosphere ── */

.ambient {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}

.ambient .glow {
  position: absolute; border-radius: 50%;
  filter: blur(140px);
  opacity: 0;
  animation: glowIn 2s var(--ease) forwards;
}

.ambient .glow-1 {
  width: 600px; height: 600px;
  top: -180px; right: -80px;
  background: radial-gradient(circle, rgba(0,180,216,0.06), transparent 70%);
  animation-delay: 0.3s;
}

.ambient .glow-2 {
  width: 450px; height: 450px;
  bottom: 30%; left: -120px;
  background: radial-gradient(circle, rgba(0,180,216,0.04), transparent 70%);
  animation-delay: 0.8s;
}

@keyframes glowIn { to { opacity: 1; } }


/* ── Navigation ── */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  min-height: var(--nav-h);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s var(--ease);
}

nav.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-weight: 700; font-size: 1.02rem;
}

.nav-brand .brand-mark {
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0,180,216,0.2), rgba(0,180,216,0.06));
  border: 1px solid rgba(103,232,249,0.18);
  font-weight: 800; font-size: 0.88rem;
  letter-spacing: -0.02em;
}

.nav-brand-text { display: flex; flex-direction: column; gap: 0.1rem; line-height: 1.1; }
.nav-brand-text strong { font-size: 0.95rem; font-weight: 700; }
.nav-brand-text span:last-child { font-size: 0.72rem; color: var(--text-secondary); font-weight: 400; }

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

.nav-links a {
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 0.55rem 1.25rem;
  border: 1px solid rgba(0,180,216,0.35);
  border-radius: 6px;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--cyan);
  color: var(--bg);
  box-shadow: 0 0 20px var(--cyan-glow);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none; padding: 0.5rem;
  border: 0; background: transparent;
  color: var(--text); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center;
}

.nav-toggle span {
  display: block; width: 1.4rem; height: 2px;
  margin: 3px 0; background: currentColor;
  border-radius: 2px; transition: all 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(24px);
  display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 1.3rem; font-weight: 600;
  color: var(--text);
}


/* ── Shared layout ── */

section { position: relative; z-index: 1; }

.container { max-width: 1080px; margin: 0 auto; width: 100%; }

.section-pad { padding: 6rem 2rem; }

.section-alt { background: rgba(15, 29, 50, 0.35); }

.label {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 0.75rem;
}

.label::before {
  content: '';
  width: 1.25rem; height: 1px;
  background: currentColor; opacity: 0.7;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700; line-height: 1.2;
  letter-spacing: -0.02em; color: var(--text);
}

.section-sub {
  font-size: 1.05rem; color: var(--text-secondary);
  line-height: 1.7; max-width: 560px; margin-top: 0.75rem;
}

.divider {
  max-width: 1080px; margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.08s; }
.rd2 { transition-delay: 0.16s; }
.rd3 { transition-delay: 0.24s; }
.rd4 { transition-delay: 0.32s; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.8rem 1.6rem;
  font-family: var(--font); font-size: 0.88rem; font-weight: 600;
  border-radius: 6px; cursor: pointer;
  border: none; transition: all 0.35s var(--ease);
}

.btn-primary {
  background: var(--cyan); color: var(--bg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--cyan-glow);
}

.btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.03);
  transform: translateY(-2px);
}


/* ── 1. HERO ── */

.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
}

.hero-inner {
  max-width: 1080px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
}

.hero-content { max-width: 540px; }

.hero-enter {
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.9s var(--ease) forwards;
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-tag {
  animation-delay: 0.15s;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1.25rem;
}

.hero h1 {
  animation-delay: 0.3s;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.025em; margin-bottom: 1.25rem;
}

.hero h1 .hl { color: var(--cyan); }

.hero-sub {
  animation-delay: 0.45s;
  font-size: 1.05rem; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 2rem;
}

.hero-actions {
  animation-delay: 0.6s;
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}

.proof-strip {
  animation-delay: 0.75s;
  display: flex; flex-wrap: wrap; gap: 0.6rem;
}

.proof-chip {
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(0,180,216,0.15);
  background: rgba(255,255,255,0.02);
  color: var(--text-secondary);
  font-size: 0.78rem; font-weight: 600;
}

/* Hero portrait */
.hero-visual {
  display: flex; justify-content: center;
  align-items: center; position: relative;
}

.hero-photo {
  width: 340px; height: 400px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  overflow: hidden;
  position: relative; z-index: 2;
}

.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 15%;
}

.hero-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
  background: linear-gradient(160deg, var(--bg-surface), rgba(0,180,216,0.03));
}

.photo-initials {
  font-size: 3.5rem; font-weight: 700;
  color: var(--cyan); opacity: 0.5;
}

.photo-label {
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--text-dim);
}

.hero-frame {
  position: absolute; z-index: 1;
  width: 360px; height: 420px;
  border: 1px solid rgba(0,180,216,0.08);
  border-radius: 10px;
  top: 50%; left: 50%;
  transform: translate(-47%, -48%);
}

.hero-frame::before {
  content: ''; position: absolute; top: -1px; left: -1px;
  width: 40px; height: 40px;
  border-top: 2px solid var(--cyan); border-left: 2px solid var(--cyan);
  border-radius: 10px 0 0 0; opacity: 0.5;
}

.hero-frame::after {
  content: ''; position: absolute; bottom: -1px; right: -1px;
  width: 40px; height: 40px;
  border-bottom: 2px solid var(--cyan); border-right: 2px solid var(--cyan);
  border-radius: 0 0 10px 0; opacity: 0.3;
}

/* Hero floating note cards */
.hero-note {
  position: absolute; z-index: 3;
  width: 13.5rem; padding: 0.875rem 1rem;
  border-radius: 10px;
  background: rgba(8, 21, 39, 0.82);
  border: 1px solid rgba(0, 180, 216, 0.15);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  backdrop-filter: blur(16px);
}
/* Top card: sits at top-left corner of frame, clear of face */
.hero-note-top { top: -1.5rem; left: -6rem; }
/* Bottom card: sits at bottom-right corner, below torso */
.hero-note-bottom { bottom: -1.5rem; right: -6rem; }
.hero-note-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cyan);
}
.hero-note strong {
  display: block; margin: 0.3rem 0 0.4rem;
  font-size: 0.95rem; font-weight: 700; color: var(--text);
}
.hero-note p {
  font-size: 0.82rem; line-height: 1.5; margin: 0;
}


/* ── 2. IS THIS YOU? ── */

.pain-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}

.pain-card {
  padding: 1.5rem 1.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.4s var(--ease);
}

.pain-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.pain-card p { margin: 0; font-size: 0.95rem; line-height: 1.65; }
.pain-card p strong { color: var(--text); font-weight: 600; }


/* ── 3. WHAT YOU GET ── */

.outcomes-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}

.outcome-card {
  padding: 2rem 1.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative; overflow: hidden;
  transition: all 0.4s var(--ease);
}

.outcome-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--cyan);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.outcome-card:hover::after { transform: scaleX(1); }

.outcome-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.outcome-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--cyan-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 1.25rem;
  transition: all 0.35s var(--ease);
}

.outcome-card:hover .outcome-icon {
  background: var(--cyan); color: var(--bg);
  box-shadow: 0 0 20px var(--cyan-glow);
}

.outcome-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.outcome-card p { font-size: 0.9rem; line-height: 1.6; margin: 0; }


/* ── 4. HOW WE WORK TOGETHER ── */

.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}

.step-card {
  padding: 2rem 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-align: center;
  transition: all 0.4s var(--ease);
}

.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.step-num {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; color: var(--cyan);
  margin-bottom: 0.75rem;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: rgba(0,180,216,0.06);
  border: 1px solid rgba(0,180,216,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.step-card:hover .step-icon {
  background: rgba(0,180,216,0.12);
  border-color: rgba(0,180,216,0.3);
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.step-card p { font-size: 0.88rem; line-height: 1.6; margin: 0; }


.process-diagram {
  margin-top: 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,180,216,0.10);
}

.process-diagram img {
  width: 100%;
  display: block;
  height: auto;
}

/* ── 5. ABOUT JASON ── */

.about-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem; align-items: start;
}

.about-text p { font-size: 1rem; line-height: 1.75; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p + p { margin-top: 1rem; }

.about-creds {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem;
}

.cred-badge {
  font-size: 0.72rem; font-weight: 600;
  padding: 0.4rem 0.8rem; border-radius: 5px;
  background: var(--cyan-dim); color: var(--cyan);
  letter-spacing: 0.03em;
}

.about-side {
  padding: 1.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  align-self: start;
  margin-top: 8.5rem;
}

.about-side h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: var(--text); }

.about-list { list-style: none; padding: 0; }

.about-list li {
  font-size: 0.9rem; color: var(--text-secondary);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.about-list li:last-child { border-bottom: none; }

.about-context-image {
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,180,216,0.10);
  position: relative;
}

.about-context-image img {
  width: 100%;
  display: block;
  max-height: 340px;
  object-fit: cover;
  object-position: center 40%;
}

.about-context-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  background: linear-gradient(transparent, rgba(6,14,25,0.85));
  margin: 0;
}


.about-editorial {
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,180,216,0.10);
}

.about-editorial img {
  width: 100%;
  display: block;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  object-position: center 38%;
}


/* ── 6. ENGAGEMENT & NEXT STEPS ── */

.engage-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}

.engage-card {
  padding: 1.75rem 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.4s var(--ease);
}

.engage-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.engage-card h3 {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 0.5rem; color: var(--text);
}

.engage-card p { font-size: 0.9rem; line-height: 1.6; }

.engage-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 0.75rem;
}

.engage-price {
  margin-top: 1rem;
  color: var(--text); font-weight: 700;
  font-size: 1.02rem;
}

.engage-bridge {
  font-size: 0.92rem; color: var(--text-secondary);
  line-height: 1.6; margin-top: 1.25rem;
}

.engage-note {
  font-size: 0.82rem; color: var(--text-dim);
  line-height: 1.5; margin-top: 0.5rem;
}

.cta-panel {
  margin-top: 1.5rem;
  padding: 2rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0,180,216,0.12);
  background: linear-gradient(150deg, rgba(0,180,216,0.03), transparent 60%);
  display: flex; justify-content: space-between;
  gap: 1.5rem; align-items: center;
  position: relative;
}

.cta-panel::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: 12px; padding: 1px;
  background: linear-gradient(135deg, rgba(0,180,216,0.15), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}

.cta-panel h3 {
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 0.4rem; color: var(--text);
}

.cta-panel p { font-size: 0.95rem; line-height: 1.6; margin: 0; }

.cta-panel-actions {
  display: flex; flex-wrap: wrap;
  gap: 0.65rem; flex-shrink: 0;
  position: relative; z-index: 1;
}


/* ── 7. FOOTER ── */

footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: start; gap: 1.5rem;
}

.footer-brand strong {
  font-size: 1rem; font-weight: 700;
  color: var(--text); display: block;
}

.footer-role {
  font-size: 0.82rem; color: var(--text-secondary); margin: 0.15rem 0 0;
}

.footer-loc {
  font-size: 0.78rem; color: var(--text-dim); margin: 0.1rem 0 0;
}

.footer-links {
  display: flex; flex-wrap: wrap;
  gap: 0.6rem 1.25rem; justify-content: flex-end;
}

.footer-links a {
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-secondary); transition: color 0.3s;
}

.footer-links a:hover { color: var(--cyan); }


/* ── Responsive ── */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; order: 2; }
  .hero-visual { order: 1; margin-bottom: 1.5rem; }
  .hero-sub, .section-sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .proof-strip { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-side { position: static; }
  .engage-grid { grid-template-columns: 1fr; }
  .cta-panel { flex-direction: column; align-items: start; }
  .cta-panel-actions { justify-content: start; }
  .hero-note { position: relative; top: auto; bottom: auto; left: auto; right: auto; width: 100%; margin-top: 0.75rem; }
  .footer-inner { flex-direction: column; gap: 1rem; }
  .footer-links { justify-content: start; }
}

@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero {
    padding: calc(var(--nav-h) + 2rem) 1.25rem 3rem;
    flex-direction: column;
    gap: 2.5rem;
  }
  .section-pad { padding: 4rem 1.25rem; }
  .pain-grid, .outcomes-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  /* ── Mobile hero: text first, visual second ── */
  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .hero-content { order: 1; max-width: 100%; text-align: left; }
  .hero-visual  { order: 2; width: 100%; margin-top: 0.5rem; }

  /* Left-align all hero text */
  .hero-tag, .hero h1, .hero-sub { text-align: left; }
  .hero-actions  { justify-content: flex-start; }
  .proof-strip   { justify-content: flex-start; }

  /* Portrait: full width, slightly shorter */
  .hero-photo {
    width: 100%;
    height: 235px;
    border-radius: 10px;
  }
  .hero-photo img { object-position: center 18%; }

  /* Hide decorative frame — adds clutter on mobile */
  .hero-frame { display: none; }

  /* Cards: remove absolute positioning, stack naturally below portrait */
  .hero-note {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 0.75rem;
    padding: 0.8rem 0.9rem;
  }
  .hero-note strong { font-size: 0.9rem; }
  .hero-note p      { font-size: 0.82rem; }
  .hero-note-top    { margin-top: 1rem; }
  .hero-note-bottom { margin-top: 0.75rem; }

  /* CTA panel */
  .cta-panel { flex-direction: column; align-items: start; }
  .cta-panel-actions { justify-content: start; width: 100%; }
  .cta-panel-actions .btn { width: auto; }
}

/* Very small screens — hide second card to reduce clutter */
@media (max-width: 480px) {
  .hero-note-bottom { display: none; }
  .hero-note { padding: 0.75rem 0.85rem; }
  .hero-note strong { font-size: 0.88rem; }
  .hero-note p { font-size: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-enter { opacity: 1; transform: none; animation: none; }
  .btn, .outcome-card, .pain-card, .step-card { transition: none; }
}
