/* =============================================
   Frans Health — Shared Stylesheet
   Design System: Indigo/Deep Orange/Pink
   ============================================= */

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

/* ── Design Tokens ── */
:root {
  --off-black: #1A2744;
  --off-white: #F7F1ED;

  --indigo-50: #FFF0E6;
  --indigo-100: #FFD9BF;
  --indigo-200: #FFB380;
  --indigo-300: #FF8C40;
  --indigo-400: #FF7020;
  --indigo-500: #FE5500;
  --indigo-600: #E64D00;
  --indigo-700: #E64D00;
  --indigo-800: #A63700;
  --indigo-900: #802A00;

  --pink-50: #FFF0E6;
  --pink-500: #FF0055;

  --deep-orange-50: #FFF0E6;
  --deep-orange-500: #FE5500;

  --gradient-vibrant: radial-gradient(circle at center, #FE5500 0%, #FF0055 100%);
  --gradient-subtle: radial-gradient(circle at 70% 80%, #FFF5ED 0%, #FFF0E6 100%);

  --radius-pill: 999px;
  --shadow-card: 0 2px 16px rgba(254, 85, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-nav: 0 2px 24px rgba(0, 0, 0, 0.08);

  --nav-height: 72px;
  --max-width: 1200px;
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Google Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--off-white);
  color: var(--off-black);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
}

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 64px;
  }
}

/* ── Typography ── */
.display {
  font-family: 'Google Sans Flex', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--off-black);
}

h1,
.h1 {
  font-family: 'Google Sans Flex', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--off-black);
}

h2,
.h2 {
  font-family: 'Google Sans Flex', sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h3,
.h3 {
  font-family: 'Google Sans Flex', sans-serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  line-height: 1.3;
}

.p3 {
  font-size: 16px;
  line-height: 1.75;
}

.p2 {
  font-size: 14px;
  line-height: 1.65;
}

.p1 {
  font-size: 12px;
  line-height: 1.6;
}

.serif {
  font-family: 'Google Sans', system-ui, -apple-system, sans-serif;
  font-style: italic;
}

.mono {
  font-family: 'Google Sans Code', 'Roboto Mono', monospace;
}

.muted {
  color: rgba(26, 26, 26, 0.88);
}

.muted-light {
  color: rgba(242, 242, 242, 0.7);
}

/* ── Pill Tags / Eyebrow ── */
.pill-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-family: 'Google Sans', sans-serif;
}

.pill-tag--indigo {
  background: var(--indigo-50);
  color: var(--indigo-500);
}

.pill-tag--outline {
  border: 1.5px solid var(--indigo-500);
  color: var(--indigo-500);
  background: transparent;
}

.pill-tag--white {
  background: rgba(255, 255, 255, 0.15);
  color: var(--off-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: 'Google Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--off-black);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 39, 68, 0.25);
}

.btn--primary:hover {
  background: #243256;
  box-shadow: 0 6px 24px rgba(26, 39, 68, 0.35);
}

.btn--secondary {
  background: #fff;
  color: var(--indigo-500);
  border: 1.5px solid var(--indigo-500);
}

.btn--secondary:hover {
  background: var(--indigo-50);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--off-white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 14px;
}

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-nav.scrolled {
  background: var(--off-white);
  box-shadow: var(--shadow-nav);
}

.site-nav.scrolled .nav-link {
  color: rgba(26, 26, 26, 0.9);
}

.site-nav.scrolled .nav-link:hover {
  color: var(--indigo-500);
}

.site-nav.scrolled .logo-mark {
  color: var(--indigo-500);
}

.site-nav.scrolled .logo-health {
  color: var(--indigo-500);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  color: var(--indigo-700);
  transition: color 0.25s ease;
}

.nav-logo:hover {
  opacity: 0.85;
}

.logo-mark {
  color: var(--indigo-600);
  transition: color 0.25s ease;
}

.logo-mark svg {
  display: block;
}

.logo-mark svg path {
  fill: currentColor;
}

.logo-mark .logo-svg {
  display: block;
  height: 27px;
  width: auto;
}

.footer-logo .logo-mark .logo-svg {
  height: 21px;
  filter: brightness(0) saturate(100%) invert(30%) sepia(95%) saturate(4000%) hue-rotate(14deg) brightness(101%) contrast(105%);
}

.logo-health {
  font-family: 'Google Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--indigo-600);
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
  align-self: flex-end;
  margin-bottom: 2px;
}

/* nav links */
.nav-links {
  display: none;
  list-style: none;
  gap: 32px;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(26, 26, 26, 0.88);
  transition: color 0.18s ease;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--indigo-700);
}

