:root {
  /* Warm, Luxurious Editorial Healthcare Palette */
  --bg-parchment: #faf8f5;
  --bg-sand: #f3efe8;
  --bg-card: #ffffff;
  --bg-card-glass: rgba(255, 255, 255, 0.85);
  
  --ink-primary: #191816;
  --ink-secondary: #4a4642;
  --ink-muted: #79746e;
  --ink-faint: #aba49c;
  
  --forest-deep: #083325;
  --forest-rich: #0d4a36;
  --forest-emerald: #059669;
  --forest-glow: #10b981;
  --forest-subtle: #ebf7f2;
  
  --amber-burnished: #b45309;
  --amber-gold: #d97706;
  --amber-light: #fef3c7;
  
  --crimson-alert: #991b1b;
  --crimson-subtle: #fef2f2;
  
  --border-warm: #e8e3da;
  --border-subtle: #dcd6cb;
  
  --font-serif: 'Instrument Serif', 'Newsreader', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;
  
  --shadow-subtle: 0 2px 8px rgba(25, 24, 22, 0.04);
  --shadow-card: 0 12px 32px -4px rgba(25, 24, 22, 0.08), 0 4px 12px -2px rgba(25, 24, 22, 0.03);
  --shadow-float: 0 30px 60px -12px rgba(8, 51, 37, 0.22), 0 18px 24px -10px rgba(25, 24, 22, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-parchment);
  color: var(--ink-primary);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  selection-background-color: var(--forest-subtle);
}

/* Ambient Grain Texture */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background-image: radial-gradient(rgba(25, 24, 22, 0.03) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 9999;
}

/* Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-warm);
  padding: 1.1rem 2rem;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--ink-primary);
}

.brand-emblem {
  width: 42px;
  height: 42px;
  background: linear-gradient(145deg, var(--forest-deep) 0%, var(--forest-rich) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fef08a;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(8, 51, 37, 0.25);
  border: 1px solid rgba(254, 240, 138, 0.2);
}

.brand-name {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--ink-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-pill {
  font-size: 0.65rem;
  background: var(--forest-subtle);
  color: var(--forest-rich);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 800;
  letter-spacing: 0.8px;
  border: 1px solid rgba(13, 74, 54, 0.15);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--ink-secondary);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--forest-emerald);
}

.btn-nav-primary {
  background: var(--forest-deep);
  color: #fef08a;
  padding: 0.65rem 1.45rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(8, 51, 37, 0.25);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(254, 240, 138, 0.25);
}

.btn-nav-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(8, 51, 37, 0.35);
}

/* HERO SECTION WITH DYNAMIC PARALLAX */
.hero-wrapper {
  position: relative;
  padding: 4.5rem 2rem 6rem;
  overflow: hidden;
  perspective: 1200px;
}

.hero-glow-1 {
  position: absolute;
  top: 10%;
  left: 25%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-2 {
  position: absolute;
  top: 25%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.10) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

/* Persona Switcher Tabs in Hero */
.persona-switcher-pill {
  display: inline-flex;
  background: var(--bg-sand);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-full);
  padding: 4px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-subtle);
}

.persona-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-secondary);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.persona-btn.active {
  background: var(--forest-deep);
  color: #fef08a;
  box-shadow: 0 2px 8px rgba(8, 51, 37, 0.25);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: 4.2rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--forest-deep);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--forest-emerald);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--ink-secondary);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-hero-main {
  background: linear-gradient(145deg, var(--forest-deep) 0%, var(--forest-rich) 100%);
  color: #fef08a;
  padding: 0.95rem 2.2rem;
  border-radius: var(--radius-full);
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 24px rgba(8, 51, 37, 0.28);
  border: 1px solid rgba(254, 240, 138, 0.25);
  transition: all 0.25s ease;
}

.btn-hero-main:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(8, 51, 37, 0.38);
}

.btn-hero-alt {
  background: white;
  color: var(--ink-primary);
  border: 1px solid var(--border-subtle);
  padding: 0.95rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  transition: all 0.2s ease;
}

.btn-hero-alt:hover {
  background: var(--bg-sand);
  border-color: var(--ink-muted);
}

/* Parallax Interactive Phone Stage */
.parallax-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232, 227, 218, 0.9);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  z-index: 30;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-top-right {
  top: 8%;
  right: -8%;
}

.badge-bottom-left {
  bottom: 12%;
  left: -12%;
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.badge-text-top {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--ink-muted);
}

.badge-text-main {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ink-primary);
}

/* The Sleek Device Shell */
.phone-viewport {
  width: 350px;
  height: 690px;
  background: #18181b;
  border-radius: 48px;
  padding: 10px;
  box-shadow: var(--shadow-float);
  border: 3px solid #3f3f46;
  position: relative;
  z-index: 20;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.viewport-notch {
  width: 120px;
  height: 22px;
  background: #18181b;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 100;
}

.viewport-screen {
  background: #fcfbfa;
  border-radius: 38px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  position: relative;
  padding: 2.2rem 1.15rem 1.2rem;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
}

.viewport-screen::-webkit-scrollbar {
  display: none;
}

/* App Interior Layout */
.app-user-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.15rem;
}

