/* ==========================================================================
   TRANSFORMATION COMMAND CENTER — Enterprise Product Stylesheet
   https://transformationcommandcenter.com
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. FONTS & ROOT DESIGN TOKENS
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&display=swap');

:root {
  /* Brand Palette */
  --navy: #09294c;
  --navy2: #061c34;
  --navy-dark: #041325;
  --navy-light: #0e3b68;
  --navy-card: rgba(9, 41, 76, 0.75);
  
  --teal: #08979d;
  --teal2: #0cb0b2;
  --teal-glow: rgba(8, 151, 157, 0.35);
  --teal-soft: rgba(12, 176, 178, 0.12);
  
  --amber: #c98216;
  --amber2: #e09219;
  
  /* System / Neutral Tones */
  --ink: #0f172a;
  --body-text: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --line-dark: rgba(255, 255, 255, 0.12);
  --soft: #f8fafc;
  --white: #ffffff;
  
  /* Status Colors */
  --red: #dc2626;
  --green: #10b981;
  
  /* Shadows & Depth */
  --shadow-sm: 0 2px 8px rgba(6, 28, 52, 0.06);
  --shadow-md: 0 10px 30px rgba(6, 28, 52, 0.08);
  --shadow-lg: 0 20px 50px rgba(6, 28, 52, 0.14);
  --shadow-teal: 0 10px 30px rgba(8, 151, 157, 0.3);
  --shadow: 0 18px 50px rgba(6, 28, 52, 0.12);
  
  /* Glassmorphism & Radii */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  /* Compatibility variables */
  --bg-light: var(--soft);
}

/* --------------------------------------------------------------------------
   1. GLOBAL RESET & BASE TYPOGRAPHY
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--body-text);
  line-height: 1.65;
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Text Selection */
::selection {
  background: rgba(8, 151, 157, 0.35);
  color: #ffffff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--navy2);
}

::-webkit-scrollbar-thumb {
  background: rgba(8, 151, 157, 0.5);
  border-radius: 5px;
  border: 2px solid var(--navy2);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--teal2);
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

a:hover {
  color: var(--teal2);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--navy);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.08;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 0.8rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.skip-link {
  position: absolute;
  top: -999px;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  z-index: 9999;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* --------------------------------------------------------------------------
   2. HEADER & STICKY GLASSMOGRAPHIC NAVIGATION
   -------------------------------------------------------------------------- */
.site-header, header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(9, 41, 76, 0.08);
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(9, 41, 76, 0.03);
}

.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.3s ease;
}

.brand img, .nav-logo, .footer-brand img {
  width: 280px;
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand img:hover, .nav-logo:hover {
  transform: scale(1.02);
}

.site-header nav, .nav-links, #site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header nav a, .nav-links a, #site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.site-header nav a::after, .nav-links a::after, #site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal2));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.site-header nav a:hover, .nav-links a:hover, #site-nav a:hover {
  color: var(--teal);
}

.site-header nav a:hover::after, .nav-links a:hover::after, #site-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
  padding: 8px;
}

/* --------------------------------------------------------------------------
   3. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.button, .btn, .cta, .nav-cta, .light-cta, .btn-download {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal2) 100%);
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(8, 151, 157, 0.3);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.button:hover, .btn:hover, .cta:hover, .nav-cta:hover, .btn-download:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(8, 151, 157, 0.5);
  background: linear-gradient(135deg, #078388 0%, #0ba2a4 100%);
  color: #ffffff !important;
}

.button-small {
  padding: 9px 18px;
  font-size: 0.88rem;
  border-radius: 6px;
}

.button-large {
  padding: 18px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

.button-secondary, .btn-cancel {
  background: rgba(9, 41, 76, 0.05);
  color: var(--navy) !important;
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-secondary:hover, .btn-cancel:hover {
  background: var(--navy);
  color: #ffffff !important;
  border-color: var(--navy);
  box-shadow: 0 8px 20px rgba(9, 41, 76, 0.25);
  transform: translateY(-2px);
}

.button-secondary-light {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.button-secondary-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.nav-cta {
  background: #F5A623 !important;
  color: #0A1628 !important;
  padding: 12px 28px !important;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95rem !important;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.45), 0 0 20px rgba(245, 166, 35, 0.2);
  border: 2px solid #F5A623;
  transition: all 0.2s ease;
}
.nav-cta:hover {
  background: #FFB84D !important;
  color: #0A1628 !important;
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.6), 0 0 28px rgba(245, 166, 35, 0.3);
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none !important;
}

.light-cta {
  background: #ffffff;
  color: var(--navy) !important;
  border: 1px solid #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.light-cta:hover {
  background: var(--soft);
  color: var(--navy) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.full {
  width: 100%;
}

.text-link {
  color: var(--teal);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.text-link:hover {
  color: var(--teal2);
  text-decoration: underline;
}

.button:focus-visible, a:focus-visible, summary:focus-visible, .tab:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--teal2);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   4. HERO SECTION & GLASSMORPHIC COMMAND CARD
   -------------------------------------------------------------------------- */