#nav-cta,
#mobile-cta {
  background: var(--gradient-vibrant) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(254, 85, 0, 0.25) !important;
}

#nav-cta:hover,
#mobile-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(254, 85, 0, 0.35) !important;
}

/* nav right actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  gap: 2px;
  align-items: center;
}

.lang-btn {
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.8);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.18s ease;
  letter-spacing: 0.02em;
  font-family: 'Google Sans', sans-serif;
}

.lang-btn:hover {
  color: var(--indigo-700);
}

.lang-btn.active {
  color: var(--indigo-600);
  background: rgba(254, 85, 0, 0.1);
}

.site-nav.scrolled .lang-btn {
  color: rgba(26, 26, 26, 0.8);
}

.site-nav.scrolled .lang-btn:hover {
  color: var(--off-black);
}

.site-nav.scrolled .lang-btn.active {
  color: var(--indigo-500);
  background: var(--indigo-50);
}

.nav-cta {
  display: none;
}

@media (min-width: 640px) {
  .nav-cta {
    display: inline-flex;
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

@media (min-width: 900px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--indigo-700);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.site-nav.scrolled .hamburger span {
  background: var(--off-black);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--indigo-800);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px;
}

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

.mobile-menu .nav-link {
  font-size: 22px;
  font-weight: 600;
  color: rgba(242, 242, 242, 0.85);
  text-align: center;
}

.mobile-menu .nav-link:hover {
  color: var(--off-white);
}

.mobile-menu .btn--primary {
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

.mobile-lang {
  display: flex;
  gap: 8px;
}

.mobile-lang .lang-btn {
  color: rgba(242, 242, 242, 0.6);
  font-size: 15px;
}

.mobile-lang .lang-btn.active {
  color: var(--off-white);
  background: rgba(255, 255, 255, 0.12);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #fff;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-subtle);
  opacity: 0.18;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -180px;
  right: -120px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(254, 85, 0, 0.07) 0%, rgba(255, 87, 34, 0.04) 40%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0 72px;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 72px 0 80px;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  margin-bottom: 28px;
}

.hero-headline {
  margin-bottom: 28px;
}

.hero-headline .display {
  color: var(--off-black);
  margin-bottom: 0;
}

.hero-headline .line-accent {
  background: var(--gradient-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.8);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-trust {
  font-size: 13px;
  color: rgba(242, 242, 242, 0.45);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

/* Trust bullets on light hero */
.hero-trust-bullets {
  margin-top: 24px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: rgba(26, 26, 26, 0.9);
}

.hero-trust-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-trust-bullets li::before {
  content: '✓';
  color: var(--pink-500);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.hero-quote {
  font-size: 17px;
  line-height: 1.65;
  color: var(--indigo-300);
  padding-left: 20px;
  border-left: 2px solid var(--indigo-500);
  max-width: 460px;
}

/* hero right — phone image */
.hero-graphic {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 28px;
  filter: drop-shadow(0 24px 64px rgba(0, 0, 0, 0.12)) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.08));
}

.hero-doc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  border: 1px solid rgba(254, 85, 0, 0.08);
}

.hero-doc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-doc-icon--indigo {
  background: rgba(254, 85, 0, 0.3);
}

.hero-doc-icon--pink {
  background: rgba(254, 85, 0, 0.3);
}

.hero-doc-icon--orange {
  background: rgba(255, 87, 34, 0.3);
}