.user-meta-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.user-avatar-initial {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-emerald) 100%);
  color: #fef08a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(8, 51, 37, 0.2);
}

.user-name-display {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--ink-primary);
  line-height: 1.2;
}

.user-lock-status {
  font-size: 0.68rem;
  color: var(--forest-emerald);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.pulse-gem {
  width: 6px;
  height: 6px;
  background: var(--forest-emerald);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(5, 150, 105, 0.6);
  animation: pulseGem 2s infinite;
}

@keyframes pulseGem {
  0% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.6); }
  70% { box-shadow: 0 0 0 7px rgba(5, 150, 105, 0); }
  100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

/* Digital Passport Leather Card */
.digital-passport-cover {
  background: linear-gradient(145deg, #072e21 0%, #031b13 100%);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px -6px rgba(7, 46, 33, 0.45);
  border: 1px solid rgba(254, 240, 138, 0.25);
  margin-bottom: 1.25rem;
}

.gold-watermark {
  position: absolute;
  top: -25px;
  right: -25px;
  font-size: 6rem;
  opacity: 0.08;
  pointer-events: none;
}

.passport-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.passport-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fef08a;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.blood-type-badge {
  background: var(--crimson-alert);
  color: white;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 800;
}

.passport-holder-name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  line-height: 1.1;
  color: white;
  margin-bottom: 0.2rem;
}

.passport-doc-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #a7f3d0;
  margin-bottom: 1rem;
}

.passport-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 0.75rem;
  gap: 0.5rem;
}

.meta-col-title {
  font-size: 0.64rem;
  color: #a7f3d0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-col-val {
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
}

/* Quick Passport Action Cards */
.card-action-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.action-tile {
  background: white;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.action-tile:hover {
  transform: translateY(-2px);
  border-color: var(--forest-emerald);
}

.tile-icon {
  font-size: 1.3rem;
}

.tile-headline {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink-primary);
}

.tile-sub {
  font-size: 0.68rem;
  color: var(--ink-muted);
  line-height: 1.3;
}

/* Mobile Stamps Feed */
.stamps-feed-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.stamps-feed-heading h6 {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--forest-deep);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.stamps-count-pill {
  font-size: 0.68rem;
  background: var(--bg-sand);
  color: var(--ink-secondary);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.stamps-scroll-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stamp-entry {
  background: white;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stamp-pill-badge {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  width: fit-content;
}

.stamp-entry-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink-primary);
}

.stamp-entry-body {
  font-size: 0.74rem;
  color: var(--ink-secondary);
  line-height: 1.38;
}

.stamp-entry-signature {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--ink-faint);
  border-top: 1px solid var(--bg-sand);
  padding-top: 0.4rem;
  margin-top: 0.2rem;
}

/* LIBERATION SECTION: The Wall of Healthcare Complexities */
.liberation-section {
  padding: 7rem 2rem;
  background: white;
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
}

.section-editorial-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 5rem;
}

.editorial-tag {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--forest-emerald);
  margin-bottom: 0.75rem;
  display: block;
}

.editorial-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: var(--forest-deep);
  margin-bottom: 1.25rem;
}

.editorial-subtitle {
  font-size: 1.18rem;
  color: var(--ink-secondary);
  line-height: 1.65;
}

.liberation-comparison-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.comparison-column {
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
}

.column-old-world {
  background: #fcf9f5;
  border: 1px solid #ebd9c8;
}

.column-liberated {
  background: linear-gradient(160deg, #093829 0%, #041f16 100%);
  color: white;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(254, 240, 138, 0.2);
}

.col-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 1.25rem;
}

.column-liberated .col-header {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.col-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.point-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.point-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.old-icon {
  background: #fee2e2;
  color: #991b1b;
}

.new-icon {
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
  border: 1px solid rgba(110, 231, 183, 0.3);
}

.point-heading {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.point-text {
  font-size: 0.94rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.column-liberated .point-text {
  color: #cbd5e1;
}

/* ZERO-KNOWLEDGE SECURITY STANDARD (Inspired by ZeroAuth) */
.trust-security-section {
  padding: 7rem 2rem;
  background: #062319;
  color: white;
  position: relative;
  overflow: hidden;
}

.trust-editorial-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 5rem;
}

.trust-editorial-head .editorial-title {
  color: white;
}

.trust-editorial-head .editorial-subtitle {
  color: #94a3b8;
}

/* Live Cryptographic Scramble Inspector */
.crypto-inspector-box {
  max-width: 980px;
  margin: 0 auto 4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}

.inspector-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.inspector-toggle-row h4 {
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-inspect-toggle {
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid #10b981;
  color: #a7f3d0;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-inspect-toggle:hover {
  background: #10b981;
  color: #064e3b;
}

.inspector-display-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.display-card-pane {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #e2e8f0;
  min-height: 180px;
  overflow-x: auto;
}

.pane-label-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.75rem;
  color: #38bdf8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.4rem;
}

.security-quad-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.quad-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
}

.quad-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
}