/* Mobile value strip — hidden by default; only shown as a flex strip
   inside the max-width:768px media query below. Prevents unstyled,
   full-width icons from rendering on desktop viewports. */
.mobile-value-strip {
  display: none;
}

.mobile-value-icon svg {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
}

.hero {
  position: relative;
  background: #041325;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(8, 151, 157, 0.28) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(201, 130, 22, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(9, 41, 76, 0.8) 0%, transparent 80%),
    linear-gradient(135deg, #041325 0%, #061c34 50%, #09294c 100%);
  color: #ffffff;
  padding: 120px 0 110px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(12, 176, 178, 0.08) 0%, transparent 50%);
  animation: meshBackground 22s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(8, 151, 157, 0.15);
  border: 1px solid rgba(12, 176, 178, 0.35);
  color: #72e2e4;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal2);
  box-shadow: 0 0 10px var(--teal2);
}

.hero h1 {
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 40%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy {
  font-size: 1.18rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 580px;
  font-weight: 400;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-row, .trust-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  flex-wrap: wrap;
}

.trust-row span, .trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before, .trust-strip span::before {
  content: "✓";
  color: var(--teal2);
  font-weight: 800;
}

/* Glassmorphic Command Card */
.command-card {
  position: relative;
  z-index: 2;
  background: rgba(6, 28, 52, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), 0 0 35px rgba(8, 151, 157, 0.25);
  animation: float 6s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.command-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal2), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.command-card:hover {
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.55), 0 0 45px rgba(8, 151, 157, 0.4);
}

.command-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.command-top strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a5f3fc;
  background: rgba(12, 176, 178, 0.15);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(12, 176, 178, 0.3);
}

.live-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulse 2s infinite;
}

.metric-grid, .metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.metric-grid div, .metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  text-align: center;
  transition: all 0.25s ease;
}

.metric-grid div:hover, .metric-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(12, 176, 178, 0.35);
}

.metric-grid small, .metric-grid em, .metric-card small {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-style: normal;
  margin-bottom: 6px;
  font-weight: 600;
}

.metric-grid strong, .metric-card strong, .metric-card b {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.decision-panel {
  background: rgba(9, 41, 76, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 18px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.decision-panel p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 10px;
}

.decision-panel span {
  display: inline-block;
  color: var(--teal2);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   5. SECTIONS & VISUAL RHYTHM
   -------------------------------------------------------------------------- */
section, .section {
  padding: 100px 0;
  position: relative;
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px auto;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--navy);
}

.section-heading p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 400;
}

.section-heading.light h2 {
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 50%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.75);
}