.hero-doc-text {
  flex: 1;
}

.hero-doc-label {
  font-size: 11px;
  color: rgba(26, 26, 26, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.hero-doc-title {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.9);
  font-weight: 500;
}

.hero-doc-badge {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.badge--ready {
  background: var(--indigo-50);
  color: var(--indigo-600);
}

.badge--shared {
  background: var(--pink-50);
  color: var(--pink-500);
}

.badge--new {
  background: var(--deep-orange-50);
  color: var(--deep-orange-500);
}

/* ── Sections general ── */
section {
  padding: 64px 0;
}

@media (min-width: 768px) {
  section {
    padding: 80px 0;
  }
}

.section-eyebrow {
  margin-bottom: 20px;
}

.section-header {
  margin-bottom: 48px;
}

.section-intro {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.9);
  max-width: 680px;
  margin-top: 20px;
}

#home-ct-subheadline {
  margin-top: 20px;
}

.section-access .section-header {
  margin-bottom: 20px;
}

/* ── Problem Section ── */
.section-problem {
  background: var(--off-white);
}

/* Bold standalone callout in problem section */
.problem-callout {
  margin: 32px 0 40px;
  padding: 24px 28px;
  border-left: 4px solid var(--gradient-vibrant);
  border-left: 4px solid #FE5500;
  background: var(--pink-50);
  border-radius: 0 12px 12px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--off-black);
  line-height: 1.35;
  font-family: 'Google Sans', system-ui, -apple-system, sans-serif;
  font-style: italic;
}

.problem-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 56px;
}

@media (min-width: 640px) {
  .problem-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.problem-card {
  padding: 32px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(254, 85, 0, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.problem-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(254, 85, 0, 0.08);
}

.problem-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--indigo-50);
  color: var(--indigo-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.problem-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--off-black);
}

.problem-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.8);
}

/* ── Care Circle ── */
.section-care-circle {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  display: flex;
  align-items: center;
  min-height: 600px;
}

/* Blurred Background Layer */
.section-care-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/img/care-circle-doctor.jpg');
  background-size: cover;
  background-position: 85% center;
  /* Shifted right to show people */
  filter: blur(4px);
  transform: scale(1.05);
  /* Prevent blur edges */
  z-index: 0;
}

/* White Filter / Gradient Overlays */
.section-care-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Strong white on left for readability, 40% wash on right */
  background: linear-gradient(to right,
      #ffffff 0%,
      #ffffff 35%,
      rgba(255, 255, 255, 0.4) 100%);
  z-index: 1;
}

/* Mobile Adjustments for Background */
@media (max-width: 768px) {
  .section-care-circle::after {
    background: rgba(255, 255, 255, 0.9);
    /* Heavier wash on mobile for readability */
  }

  .section-care-circle {
    padding: 80px 0;
    min-height: auto;
  }
}

.care-circle-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .care-circle-container {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
}

.care-circle-visual {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.care-circle-visual .mockup-img {
  max-width: 240px;
}

.care-circle-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

@media (max-width: 899px) {
  .care-circle-content {
    margin: 0 auto;
    text-align: center;
  }
}

.care-circle-content h1 {
  color: var(--off-black);
  margin-top: 12px;
}

.care-circle-content .section-intro {
  color: rgba(26, 26, 26, 0.9);
  margin-top: 16px;
  line-height: 1.7;
}

.care-roles {
  margin-top: 24px;
}

.care-role {
  padding: 0;
  background: none;
  border: none;
}

.care-role .pill-tag {
  display: none;
}

.care-role h3 {
  font-size: 18px;
  color: var(--off-black);
  margin-bottom: 12px;
}

.care-role ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.care-role li {
  font-size: 15px;
  color: rgba(26, 26, 26, 0.78);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.care-role li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--indigo-400);
}

.care-quote-strip {
  margin-top: 28px;
  padding: 20px 24px;
  border-radius: 16px;
  background: var(--indigo-50);
  border: 1px solid rgba(254, 85, 0, 0.08);
}

