:root {
  --teal-dark: #0d4a4a;
  --teal-mid: #1a6b6b;
  --teal-light: #2d8f8f;
  --teal-pale: #e8f4f4;
  --teal-ghost: #f2fafa;
  --amber: #c97d2e;
  --amber-light: #f5e6d0;
  --off-white: #faf8f5;
  --warm-grey: #6b6560;
  --dark: #1a1614;
  --mid: #3d3735;
  --border: #ddd8d2;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --mono: 'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* EARLY BANNER */
.early-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 100%);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.early-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.early-badge {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  font-weight: 500;
}

.early-banner p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
  font-weight: 300;
}

.early-banner p strong {
  font-weight: 500;
  color: white;
}

.early-banner a {
  color: white;
  text-decoration: underline;
  font-weight: 500;
  transition: opacity 0.2s;
}

.early-banner a:hover { opacity: 0.8; }

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

body:has(.early-banner) nav {
  top: 41px;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  text-decoration: none;
}

.nav-logo-main {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: -0.02em;
}

.nav-logo-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  margin: 0 0.1rem 0.15rem;
  display: inline-block;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--warm-grey);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--teal-dark) !important;
  color: white !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--teal-mid) !important; }

/* HERO */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

body:has(.early-banner) #hero {
  padding-top: 161px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 5rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-light);
  padding: 0.4rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 2rem;
  width: fit-content;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.25s forwards;
}

h1 em {
  font-style: italic;
  color: var(--teal-mid);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--warm-grey);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.4s forwards;
}

.hero-modules {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.5s forwards;
}

.module-pill {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--teal-dark);
  background: var(--teal-pale);
  border: 1px solid rgba(13, 74, 74, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.6s forwards;
}

.btn-primary {
  background: var(--teal-dark);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13, 74, 74, 0.2);
}

.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  color: var(--warm-grey);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--teal-dark); }

.btn-outline {
  border: 1px solid var(--teal-dark);
  color: var(--teal-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--teal-dark);
  color: white;
}

.btn-solid {
  background: var(--teal-dark);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-solid:hover {
  background: var(--teal-mid);
}

.hero-trust {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.6s ease 0.75s forwards;
}

.hero-trust-label {
  font-size: 0.75rem;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 0.75rem;
}

.hero-trust-stat {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--mid);
  font-style: italic;
}

.hero-trust-stat strong {
  font-style: normal;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--teal-dark);
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-dark);
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(45, 143, 143, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(201, 125, 46, 0.15) 0%, transparent 50%);
}

.hero-visual {
  position: relative;
  z-index: 2;
  padding: 3rem;
  width: 100%;
  max-width: 480px;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.8s forwards;
}

.dashboard-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}

.dashboard-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.dashboard-card-title {
  font-size: 0.78rem;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.dashboard-badge {
  font-size: 0.7rem;
  font-family: var(--mono);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  background: rgba(45, 143, 143, 0.4);
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
}

.dashboard-badge.amber {
  background: rgba(201, 125, 46, 0.4);
}

.utilisation-bars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.util-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.util-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  width: 90px;
  flex-shrink: 0;
  font-weight: 300;
}

.util-bar-bg {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
}

.util-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--teal-light);
  animation: barGrow 1.2s ease 1.2s both;
  transform-origin: left;
}

.util-bar-fill.amber { background: var(--amber); }
.util-bar-fill.light { background: rgba(45, 143, 143, 0.5); }

.util-pct {
  font-size: 0.75rem;
  font-family: var(--mono);
  color: rgba(255,255,255,0.7);
  width: 32px;
  text-align: right;
}

.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mini-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 1rem;
}

.mini-stat-value {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.mini-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.mini-stat-change {
  font-size: 0.7rem;
  font-family: var(--mono);
  color: #7dd3b8;
  margin-top: 0.35rem;
}

/* SECTION STYLES */
section {
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--amber);
  opacity: 0.4;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

h2 em {
  font-style: italic;
  color: var(--teal-mid);
}

h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

p {
  color: var(--warm-grey);
  font-weight: 300;
  line-height: 1.75;
}

/* PROBLEM SECTION */
#problem {
  padding: 7rem 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
}

.problem-intro p {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.problem-intro p:last-child { margin-bottom: 0; }

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.problem-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: all 0.2s;
}