/* Dark Navy Sections */
.outcomes, .solutions, .delivery, .pricing, .final-cta, .dark-section {
  background: #061c34;
  background-image:
    radial-gradient(rgba(8, 151, 157, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, #041325 0%, #061c34 50%, #09294c 100%);
  background-size: 36px 36px, 100% 100%;
  color: #ffffff;
}

.outcomes h2, .solutions h2, .delivery h2, .pricing h2, .final-cta h2,
.outcomes h3, .solutions h3, .delivery h3, .pricing h3, .final-cta h3 {
  color: #ffffff;
}

/* Light Sections */
.demo-section, .modules, .scenario-section, .resources, .expansion-packs, .enterprise-form, .about, .contact, .faq, .what-section, .diff-section, .faq-section {
  background: #ffffff;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   6. PROMO VIDEO SECTION
   -------------------------------------------------------------------------- */
.promo-video-section {
  background: linear-gradient(180deg, #041325 0%, #061c34 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.promo-video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.promo-video-wrapper > div {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(8, 151, 157, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* --------------------------------------------------------------------------
   7. INTERACTIVE DEMO SECTION & RAG BADGES
   -------------------------------------------------------------------------- */
.demo-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.demo-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.demo-tabs, .tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.94rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab:hover {
  background: var(--soft);
  color: var(--navy);
}

.tab.active {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
  box-shadow: 0 4px 15px rgba(9, 41, 76, 0.2);
}

.demo-screen {
  background: #061c34;
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.demo-panel[hidden] {
  display: none;
}

.demo-panel.is-active {
  display: block;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.screen-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.screen-pill {
  background: rgba(8, 151, 157, 0.2);
  color: var(--teal2);
  border: 1px solid rgba(12, 176, 178, 0.3);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.screen-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.screen-metrics div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.screen-metrics small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.screen-metrics b {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
}

.screen-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.screen-table th, .screen-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-table th {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.screen-table td {
  color: rgba(255, 255, 255, 0.9);
}

/* RAG BADGES */
.rag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rag.red, .rag-red {
  background: rgba(220, 38, 38, 0.18);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.rag.amber, .rag-amber {
  background: rgba(201, 130, 22, 0.18);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.rag.green, .rag-green {
  background: rgba(16, 185, 129, 0.18);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

/* --------------------------------------------------------------------------
   8. CARD GRIDS & MODULE CARDS
   -------------------------------------------------------------------------- */
.three-grid, .outcome-grid, .scenario-grid, .solution-grid, .resource-grid, .diff-grid, .what-grid, .next-grid, .info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Three Grid & Outcomes */
.three-grid article, .outcome-grid article {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.three-grid article:hover, .outcome-grid article:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(12, 176, 178, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(8, 151, 157, 0.25);
}

.number, .num, .count {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #ffffff 0%, var(--teal2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.three-grid h3, .outcome-grid h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #ffffff;
}

/* Module Grid */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.module-grid article, .module {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.module-grid article:hover, .module:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 151, 157, 0.4);
  box-shadow: var(--shadow-lg), var(--shadow-teal);
}

.module-grid b {
  font-size: 0.8rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: 12px;
  display: block;
}

.module-grid h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.module-grid p {
  color: var(--body-text);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.module-grid small {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Module Details Accordion Cards */
.module-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.module-card summary {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  cursor: pointer;
  list-style: none;
}

.module-card summary::-webkit-details-marker {
  display: none;
}

.module-card summary > b {
  color: var(--teal);
  font-size: 0.95rem;
  font-weight: 800;
}

.module-card summary span {
  display: flex;
  flex-direction: column;
}

.module-card summary strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.module-card summary small {
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

.module-card[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

.module-card > p, .module-card > ul {
  margin-left: 22px;
  margin-right: 22px;
}

.module-card > ul {
  padding-left: 18px;
  margin-bottom: 24px;
  font-size: 0.92rem;
  color: var(--body-text);
}

/* Solution Grid */
.solution-grid article {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-grid article:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(12, 176, 178, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(8, 151, 157, 0.25);
}

.solution-grid h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.solution-grid a {
  color: var(--teal2);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

.solution-grid a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Resource Grid */
.resource-grid article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}

.resource-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-teal);
  border-color: rgba(8, 151, 157, 0.4);
}

.resource-grid span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

.resource-grid h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   9. SCENARIOS & DELIVERY
   -------------------------------------------------------------------------- */
.scenario-grid article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}

.scenario-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(8, 151, 157, 0.3);
}

.scenario-grid span {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.scenario-grid h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.disclosure {
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  margin-top: 32px;
  font-style: italic;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.delivery h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 24px;
}

.delivery ul, .checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.delivery li, .checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.delivery li::before, .checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal2);
  font-weight: 900;
  font-size: 1.1rem;
}

.delivery aside {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------------------------------------
   10. INCLUDED STRIP & EXPANSION PACKS
   -------------------------------------------------------------------------- */
.included-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 36px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.included-strip > div {
  background: #ffffff;
  padding: 24px;
}

.included-strip b {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 6px;
  display: block;
}

.included-strip span {
  font-size: 0.9rem;
  color: var(--muted);
  display: block;
}

/* --------------------------------------------------------------------------
   11. PRICING & ENTERPRISE PANEL
   -------------------------------------------------------------------------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: stretch;
}

.price-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 44px 32px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(12, 176, 178, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(8, 151, 157, 0.2);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(9, 41, 76, 0.95) 0%, rgba(6, 28, 52, 0.98) 100%);
  border: 2px solid var(--teal);
  box-shadow: 0 0 40px rgba(8, 151, 157, 0.45), 0 25px 60px rgba(0, 0, 0, 0.45);
  transform: scale(1.03);
}

.price-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 0 50px rgba(8, 151, 157, 0.6), 0 30px 70px rgba(0, 0, 0, 0.5);
}

.badge, .cover-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal2) 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 50px;
  position: absolute;
  top: -14px;
  right: 28px;
  box-shadow: 0 4px 15px rgba(8, 151, 157, 0.4);
}

.price-card h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex-grow: 1;
}

.price-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal2);
  font-weight: 900;
}

.enterprise-panel {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.enterprise-panel h3 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.enterprise-panel p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   12. FORMS & INPUTS
   -------------------------------------------------------------------------- */
.enterprise-form {
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.form-grid h2 {
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 18px;
}

.enterprise-form form, .lead-panel form, .download-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field, label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #ffffff;
  transition: all 0.25s ease;
  margin-bottom: 18px;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(8, 151, 157, 0.15);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.consent input {
  width: auto;
  margin-top: 3px;
  margin-bottom: 0;
}

.hidden {
  display: none !important;
}

/* --------------------------------------------------------------------------
   13. ABOUT & CREATOR SECTION
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.monogram {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 3.5rem;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(8, 151, 157, 0.3);
}

.role {
  font-size: 1.1rem;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 12px;
}

.credential-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.credential-row span {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}

/* --------------------------------------------------------------------------
   14. CONTACT CARDS
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-card, .contact-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.contact-card:hover, .contact-box:hover {
  transform: translateY(-5px);
  border-color: rgba(8, 151, 157, 0.4);
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   15. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq details, .faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.faq details[open] {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}

.faq summary {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
  transition: transform 0.25s ease;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p, .faq-answer {
  margin-top: 16px;
  color: var(--body-text);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   16. FINAL CTA
   -------------------------------------------------------------------------- */
.final-cta {
  background: linear-gradient(135deg, #041325 0%, #061c34 50%, #09294c 100%);
  text-align: center;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(8, 151, 157, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 40%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
footer, .site-footer {
  background: #041325;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
  position: relative;
  border-top: 1px solid rgba(12, 176, 178, 0.35);
}

.footer-grid, .footer-inner {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-grid img, .footer-brand img {
  width: 240px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-grid h3, .footer-nav h3 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-grid a, .footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-grid a:hover, .footer-links a:hover {
  color: var(--teal2);
}

.copyright, .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
}

/* --------------------------------------------------------------------------
   18. SUBPAGE SPECIAL STYLES (COMPARE, LEAD HERO, CRM, DOCUMENTATION)
   -------------------------------------------------------------------------- */
.compare-hero, .lead-hero, .success-hero {
  background: linear-gradient(135deg, #041325 0%, #061c34 50%, #09294c 100%);
  color: #ffffff;
  padding: 100px 0 80px;
  position: relative;
}

.compare-hero h1, .lead-hero h1, .success-hero h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  background: linear-gradient(135deg, #ffffff 40%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.lead-form-card, .lead-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.comparison-wrap, .compare-table-wrap, .table-scroll, .table-wrap {
  overflow-x: auto;
  margin-top: 40px;
}

.comparison, .compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison th, .comparison td, .compare-table th, .compare-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.comparison th, .compare-table th {
  background: var(--navy);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
}

.diff-card, .what-card, .next-card, .aud-card, .info-item, .cat, .segment-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.diff-card:hover, .what-card:hover, .next-card:hover, .aud-card:hover, .info-item:hover, .cat:hover, .segment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(8, 151, 157, 0.4);
}

.quote-block, .prompt-box {
  background: rgba(8, 151, 157, 0.08);
  border-left: 4px solid var(--teal);
  padding: 24px 30px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.1rem;
  font-style: italic;
  margin: 30px 0;
}

/* CRM & Stat Tiles */
.stat-grid, .pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-tile, .stat-box, .pipeline-column {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.stat-tile:hover, .stat-box:hover, .pipeline-column:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(8, 151, 157, 0.3);
}

.stat-tile strong, .stat-box strong {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  display: block;
  margin-top: 8px;
}

.status-badge, .tier-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

/* Documentation Shell (Notion style) */
.notion-shell {
  display: flex;
  min-height: 100vh;
  background: #ffffff;
}

.notion-sidebar {
  width: 280px;
  flex-shrink: 0;
  background: var(--soft);
  border-right: 1px solid var(--line);
  position: sticky;
  top: 84px;
  height: calc(100vh - 84px);
  overflow-y: auto;
  padding: 24px 16px;
}

.notion-main {
  flex-grow: 1;
  padding: 40px 60px;
  max-width: 900px;
}

.callout {
  background: var(--soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  margin: 20px 0;
}

.quick-links, .cat-items {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.quick-link, .cat-title {
  font-weight: 700;
  color: var(--navy);
}

.breadcrumb {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.last-updated, .fine-print, .email-note, .update-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.check-icon, .check {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(12, 176, 178, 0.15);
  color: var(--teal2);
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   19. KEYFRAME ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes meshBackground {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-4%, 4%) scale(1.05);
  }
  100% {
    transform: translate(4%, -4%) scale(1);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --------------------------------------------------------------------------
   20. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid, .delivery-grid, .form-grid, .lead-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .three-grid, .outcome-grid, .module-grid, .price-grid, .scenario-grid, .solution-grid, .resource-grid, .contact-grid, .diff-grid, .what-grid, .next-grid, .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .demo-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid, .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  section, .section {
    padding: 70px 0;
  }

  .site-header nav, .nav-links, #site-nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }

  .site-header nav.open, .nav-links.open, #site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .three-grid, .outcome-grid, .module-grid, .price-grid, .scenario-grid, .solution-grid, .resource-grid, .contact-grid, .stat-grid, .diff-grid, .what-grid, .next-grid, .info-grid, .pipeline {
    grid-template-columns: 1fr;
  }

  .screen-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-grid, .metrics {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .monogram {
    margin: 0 auto;
  }

  .footer-grid, .footer-inner {
    grid-template-columns: 1fr;
  }

  .enterprise-panel {
    flex-direction: column;
    text-align: center;
  }

  .included-strip {
    grid-template-columns: 1fr;
  }

  .notion-shell {
    flex-direction: column;
  }

  .notion-sidebar {
    width: 100%;
    height: auto;
    position: static;
  }

  .notion-main {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 32px);
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-row .button, .cta-row .button-secondary-light {
    width: 100%;
  }

  .hero h1 {
    font-size: 2.3rem;
  }
}


/* --------------------------------------------------------------------------
   MOBILE ENHANCEMENT LAYER — sticky CTA, value strip, thumb-friendly UX
   -------------------------------------------------------------------------- */

/* Sticky mobile CTA bar — only shows on mobile */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(11, 21, 40, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 210, 196, 0.3);
    padding: 12px 16px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  }

  .mobile-sticky-cta a {
    flex: 1;
    text-align: center;
    padding: 14px 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.15s ease;
  }

  .mobile-sticky-cta a:active {
    transform: scale(0.97);
  }

  .mobile-sticky-cta .cta-primary {
    background: var(--teal, #00d2c4);
    color: #0b1528;
  }

  .mobile-sticky-cta .cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* Add bottom padding to body so sticky CTA doesn't cover content */
  body {
    padding-bottom: 72px;
  }

  /* Hero — tighter padding, shorter copy on mobile */
  .hero {
    padding: 60px 0 40px !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .hero h1 {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
  }

  .hero-copy {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
  }

  /* CTA buttons stack on mobile */
  .cta-row {
    flex-direction: column !important;
    width: 100%;
  }

  .cta-row .button,
  .cta-row .button-secondary {
    width: 100% !important;
    text-align: center;
    padding: 16px !important;
    font-size: 1rem !important;
  }

  /* Command card — smaller but still visible on mobile */
  .command-card {
    padding: 16px !important;
  }

  .command-card .metric-grid {
    gap: 10px !important;
  }

  /* Mobile value strip — condensed scannable benefits */
  .mobile-value-strip {
    display: flex;
    overflow-x: auto;
    gap: 0;
    background: var(--bg-card, #ffffff);
    border-bottom: 1px solid var(--border-color, #e2e8f0);
    padding: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mobile-value-strip::-webkit-scrollbar {
    display: none;
  }

  .mobile-value-item {
    flex: 1 0 0;
    min-width: 0;
    text-align: center;
    padding: 20px 8px;
    border-right: 1px solid var(--border-color, #e2e8f0);
  }

  .mobile-value-item:last-child {
    border-right: none;
  }

  .mobile-value-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 210, 196, 0.1);
  }

  .mobile-value-icon svg {
    width: 20px;
    height: 20px;
  }

  .mobile-value-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--text-muted, #64748b);
    line-height: 1.3;
  }

  /* Stats bar — tighter on mobile */
  .stats-bar {
    padding: 24px 0 !important;
  }

  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .stat-item > div:first-child {
    font-size: 1.75rem !important;
  }

  .stat-item > div:last-child {
    font-size: 0.75rem !important;
  }

  /* Trust row — scrollable on mobile */
  .trust-row {
    gap: 8px !important;
    font-size: 0.75rem !important;
  }

  .trust-row span {
    white-space: nowrap;
  }

  /* Hero social proof — stack vertically */
  .hero-social-proof {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  /* Section padding — tighter on mobile */
  section, .section {
    padding: 48px 0 !important;
  }

  /* Pricing cards stack with less gap */
  .price-grid {
    gap: 16px !important;
  }

  /* Module grid — single column, tighter */
  .module-grid {
    gap: 12px !important;
  }

  /* Checklist card — full width on mobile */
  .hero-checklist-card {
    display: block !important;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .mobile-value-strip {
    padding: 0;
  }

  .mobile-value-item {
    padding: 16px 4px;
  }

  .mobile-value-label {
    font-size: 0.65rem;
  }

  .hero h1 {
    font-size: 1.5rem !important;
  }

  .container {
    width: calc(100% - 24px) !important;
  }
}

@media print {
  .site-header, footer, .menu-toggle, .skip-link {
    display: none !important;
  }
  body {
    background: #ffffff;
    color: #000000;
  }
}

/* --------------------------------------------------------------------------
   21. DASHBOARD, MODALS, CRM, NOTION & UTILITY CLASSES
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 19, 37, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 600px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.filters {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.actions, .footer-cta, .demo-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.bar, .segment-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--line);
  overflow: hidden;
  width: 100%;
  margin: 8px 0;
}

.fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal2));
  border-radius: 4px;
}

.loading, .no-data, .err {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.err {
  color: var(--red);
}

.icon, .ni-icon, .ws-icon, .ci, .pv, .pm, .tri {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.ws-title {
  font-weight: 700;
  color: var(--navy);
}

.ni-indent {
  padding-left: 20px;
}

.audience, .guarantee, .includes, .desc, .form-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.date, .delta, .meta, .name, .org, .value {
  font-size: 0.9rem;
}

.nav, .nav-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.notion-content, .notion-cover, .notion-demo-bar, .notion-nav, .notion-nav-divider, .notion-nav-item, .notion-page, .notion-sidebar-head {
  display: block;
}

.notion-nav-divider {
  height: 1px;
  background: var(--line);
  margin: 12px 0;
}

.notion-nav-item {
  padding: 8px 12px;
  color: var(--body-text);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  font-weight: 500;
}

.notion-nav-item:hover {
  background: rgba(8, 151, 157, 0.1);
  color: var(--teal);
}

.notion-sidebar-head {
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.ntable {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.ntable th, .ntable td {
  padding: 12px 16px;
  border: 1px solid var(--line);
  text-align: left;
}

.ntable th {
  background: var(--soft);
  color: var(--navy);
  font-weight: 700;
}

.ntoggle, .toggle-body {
  margin: 12px 0;
}

.checklist-preview, .compare-table-section, .next-steps {
  margin-top: 40px;
}

.segments, .stat-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}


/* --------------------------------------------------------------------------
   22. ADVANCED HERO GLOWS, GLASS CARDS & REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.dark-hero {
  background: linear-gradient(135deg, #041325 0%, #061c34 50%, #09294c 100%);
  color: #ffffff;
}

.done {
  color: var(--green);
  font-weight: 700;
}

.emoji-badge {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.expansion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.glass-card, .hero-checklist-card, .pack-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.35s ease;
}

.glass-card:hover, .hero-checklist-card:hover, .pack-card:hover {
  transform: translateY(-6px);
  border-color: rgba(12, 176, 178, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(8, 151, 157, 0.25);
}

.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(8, 151, 157, 0.35) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-pattern-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.module-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.module-icon {
  font-size: 1.5rem;
  color: var(--teal2);
}

.platform-badge-tag {
  background: rgba(8, 151, 157, 0.2);
  color: var(--teal2);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.reveal-init {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.reveal-init.active, .reveal.reveal-init.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-item {
  text-align: center;
}

.stats-bar {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  margin-top: 24px;
}

.logo {
  max-height: 50px;
  object-fit: contain;
}

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