.care-quote-strip p {
  font-family: 'Google Sans', system-ui, -apple-system, sans-serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.78);
}

/* ── How It Works ── */
.section-how {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.section-how::after {
  content: '';
  position: absolute;
  bottom: -160px;
  right: -100px;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(254, 85, 0, 0.045) 0%, rgba(255, 87, 34, 0.025) 40%, transparent 65%);
  pointer-events: none;
}

.capabilities {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 56px;
}

.capability {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .capability {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .capability.reverse .capability-content {
    order: 1;
  }

  .capability.reverse .capability-graphic {
    order: 0;
  }
}

.capability-number {
  font-family: 'Google Sans Code', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--indigo-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.capability-content h3 {
  font-size: clamp(20px, 2.5vw, 24px);
  margin-bottom: 16px;
  color: var(--off-black);
}

.capability-content p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.8);
}

.capability-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grouped-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.capability-graphic.transparent-bg {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
}

.mockup-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}

.cap-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: rgba(254, 85, 0, 0.09);
  color: var(--indigo-500);
  flex-shrink: 0;
}

.cap-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
}

.how-callout {
  margin-top: 80px;
  padding: 48px 48px 40px;
  border-radius: 24px;
  background: var(--off-black);
  color: var(--off-white);
  text-align: center;
}

.how-callout h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin: 0 auto 16px;
  max-width: 600px;
  line-height: 1.3;
  color: #fff;
}

.how-callout p {
  font-size: 16px;
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.92;
}

.how-callout .how-callout-disclaimer {
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  opacity: 0.65;
  line-height: 1.6;
  max-width: 470px;
}

/* ── Evidence ── */
.section-evidence h1 {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--off-black);
  max-width: 1000px;
}

.section-evidence h1 .line-accent {
  background: var(--gradient-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.section-evidence .section-intro {
  max-width: 750px;
}

.section-evidence {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.section-evidence::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(254, 85, 0, 0.045) 0%, rgba(255, 87, 34, 0.025) 40%, transparent 65%);
  pointer-events: none;
}

.evidence-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}

@media (min-width: 640px) {
  .evidence-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.evidence-card {
  padding: 32px;
  border-radius: 20px;
  background: var(--indigo-50);
  position: relative;
}

.evidence-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
  color: var(--off-black);
  line-height: 1.35;
}

.evidence-card .evidence-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.9);
  margin-bottom: 16px;
}

.evidence-source {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.65);
  line-height: 1.5;
}

.evidence-source a {
  color: var(--indigo-500);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.evidence-source a:hover {
  color: var(--indigo-700);
}

.evidence-closing {
  display: none;
}

/* ── Tailored Content ── */
.section-tailored {
  background: #fff;
}

.content-scenario {
  margin-bottom: 40px;
}

.content-scenario-label {
  display: inline-flex;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--indigo-50);
  color: var(--indigo-700);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.content-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .content-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .content-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.content-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(254, 85, 0, 0.1);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.content-card:hover {
  box-shadow: 0 8px 32px rgba(254, 85, 0, 0.12);
  transform: translateY(-2px);
}

.content-card-cat {
  font-size: 11px;
  font-weight: 600;
  color: var(--indigo-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.content-card h4 {
  font-family: 'Google Sans Flex', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--off-black);
}

.content-card p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.9);
}

.tailored-closing {
  margin-top: 48px;
  padding: 28px 32px;
  border-radius: 16px;
  background: var(--indigo-50);
  border: 1px solid rgba(254, 85, 0, 0.1);
}

.tailored-closing p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.8);
}

/* ── Why Now ── */
.section-why {
  background: var(--indigo-600);
  color: var(--off-white);
}

.section-why h1,
.section-why .display {
  color: var(--off-white);
}

.section-why .section-intro {
  color: rgba(242, 242, 242, 0.65);
}

.why-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(242, 242, 242, 0.65);
  max-width: 720px;
  margin: 32px 0 72px;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}