.problem-item:first-child { border-top: 1px solid var(--border); }

.problem-item:hover .problem-number {
  background: var(--teal-dark);
  color: white;
}

.problem-number {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--teal-dark);
  background: var(--teal-pale);
  border: 1px solid rgba(13,74,74,0.15);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}

.problem-text h4 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.problem-text p {
  font-size: 0.875rem;
  line-height: 1.65;
}

/* MODULES SECTION */
#modules {
  padding: 7rem 0;
  background: var(--off-white);
}

.modules-header {
  max-width: 680px;
  margin-bottom: 4rem;
}

.modules-header p {
  font-size: 1.05rem;
  margin-top: 1rem;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.module-card {
  background: white;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.module-card:hover::before { transform: scaleX(1); }
.module-card:hover { background: var(--teal-ghost); }

.module-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-pale);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.2s;
}

.module-card:hover .module-icon { background: var(--teal-pale); }

.module-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal-dark);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-outcomes {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--warm-grey);
  line-height: 1.5;
  font-weight: 300;
}

.outcome-item::before {
  content: '—';
  color: var(--teal-light);
  font-weight: 400;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.modules-footer {
  background: var(--teal-dark);
  border-radius: 8px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modules-footer p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 560px;
}

.modules-footer p strong {
  color: white;
  font-weight: 500;
}

/* FRAPPE SECTION */
#frappe {
  padding: 7rem 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.frappe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
}

.frappe-prose p {
  font-size: 1.025rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.frappe-prose p:last-child { margin-bottom: 0; }

.frappe-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.frappe-benefit {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--teal-ghost);
  border: 1px solid rgba(13,74,74,0.08);
  border-radius: 6px;
  transition: border-color 0.2s;
}

.frappe-benefit:hover { border-color: rgba(13,74,74,0.2); }

.frappe-benefit-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-pale);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.frappe-benefit-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal-dark);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.frappe-benefit h4 {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.frappe-benefit p {
  font-size: 0.83rem;
  line-height: 1.6;
}

/* PRICING PREVIEW ON HOMEPAGE */
#pricing-preview {
  padding: 7rem 0;
  background: white;
  border-top: 1px solid var(--border);
}

.pricing-simple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-simple-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  transition: all 0.2s;
}

.pricing-simple-card:hover {
  border-color: rgba(13,74,74,0.3);
  box-shadow: 0 4px 20px rgba(13,74,74,0.06);
}

.pricing-simple-card.featured {
  border-color: var(--teal-dark);
  box-shadow: 0 4px 20px rgba(13,74,74,0.1);
  background: white;
}

.pricing-simple-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--teal-dark);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 4px 4px;
}

.pricing-simple-name {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 1rem;
}

.pricing-simple-price {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing-simple-price span {
  font-size: 0.8rem;
  color: var(--warm-grey);
  font-weight: 300;
}

.pricing-simple-for {
  font-size: 0.8rem;
  color: var(--warm-grey);
  font-weight: 300;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  font-style: italic;
}

.pricing-simple-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.pricing-simple-features li {
  font-size: 0.83rem;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
  font-weight: 300;
}

.pricing-simple-features li::before {
  content: '✓';
  color: var(--teal-light);
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-note-text {
  font-size: 0.9rem;
  color: var(--warm-grey);
}

/* PRICING FULL PAGE */
#pricing-full {
  padding: 4rem 0 7rem;
}

.pricing-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.pricing-tab {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--warm-grey);
  background: none;
  border: none;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.pricing-tab.active {
  color: var(--teal-dark);
  border-bottom-color: var(--teal-dark);
}

.pricing-tab:hover:not(.active) { color: var(--mid); }

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.pricing-panel-intro {
  font-size: 1.025rem;
  color: var(--warm-grey);
  max-width: 720px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  transition: all 0.2s;
}

.pricing-card:hover {
  border-color: rgba(13,74,74,0.3);
  box-shadow: 0 4px 20px rgba(13,74,74,0.06);
}

.pricing-card.featured {
  border-color: var(--teal-dark);
  box-shadow: 0 4px 20px rgba(13,74,74,0.1);
}

.pricing-card-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--teal-dark);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 4px 4px;
}

.pricing-card-name {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 1rem;
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: 1rem;
  font-weight: 500;
  color: var(--mid);
  margin-top: 0.25rem;
}