.quad-badge {
  font-size: 0.7rem;
  font-weight: 800;
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.18);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-bottom: 1.25rem;
}

.quad-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: white;
}

.quad-desc {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

/* PWA INTERACTIVE CANVAS SECTION */
.pwa-suite-section {
  padding: 7rem 2rem;
  background: var(--bg-sand);
}

.suite-frame-container {
  max-width: 1140px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.suite-tab-nav {
  background: #ebe5dc;
  padding: 1.25rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-warm);
}

.suite-tab-pills {
  display: flex;
  background: white;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 4px;
}

.tab-pill-btn {
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-full);
  border: none;
  background: none;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-pill-btn.active {
  background: var(--forest-deep);
  color: #fef08a;
  box-shadow: 0 2px 8px rgba(8, 51, 37, 0.25);
}

.suite-canvas-content {
  padding: 3rem;
  min-height: 520px;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8, 51, 37, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal-sheet {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 480px;
  width: 90%;
  box-shadow: var(--shadow-float);
  border: 1px solid var(--border-warm);
}

/* Footer */
.editorial-footer {
  background: white;
  border-top: 1px solid var(--border-warm);
  padding: 5rem 2rem 3rem;
}

.footer-content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* BEFORE & AFTER STORY SECTION */
.before-after-section {
  padding: 7rem 2rem;
  background: white;
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
}

.story-feature-image-wrap {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-warm);
  position: relative;
}

.story-feature-image {
  width: 100%;
  height: auto;
  display: block;
}

.image-split-captions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #141f19;
  color: white;
  padding: 1.25rem 2rem;
}

.caption-left {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 1.5rem;
  font-size: 0.88rem;
  color: #fca5a5;
}

.caption-right {
  padding-left: 1.5rem;
  font-size: 0.88rem;
  color: #a7f3d0;
}

/* UPI FOR HEALTHCARE SECTION */
.upi-section {
  padding: 7rem 2rem;
  background: var(--bg-sand);
}

.upi-stage-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.upi-visual-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-warm);
}

.upi-visual-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.upi-steps-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.upi-step-card {
  background: white;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-subtle);
  transition: all 0.25s ease;
  position: relative;
}

.upi-step-card:hover {
  transform: translateY(-2px);
  border-color: var(--forest-emerald);
  box-shadow: var(--shadow-card);
}

.upi-step-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--forest-emerald);
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.upi-step-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.upi-step-desc {
  font-size: 0.9rem;
  color: var(--ink-secondary);
  line-height: 1.55;
}

/* GENESIS UNDER 60 SECONDS SECTION */
.genesis-section {
  padding: 7rem 2rem;
  background: white;
  border-top: 1px solid var(--border-warm);
}

.genesis-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.genesis-card {
  background: var(--bg-parchment);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.genesis-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--forest-emerald);
}

.genesis-time-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  background: white;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-full);
  color: var(--forest-rich);
  width: fit-content;
  margin-bottom: 1.5rem;
}

.genesis-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.genesis-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--forest-deep);
  margin-bottom: 0.75rem;
}

.genesis-desc {
  font-size: 0.92rem;
  color: var(--ink-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.genesis-flow-steps {
  list-style: none;
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.genesis-flow-steps li {
  position: relative;
  padding-left: 1.2rem;
}

.genesis-flow-steps li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--forest-emerald);
}

/* OPEN STANDARDS & ABDM SECTION */
.standards-section {
  padding: 7rem 2rem;
  background: #092c20;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.standards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.standards-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.standards-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  color: #6ee7b7;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.standards-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: #fef08a;
  margin-bottom: 1rem;
}

.standards-text {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.standards-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.standards-pill {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
}

/* Responsive updates for new sections */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3.5rem;
  }
  .hero-headline {
    font-size: 3.2rem;
  }
  .hero-description {
    margin: 0 auto 2.5rem;
  }
  .hero-cta-row {
    justify-content: center;
  }
  .liberation-comparison-grid {
    grid-template-columns: 1fr;
  }
  .security-quad-grid {
    grid-template-columns: 1fr 1fr;
  }
  .upi-stage-grid {
    grid-template-columns: 1fr;
  }
  .genesis-grid {
    grid-template-columns: 1fr;
  }
  .standards-grid {
    grid-template-columns: 1fr;
  }
  .image-split-captions {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .caption-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 0;
    padding-bottom: 1rem;
  }
  .caption-right {
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .hero-headline {
    font-size: 2.5rem;
  }
  .editorial-title {
    font-size: 2.4rem;
  }
  .security-quad-grid {
    grid-template-columns: 1fr;
  }
  .phone-viewport {
    width: 320px;
    height: 640px;
  }
}