@media (min-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-number {
  font-family: 'Google Sans Code', monospace;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 12px;
  background: var(--gradient-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(242, 242, 242, 0.6);
}

/* ── About ── */
.section-about {
  background: var(--off-white);
}

.about-intro {
  font-family: 'Google Sans', system-ui, -apple-system, sans-serif;
  font-style: italic;
  font-size: clamp(17px, 2.5vw, 22px);
  line-height: 1.65;
  color: var(--indigo-700);
  max-width: 760px;
  margin: 24px 0 56px;
}

.about-blocks {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-block h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--indigo-700);
}

.about-block p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.9);
  max-width: 760px;
}

.about-block p+p {
  margin-top: 16px;
}

/* ── Section Founder ── */
.section-founder {
  background: #ffffff;
  padding: 80px 0;
}

.founder-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}

.founder-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.founder-text {
  flex: 1;
  text-align: left;
  padding: 0;
  /* Remove centered indent, align with container */
}

.founder-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.founder-name {
  font-family: 'Google Sans Flex', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--off-black);
}

.founder-linkedin {
  display: inline-flex;
  background: #ffffff;
  color: var(--indigo-600);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  /* Making the white box visible */
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.founder-linkedin svg {
  width: 12px;
  height: 12px;
}

.founder-linkedin:hover {
  border-color: var(--indigo-500);
  background: var(--indigo-50);
  transform: translateY(-1px);
}

.founder-title {
  font-size: 15px;
  color: var(--indigo-500);
  font-weight: 500;
  margin-bottom: 20px;
}

.founder-bio {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.85);
  margin: 0;
}

@media (max-width: 768px) {
  .founder-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
}

.values-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}

.value-tag {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(254, 85, 0, 0.2);
  font-size: 13px;
  font-weight: 500;
  color: var(--indigo-700);
  background: var(--indigo-50);
}

/* ── Roadmap ── */
.section-roadmap {
  background: #fff;
}

.roadmap-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

@media (min-width: 900px) {
  .roadmap-timeline {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
}

.roadmap-phase {
  padding: 32px;
  border-radius: 20px;
  position: relative;
}

.roadmap-phase:nth-child(1) {
  background: var(--off-black);
  color: var(--off-white);
}

.roadmap-phase:nth-child(2) {
  background: var(--indigo-700);
  color: var(--off-white);
}

.roadmap-phase:nth-child(3) {
  background: var(--gradient-subtle);
  border: 1px solid rgba(254, 85, 0, 0.1);
}

.phase-number {
  font-family: 'Google Sans Code', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.roadmap-phase:nth-child(1) .phase-number,
.roadmap-phase:nth-child(2) .phase-number {
  color: rgba(242, 242, 242, 0.5);
}

.roadmap-phase:nth-child(3) .phase-number {
  color: var(--indigo-500);
}

.roadmap-phase h3 {
  font-size: 17px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.roadmap-phase:nth-child(1) h3,
.roadmap-phase:nth-child(2) h3 {
  color: var(--off-white);
}

.roadmap-phase:nth-child(3) h3 {
  color: var(--off-black);
}

.roadmap-year {
  font-family: 'Google Sans Code', monospace;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 16px;
  background: var(--gradient-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roadmap-phase p {
  font-size: 14px;
  line-height: 1.7;
}

.roadmap-phase:nth-child(1) p,
.roadmap-phase:nth-child(2) p {
  color: rgba(242, 242, 242, 0.65);
}

.roadmap-phase:nth-child(3) p {
  color: rgba(26, 26, 26, 0.8);
}

.roadmap-note {
  margin-top: 48px;
  text-align: center;
  font-size: 14px;
  color: rgba(26, 26, 26, 0.8);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── Early Access ── */
.section-access {
  background: var(--indigo-50);
  position: relative;
  overflow: hidden;
}

.section-access::after {
  content: '';
  position: absolute;
  bottom: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 850px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(254, 85, 0, 0.05) 0%, rgba(255, 87, 34, 0.03) 40%, transparent 65%);
  pointer-events: none;
}

.access-subheadline {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.8);
  max-width: 640px;
  margin: 20px 0 56px;
}

.access-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .access-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.access-card {
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(254, 85, 0, 0.12);
  background: #fff;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.access-card h3 {
  font-size: 17px;
  color: var(--off-black);
}

.access-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.88);
  flex: 1;
}

/* ── Footer ── */
.site-footer {
  background: var(--off-black);
  color: var(--off-white);
  padding: 64px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: start;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.footer-logo .logo-mark {
  color: var(--indigo-300);
}

.footer-logo .logo-health {
  color: var(--indigo-300);
}

.footer-mission {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(242, 242, 242, 0.5);
  max-width: 310px;
  margin-bottom: 24px;
}

.footer-disclaimer {
  font-size: 12px;
  line-height: 1.65;
  color: rgba(242, 242, 242, 0.35);
  max-width: 400px;
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(242, 242, 242, 0.45);
  transition: color 0.18s ease;
}

.footer-links a:hover {
  color: #fff;
}

#footer-cta {
  background: var(--gradient-vibrant);
  border: none;
  color: #fff;
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.2);
}

#footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(233, 30, 99, 0.35);
}