.price-amount {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
}

.price-period {
  font-size: 0.8rem;
  color: var(--warm-grey);
  font-weight: 300;
}

.pricing-card-for {
  font-size: 0.8rem;
  color: var(--warm-grey);
  font-weight: 300;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  font-style: italic;
}

.pricing-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.pricing-card-features li {
  font-size: 0.83rem;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
  font-weight: 300;
}

.pricing-card-features li::before {
  content: '✓';
  color: var(--teal-light);
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-card-cta {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid var(--teal-dark);
  color: var(--teal-dark);
}

.pricing-card-cta:hover {
  background: var(--teal-dark);
  color: white;
}

.pricing-card.featured .pricing-card-cta {
  background: var(--teal-dark);
  color: white;
}

.pricing-card.featured .pricing-card-cta:hover {
  background: var(--teal-mid);
}

.pricing-note {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: var(--amber-light);
  border: 1px solid rgba(201, 125, 46, 0.2);
  border-radius: 6px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pricing-note-icon {
  color: var(--amber);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-note p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.65;
}

.pricing-note p strong { color: var(--dark); font-weight: 600; }

/* EARLY SECTION */
#early {
  padding: 7rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.early-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.early-left p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.early-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.early-benefits li {
  font-size: 0.95rem;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
}

.early-benefits li::before {
  content: '✓';
  color: var(--teal-light);
  font-size: 0.9rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.early-box {
  background: white;
  border: 2px solid var(--teal-dark);
  border-radius: 8px;
  padding: 2rem;
}

.early-box h4 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.early-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.early-box li {
  font-size: 0.875rem;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.6;
  font-weight: 300;
}

.early-box li::before {
  content: '—';
  color: var(--teal-light);
  font-weight: 500;
  flex-shrink: 0;
}

.early-deadline {
  background: var(--teal-ghost);
  border: 1px solid rgba(13,74,74,0.1);
  border-radius: 6px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.early-deadline p {
  font-size: 0.9rem;
  color: var(--dark);
  margin: 0;
}

/* AUDIENCE SECTION */
#audience {
  padding: 7rem 0;
  background: var(--teal-dark);
  color: white;
}

#audience .section-label { color: rgba(255,255,255,0.5); }
#audience .section-label::after { background: rgba(255,255,255,0.3); }

#audience h2 { color: white; }
#audience h2 em { color: rgba(45, 180, 180, 0.9); }

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
  align-items: start;
}

.audience-prose p {
  color: rgba(255,255,255,0.7);
  font-size: 1.025rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
  font-weight: 300;
}

.audience-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.sector-tag {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  transition: all 0.2s;
}

.sector-tag:hover {
  background: rgba(255,255,255,0.08);
  color: white;
}

.audience-fit {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2rem;
}

.audience-fit h4 {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}

.fit-item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.fit-item:last-child { margin-bottom: 0; }

.fit-check {
  width: 20px;
  height: 20px;
  background: rgba(45, 143, 143, 0.3);
  border: 1px solid rgba(45, 143, 143, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.fit-check::after {
  content: '✓';
  font-size: 0.65rem;
  color: var(--teal-light);
}

.fit-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  font-weight: 300;
}

/* TRACK RECORD */
#track-record {
  padding: 7rem 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
}

.track-prose p {
  font-size: 1.025rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.track-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.track-stat {
  background: white;
  padding: 2rem;
  transition: background 0.2s;
}

.track-stat:hover { background: var(--teal-ghost); }

.track-stat-value {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.track-stat-label {
  font-size: 0.83rem;
  color: var(--warm-grey);
  font-weight: 300;
  line-height: 1.4;
}

.track-gxco {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.track-gxco p {
  font-size: 0.875rem;
  color: var(--warm-grey);
}

.track-gxco a {
  font-size: 0.875rem;
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: gap 0.2s;
}

.track-gxco a:hover { gap: 0.65rem; }

/* FINAL CTA */
#cta {
  padding: 8rem 0;
  background: var(--off-white);
  text-align: center;
}

#cta h2 {
  max-width: 680px;
  margin: 0 auto 1.5rem;
}

#cta p {
  max-width: 520px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

/* FAQ */
#faq {
  padding: 7rem 0;
  background: var(--off-white);
}

.faq-header {
  max-width: 680px;
  margin-bottom: 4rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

.faq-item h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.faq-item p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.faq-item p:last-child { margin-bottom: 0; }

/* PAGE HEADER */
.page-header {
  padding: 10rem 0 5rem;
  background: white;
  border-bottom: 1px solid var(--border);
}

body:has(.early-banner) .page-header {
  padding-top: 11rem;
}

.page-intro {
  font-size: 1.15rem;
  color: var(--warm-grey);
  max-width: 680px;
  margin-top: 1.5rem;
  line-height: 1.8;
}

/* ABOUT PAGE STYLES */
#story {
  padding: 7rem 0;
  background: var(--off-white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  margin-top: 4rem;
  align-items: start;
}

.story-right p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

#mission {
  padding: 7rem 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mission-content {
  max-width: 1000px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
}

.mission-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mission-values h4 {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 2rem;
}

.value-item {
  margin-bottom: 2rem;
}

.value-item:last-child { margin-bottom: 0; }

.value-item h5 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.875rem;
  line-height: 1.65;
}

#team {
  padding: 7rem 0;
  background: var(--off-white);
}

.team-header {
  max-width: 720px;
  margin-bottom: 3rem;
}

.team-note {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  max-width: 720px;
}

.team-note p {
  font-size: 0.95rem;
  line-height: 1.75;
}

#track {
  padding: 7rem 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.track-header {
  max-width: 680px;
  margin-bottom: 4rem;
}

.track-stats-large {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 4rem;
}

.track-stat-large {
  background: white;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.2s;
}

.track-stat-large:hover { background: var(--teal-ghost); }

.track-work {
  max-width: 820px;
}

.track-work h3 {
  margin-bottom: 1.5rem;
}

.track-work > p {
  font-size: 1.025rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.track-work-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.track-work-list li {
  font-size: 0.95rem;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.7;
}

.track-work-list li::before {
  content: '→';
  color: var(--teal-light);
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

#gxco-link {
  padding: 7rem 0;
  background: var(--off-white);
}

.gxco-box {
  max-width: 720px;
  margin: 0 auto;
}

.gxco-box-content {
  background: white;
  border: 2px solid var(--teal-dark);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
}

.gxco-box-content h3 {
  margin-bottom: 1rem;
}

.gxco-box-content p {
  font-size: 1.025rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* CONTACT PAGE */
#contact-main {
  padding: 5rem 0 7rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
}

.contact-method {
  margin-bottom: 4rem;
}

.contact-method:last-child { margin-bottom: 0; }

.contact-method h3 {
  margin-bottom: 1rem;
}

.contact-method p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.contact-method ul {
  margin: 1.25rem 0;
  padding-left: 1.25rem;
}

.contact-method li {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.contact-cta-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 1.5rem;
}

.calendar-placeholder {
  background: white;
  border: 1px dashed var(--border);
  border-radius: 6px;
  padding: 3rem 2rem;
  text-align: center;
}

.contact-info-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.contact-info-box h4 {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 1.5rem;
}

.info-item {
  margin-bottom: 1.5rem;
}

.info-item:last-child { margin-bottom: 0; }

.info-item h5 {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.info-item p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.contact-faq-link, .contact-early-partner {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.contact-faq-link h4, .contact-early-partner h4 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.contact-faq-link p, .contact-early-partner p {
  font-size: 0.875rem;
  line-height: 1.65;
}

#contact-locations {
  background: var(--off-white);
  padding: 5rem 0;
}

.locations-content h3 {
  margin-bottom: 1rem;
}

.locations-content > p {
  font-size: 1.025rem;
  line-height: 1.8;
}

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

.location-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

.location-card h4 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.location-card p {
  font-size: 0.875rem;
  line-height: 1.65;
}

/* FOOTER */
footer {
  background: var(--dark);
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.7); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes barGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pricing-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 5rem 2rem 3rem; }
  .problem-grid, .frappe-grid, .track-grid, .audience-grid, .early-grid, .story-grid, .mission-grid { grid-template-columns: 1fr; gap: 3rem; }
  .modules-grid, .pricing-cards, .pricing-simple { grid-template-columns: 1fr; }
  .mini-stats, .track-stats { grid-template-columns: 1fr 1fr; }
  .track-stats-large, .location-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .modules-footer { flex-direction: column; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { justify-content: center; }
}