/* ── Imprint (Legal) ── */
.footer-copyright {
  font-size: 12px;
  color: rgba(242, 242, 242, 0.3);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-right {
    align-items: flex-end;
  }
}

.footer-right .btn {
  font-size: 14px;
}

.footer-email {
  font-size: 14px;
  color: rgba(242, 242, 242, 0.7);
  margin-top: 4px;
  transition: color 0.18s ease;
}

.footer-email:hover {
  color: var(--off-white);
}

/* Imprint collapse */
.imprint-section {
  margin-top: 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.imprint-section.open {
  max-height: 400px;
}

.imprint-content {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  line-height: 1.8;
  color: rgba(242, 242, 242, 0.4);
}

.imprint-content a {
  color: rgba(242, 242, 242, 0.5);
  text-decoration: underline;
}


/* ── Utilities ── */
.text-gradient {
  background: var(--gradient-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  width: 40px;
  height: 2px;
  background: var(--gradient-vibrant);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.fade-up {
  animation: fadeUp 0.6s ease both;
}

.fade-up-1 {
  animation-delay: 0.1s;
}

.fade-up-2 {
  animation-delay: 0.2s;
}

.fade-up-3 {
  animation-delay: 0.3s;
}

/* ═══════════════════════════════════════
   SPA — New page & nav styles
═══════════════════════════════════════ */

/* ── Active nav link (current page) ── */
.nav-link--active {
  color: var(--off-black) !important;
  font-weight: 700;
  position: relative;
}

.nav-link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--off-black);
  border-radius: 2px;
}

.site-nav.scrolled .nav-link--active {
  color: var(--off-black) !important;
}

/* ── Hero — centered/single-column (Home page) ── */
.hero-inner--home {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

@media (min-width: 900px) {
  .hero-inner--home {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.hero-inner--home .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-inner--home .hero-subheadline {
  max-width: 800px;
}

/* ── Hero — centered/single-column (Pro page) ── */
.hero-inner--centered {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

@media (min-width: 900px) {
  .hero-inner--centered {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.hero-inner--centered .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-inner--centered .hero-subheadline {
  max-width: 800px;
}

/* ── Professional page — capabilities without step numbers ── */
.capabilities--pro .capability-number {
  display: none;
}

/* ── Pro Page Spacing Overrides ── */
@media (min-width: 768px) {
  .hero--pro {
    padding-bottom: 40px;
  }

  .page-for-professionals .section-evidence {
    padding-bottom: 40px;
  }

  .section-pro-contact {
    padding-top: 40px;
  }
}

/* ── Pro Page Special Layouts ── */
#pro-gap-cards {
  display: flex !important;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
}

.problem-card-stacked {
  border-left: 4px solid #FE5500 !important;
  padding: 32px 40px !important;
}

.section-delivers .capabilities {
  display: flex !important;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
  max-width: 900px;
}

.del-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.del-feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 4px;
  /* Align with first line of title */
}

.del-feature-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--off-black);
}

.del-feature-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.82);
}

/* ── Single access card (Pro contact section) ── */
.access-cards--single {
  grid-template-columns: 1fr;
  max-width: 680px;
}

.access-cards--single .access-card p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.8);
}

/* ── About standalone page (no hero above it) ── */
.section-about--standalone {
  padding-top: calc(var(--nav-height) + 72px);
}

@media (min-width: 768px) {
  .section-about--standalone {
    padding-top: calc(var(--nav-height) + 64px);
  }
}

/* ── Security Trust Section ── */
.section-trust-band {
  background: #ffffff;
  padding: 80px 0;
  border-top: 1px solid rgba(254, 85, 0, 0.1);
  border-bottom: 1px solid rgba(254, 85, 0, 0.1);
}

.trust-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.trust-band-lock {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-band-text {
  flex: 1;
  min-width: 0;
}

#home-hero-trust-exp {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--off-black);
  letter-spacing: -0.02em;
  margin: 0;
}

#home-hero-trust-exp .line-accent {
  background: var(--gradient-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .trust-description {
    padding-right: 40px;
    border-right: 1px solid rgba(254, 85, 0, 0.15);
  }
}

.trust-description {
  text-align: left;
}

.trust-description p {
  font-size: 17px;
  color: rgba(26, 26, 26, 0.85);
  line-height: 1.7;
  margin: 0;
}

.trust-band-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .trust-band-bullets {
    padding-left: 40px;
  }
}

.trust-band-bullets li {
  font-size: 15px;
  font-weight: 500;
  color: var(--off-black);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.trust-band-bullets li::before {
  content: '✓';
  color: var(--indigo-500);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Product Features / App Screens Section ── */
.section-product {
  padding: 64px 0 80px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.section-product::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-subtle);
  opacity: 0.10;
  pointer-events: none;
}

.section-product .section-header h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
  color: var(--off-black);
  margin: 16px 0 20px;
}

.product-screens {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px 40px;
}

@media (min-width: 768px) {
  .product-screens {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 40px;
  }
}

.product-screen-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-screen-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--off-black);
  margin: 28px 0 10px;
  line-height: 1.3;
}

.product-screen-item>p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.78);
  max-width: 300px;
}

/* ── Phone mockup frame ── */
.phone-mockup-wrap {
  position: relative;
  width: 220px;
  flex-shrink: 0;
}

.capability-graphic .phone-mockup-wrap {
  width: 200px;
}

.phone-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

.phone-blob--1 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #F5D5C8 0%, transparent 70%);
  top: 20px;
  left: -20px;
}

.phone-blob--2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #FBE9E0 0%, transparent 70%);
  top: 30px;
  left: -10px;
}

.phone-blob--3 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #F9E4DC 0%, transparent 70%);
  top: 20px;
  left: -20px;
}

.phone-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 450 / 920;
  border-radius: 28px;
  overflow: hidden;
  background: transparent;
}

.phone-frame::before {
  display: none;
}

.phone-frame svg {
  display: block;
  width: 100%;
  height: 100%;
}

.phone-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stagger the middle card slightly on desktop */
@media (min-width: 768px) {
  .product-screens .product-screen-item:nth-child(2) .phone-mockup-wrap {
    transform: translateY(-16px);
  }
}

/* ── Imprint Page ── */
.section-imprint {
  padding: 64px 0 80px;
  background: #fff;
}

.section-imprint h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--off-black);
  margin-bottom: 56px;
}

.imprint-body {
  display: grid;
  gap: 48px;
  max-width: 600px;
}

.imprint-block h2 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo-400, #5c6bc0);
  margin-bottom: 12px;
}

.imprint-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--off-black);
}

.imprint-block a {
  color: var(--indigo-600, #3949ab);
  text-decoration: underline;
}