/* ═══════════════════════════════════════════════════════════════════════
   LEXORA — Modern Premium Design System
   Inspirado en Linear / Vercel / Speak / Italki — academia tech premium
   ═══════════════════════════════════════════════════════════════════════ */

/* Cabinet Grotesk from Fontshare (premium grotesque, free) */
@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@400,500,700,800&display=swap');

/* Inter + JetBrains Mono from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Surface */
  --bg: #FAFAF8;
  --bg-card: #FFFFFF;
  --bg-soft: #F4F4F1;
  --bg-deep: #0A0A0A;
  --bg-deep-card: #161616;

  /* Ink */
  --ink: #0A0A0A;
  --ink-deep: #000;
  --ink-soft: rgba(10, 10, 10, 0.72);
  --ink-mute: rgba(10, 10, 10, 0.5);
  --ink-faint: rgba(10, 10, 10, 0.35);
  --ink-line: rgba(10, 10, 10, 0.08);
  --ink-line-strong: rgba(10, 10, 10, 0.14);

  /* Accent — vibrant modern orange */
  --accent: #FF5A1F;
  --accent-hover: #E63E0A;
  --accent-soft: rgba(255, 90, 31, 0.08);
  --accent-line: rgba(255, 90, 31, 0.2);

  /* Gradients */
  --grad-accent: linear-gradient(135deg, #FF5A1F 0%, #FF8A4F 100%);
  --grad-warm: linear-gradient(135deg, #FFF5F0 0%, #FFE8DD 100%);
  --grad-dark: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);

  /* Cream on dark */
  --cream: #FAFAF8;
  --cream-soft: rgba(250, 250, 248, 0.78);
  --cream-mute: rgba(250, 250, 248, 0.5);

  /* Type */
  --font-display: 'Cabinet Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --max-w: 1240px;
  --gutter: clamp(20px, 4vw, 48px);

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.04);
  --shadow-md: 0 4px 16px -4px rgba(10, 10, 10, 0.08), 0 2px 4px -2px rgba(10, 10, 10, 0.04);
  --shadow-lg: 0 16px 40px -12px rgba(10, 10, 10, 0.12), 0 4px 8px -2px rgba(10, 10, 10, 0.06);
  --shadow-accent: 0 12px 32px -8px rgba(255, 90, 31, 0.35);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quick: cubic-bezier(0.4, 0, 0.2, 1);

  /* Aliases */
  --border: var(--ink-line);
  --shadow-card: var(--shadow-md);
  --shadow-hover: var(--shadow-lg);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: var(--accent); color: white; }

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-feature-settings: "kern", "liga", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: clip;
}
body { display: flex; flex-direction: column; }
main { flex: 1; position: relative; }

/* ═══ TYPOGRAPHY ═══ */
a { color: var(--accent); text-decoration: none; transition: color .15s var(--ease-quick); }
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}

h1 {
  font-size: clamp(40px, 6.5vw, 84px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

h4 {
  font-size: clamp(17px, 1.5vw, 19px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink-soft);
}
p strong, strong { font-weight: 600; color: var(--ink); }

/* Tag / Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
  padding: 6px 14px;
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent-line);
}

.eyebrow-plain {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

/* Highlight in headings */
.highlight {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
}

/* ═══ LAYOUT ═══ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.container-text { max-width: 720px; margin: 0 auto; padding: 0 var(--gutter); }

section { padding: clamp(64px, 10vw, 128px) 0; position: relative; }
section.bg-soft { background: var(--bg-soft); }
section.bg-deep {
  background: var(--bg-deep);
  color: var(--cream);
}
section.bg-deep h1, section.bg-deep h2, section.bg-deep h3, section.bg-deep h4 { color: var(--cream); }
section.bg-deep p { color: var(--cream-soft); }
section.bg-deep .eyebrow {
  background: rgba(255, 90, 31, 0.15);
  border-color: rgba(255, 90, 31, 0.3);
}

/* ═══ HEADER ═══ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--ink-line);
}
.site-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  flex-shrink: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: lowercase;
}
.site-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--accent);
  color: white;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
  position: relative;
  text-transform: uppercase;
  transition: background .2s var(--ease-quick);
}
.site-logo-mark::after {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: white;
  opacity: 0.95;
}
.site-logo-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  margin-left: 2px;
  align-self: flex-end;
  margin-bottom: 4px;
  border-radius: 1px;
}
.site-logo:hover { color: var(--ink-deep); }
.site-logo:hover .site-logo-mark { background: var(--accent-hover); }
.footer-brand .site-logo { color: var(--cream, #FAFAF8); }
.footer-brand .site-logo:hover { color: white; }

.site-nav { display: flex; gap: 2px; flex: 1; justify-content: center; }
.site-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  padding: 8px 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--radius-pill);
  transition: all .15s var(--ease-quick);
}
.site-nav a:hover { color: var(--ink); background: var(--ink-line); }
.site-nav a.active { color: var(--accent); background: var(--accent-soft); }

.site-cta { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

/* ═══ BUTTONS ═══ */
.btn-primary, .btn-ghost, .btn-light, .btn-outline {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all .2s var(--ease-quick);
  letter-spacing: -0.005em;
  line-height: 1;
  white-space: nowrap;
  position: relative;
}
.btn-primary {
  background: var(--ink);
  color: white;
}
.btn-primary:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}
.btn-primary.gradient {
  background: var(--grad-accent);
  color: white;
}
.btn-primary.gradient:hover { box-shadow: var(--shadow-accent); }

.btn-primary .arrow { display: inline-block; transition: transform .25s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-line-strong);
}
.btn-ghost:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.btn-light {
  background: white;
  color: var(--ink);
  border-color: var(--ink-line);
}
.btn-light:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: white; }

.btn-lg { padding: 14px 28px; font-size: 15px; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--ink-line);
  border-radius: 10px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: all .25s var(--ease);
}

/* ═══ HERO ═══ */
.hero {
  padding: clamp(72px, 12vw, 140px) 0 clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero > .container, .hero > .container-narrow { position: relative; z-index: 1; }
.hero .eyebrow { margin-bottom: 28px; }
.hero h1 { margin-bottom: 28px; max-width: 16ch; margin-left: auto; margin-right: auto; }
.hero h1 .highlight { background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-lead {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  max-width: 60ch;
  color: var(--ink-soft);
  margin: 0 auto 40px;
  font-weight: 400;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* Hero trust strip */
.hero-trust {
  margin-top: clamp(56px, 8vw, 96px);
  padding: 32px clamp(20px, 4vw, 48px);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-line);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.hero-trust-item .num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.hero-trust-item .num.gradient {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-trust-item .label {
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 500;
  line-height: 1.4;
}

/* ═══ SECTION HEAD ═══ */
.section-head {
  margin-bottom: clamp(48px, 7vw, 80px);
  max-width: 720px;
}
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: 20px; }
.section-head p { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.55; max-width: 56ch; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ═══ LEVEL CARDS ═══ */
.levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.level-card {
  background: var(--bg-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all .25s var(--ease-quick);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.level-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-line);
}
.level-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
  padding: 4px 10px;
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
  align-self: flex-start;
}
.level-card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 8px;
}
.level-card h3 {
  font-size: 26px;
  margin-bottom: 6px;
  font-weight: 600;
}
.level-card-meta {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 16px;
  font-weight: 500;
}
.level-card-desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.55;
  flex: 1;
}
.level-card-cta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-line);
}
.level-card-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.025em;
}
.level-card-price-sub {
  font-size: 11px;
  color: var(--ink-mute);
  font-weight: 500;
  margin-top: 4px;
}

/* Featured medico card */
.featured-card {
  background: var(--bg-deep);
  background-image: radial-gradient(at 80% 20%, rgba(255, 90, 31, 0.15) 0%, transparent 50%);
  color: var(--cream);
  padding: clamp(40px, 6vw, 72px);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.featured-card .eyebrow {
  background: rgba(255, 90, 31, 0.15);
  color: var(--accent);
  border-color: rgba(255, 90, 31, 0.3);
}
.featured-card h3 {
  color: var(--cream);
  margin-bottom: 16px;
  font-size: clamp(28px, 3.5vw, 40px);
}
.featured-card p { color: var(--cream-soft); font-size: 17px; line-height: 1.55; max-width: 60ch; }
.featured-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(250, 250, 248, 0.5);
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* ═══ METHOD GRID ═══ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.method-card {
  background: var(--bg-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .25s var(--ease-quick);
  display: flex;
  flex-direction: column;
}
.method-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-line);
}
section.bg-deep .method-card {
  background: var(--bg-deep-card);
  border-color: rgba(250, 250, 248, 0.08);
}
section.bg-deep .method-card:hover { border-color: rgba(255, 90, 31, 0.3); }

.method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-md);
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: var(--font-display);
}
section.bg-deep .method-icon {
  background: rgba(255, 90, 31, 0.12);
}

.method-card h4 {
  font-size: 19px;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
section.bg-deep .method-card h4 { color: var(--cream); }
.method-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
section.bg-deep .method-card p { color: var(--cream-soft); }

/* ═══ STATS ═══ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.stat {
  background: var(--bg-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all .25s var(--ease-quick);
}
section.bg-deep .stat {
  background: var(--bg-deep-card);
  border-color: rgba(250, 250, 248, 0.08);
}
.stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-line);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  line-height: 1;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 500;
  line-height: 1.4;
}
section.bg-deep .stat-label { color: var(--cream-mute); }

/* ═══ PROGRAM BLOCK ═══ */
.program-block {
  padding: clamp(40px, 5vw, 64px);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  margin-bottom: 24px;
  position: relative;
  transition: border-color .25s var(--ease-quick);
}
.program-block:hover { border-color: var(--accent-line); }

.program-block-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.program-block-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--grad-accent);
  color: white;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.program-block-title h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 6px;
}
.program-block-title .meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
}
.program-block-desc {
  font-size: 17px;
  line-height: 1.6;
  max-width: 70ch;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.program-block-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.program-block-grid > div h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.program-block-grid ul { list-style: none; padding: 0; }
.program-block-grid li {
  padding: 5px 0 5px 22px;
  position: relative;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.program-block-grid li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.program-block-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.program-block-cta .meta-small {
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 500;
}

/* Featured program block (medico) */
.program-block.featured {
  background: var(--bg-deep);
  background-image: radial-gradient(at 90% 10%, rgba(255, 90, 31, 0.15) 0%, transparent 50%);
  color: var(--cream);
  border: none;
}
.program-block.featured h2, .program-block.featured h4 { color: var(--cream); }
.program-block.featured .program-block-desc { color: var(--cream-soft); }
.program-block.featured .program-block-title .meta { color: var(--cream-mute); }
.program-block.featured .program-block-grid {
  border-color: rgba(250, 250, 248, 0.1);
}
.program-block.featured .program-block-grid > div h4 { color: var(--accent); }
.program-block.featured .program-block-grid li { color: var(--cream-soft); }
.program-block.featured .meta-small { color: var(--cream-mute); }

/* ═══ PRICING ═══ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all .25s var(--ease-quick);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-line);
}
.pricing-card.featured {
  background: var(--bg-deep);
  background-image: radial-gradient(at 50% 0%, rgba(255, 90, 31, 0.2) 0%, transparent 70%);
  color: var(--cream);
  border: 1.5px solid var(--accent);
  transform: scale(1.04);
  z-index: 2;
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-2px); }
.pricing-card.featured .pricing-level,
.pricing-card.featured .pricing-amt { color: var(--cream); }
.pricing-card.featured .pricing-card-meta,
.pricing-card.featured .pricing-amt-sub { color: var(--cream-mute); }
.pricing-card.featured .btn-primary { background: var(--accent); color: white; }
.pricing-card.featured .btn-primary:hover { background: white; color: var(--ink); box-shadow: 0 12px 32px -8px rgba(255, 255, 255, 0.3); }

.pricing-level {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}
.pricing-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 32px;
}
.pricing-amt {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.035em;
}
.pricing-amt sup { font-size: 24px; vertical-align: super; color: var(--accent); font-weight: 600; }
.pricing-amt-sub {
  font-size: 12px;
  color: var(--ink-mute);
  margin-bottom: 28px;
  font-weight: 500;
}
.pricing-card .btn-primary { width: 100%; justify-content: center; }

/* Pricing includes list */
.includes-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.includes-list li .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
}

/* ═══ FAQ ═══ */
.faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  cursor: pointer;
  transition: all .2s var(--ease-quick);
}
.faq-item:hover { border-color: var(--accent-line); }
.faq-item.open {
  border-color: var(--accent-line);
  box-shadow: var(--shadow-md);
}
.faq-q {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  font-family: var(--font-body);
  letter-spacing: -0.015em;
}
.faq-q::after {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8 3v10M3 8h10' stroke='%23FF5A1F' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  transition: transform .3s var(--ease);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding-top .35s var(--ease);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 800px; padding-top: 16px; }

/* ═══ CTA BANNER ═══ */
.cta-banner {
  background: var(--bg-deep);
  background-image: radial-gradient(at 20% 20%, rgba(255, 90, 31, 0.2) 0%, transparent 50%),
                    radial-gradient(at 80% 80%, rgba(255, 138, 79, 0.15) 0%, transparent 50%);
  color: var(--cream);
  padding: clamp(56px, 8vw, 96px) clamp(32px, 6vw, 80px);
  text-align: center;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.cta-banner .eyebrow {
  background: rgba(255, 90, 31, 0.15);
  border-color: rgba(255, 90, 31, 0.3);
}
.cta-banner h2 {
  color: var(--cream);
  margin-bottom: 16px;
  font-size: clamp(28px, 3.5vw, 44px);
}
.cta-banner p {
  color: var(--cream-soft);
  font-size: clamp(15px, 1.3vw, 18px);
  max-width: 56ch;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.cta-banner .btn-primary {
  background: var(--accent);
  color: white;
}
.cta-banner .btn-primary:hover {
  background: white;
  color: var(--ink);
  box-shadow: 0 12px 32px -8px rgba(255, 255, 255, 0.3);
}
.cta-banner-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--cream-mute);
  font-weight: 400;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ═══ BLOG ═══ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s var(--ease-quick);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-line);
}
.blog-card a { color: inherit; text-decoration: none; display: flex; flex-direction: column; height: 100%; }
.blog-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
  padding: 4px 10px;
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
  align-self: flex-start;
}
.blog-card h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.blog-card-excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 20px;
  flex: 1;
}
.blog-card-meta {
  font-size: 12px;
  color: var(--ink-mute);
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 500;
}
.blog-card-arrow {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  transition: transform .25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-card:hover .blog-card-arrow { transform: translateX(4px); }

/* Blog article */
.blog-article { max-width: 720px; margin: 0 auto; padding: 0 var(--gutter); }
.blog-article-header {
  text-align: center;
  margin: clamp(48px, 7vw, 80px) 0 clamp(40px, 6vw, 64px);
}
.blog-article-header .blog-card-tag { margin-bottom: 24px; }
.blog-article-header h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.025em;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.blog-article-meta {
  font-size: 13px;
  letter-spacing: 0;
  color: var(--ink-mute);
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 500;
}
.blog-article-content { font-size: 17px; line-height: 1.75; color: var(--ink); }
.blog-article-content p {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 17px;
}
.blog-article-content h2 {
  margin-top: 56px;
  margin-bottom: 20px;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 600;
}
.blog-article-content h3 { margin-top: 40px; margin-bottom: 14px; font-size: 21px; font-weight: 600; }
.blog-article-content ul, .blog-article-content ol { margin-bottom: 24px; }
.blog-article-content ul { list-style: none; padding-left: 0; }
.blog-article-content ul li {
  position: relative;
  padding: 4px 0 4px 24px;
  list-style: none;
}
.blog-article-content ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.blog-article-content ol { padding-left: 28px; }
.blog-article-content ol li { padding: 4px 0; padding-left: 8px; }
.blog-article-content ol li::marker {
  font-weight: 700;
  color: var(--accent);
}
.blog-article-content blockquote {
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}
.blog-article-content blockquote em { font-style: italic; }
.blog-article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 14.5px;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.blog-article-content table thead { background: var(--bg-soft); }
.blog-article-content table th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink-line);
}
.blog-article-content table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--ink-line);
  color: var(--ink-soft);
}
.blog-article-content table tr:last-child td { border-bottom: none; }

/* ═══ FOOTER ═══ */
.site-footer {
  background: var(--bg-deep);
  color: var(--cream-soft);
  padding: clamp(60px, 9vw, 120px) 0 32px;
  margin-top: 0;
  position: relative;
}
.site-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
}
.footer-brand .site-logo {
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--cream-mute);
  max-width: 40ch;
}
.footer-brand p a { color: var(--accent); }
.footer-brand p a:hover { color: white; }

.footer-col h4 {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--cream-soft);
  font-size: 14px;
  line-height: 2;
  margin: 0;
  transition: color .15s var(--ease-quick);
}
.footer-col a:hover { color: var(--accent); }
.site-footer-bottom {
  max-width: var(--max-w);
  margin: 56px auto 0;
  padding: 24px var(--gutter) 0;
  border-top: 1px solid rgba(250, 250, 248, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--cream-mute);
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer-bottom a {
  color: var(--cream-mute);
  margin-left: 20px;
  font-size: 12px;
}
.site-footer-bottom a:hover { color: var(--accent); }

/* ═══ MOTION ═══ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: .05s; }
.reveal-2 { transition-delay: .1s; }
.reveal-3 { transition-delay: .15s; }
.reveal-4 { transition-delay: .2s; }
.reveal-5 { transition-delay: .25s; }

/* ═══ HELPERS ═══ */
.hidden { display: none !important; }
.visually-hidden-focusable {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream); padding: 12px 20px;
  z-index: 9999; font-size: 14px;
}
.visually-hidden-focusable:focus { left: 0; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 980px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 16px var(--gutter);
    gap: 4px;
    border-bottom: 1px solid var(--ink-line);
  }
  .menu-toggle { display: inline-flex; }
  .site-cta .btn-ghost { display: none; }
  .program-block-head { gap: 16px; }
  .levels-grid { grid-template-columns: 1fr 1fr; }
  .method-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .site-footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 640px) {
  /* On real mobile, hide the entire CTA button group except hamburger */
  .site-cta .btn-primary { display: none; }
  .site-header-inner { gap: 12px; padding: 12px var(--gutter); }
  .site-logo {
    font-size: 16px;
    gap: 6px;
  }
  .site-logo-mark { width: 28px; height: 28px; font-size: 14px; }
}
@media (max-width: 560px) {
  .site-footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .levels-grid, .method-grid, .pricing-grid, .blog-grid, .stats-row { grid-template-columns: 1fr; }
  .level-card-cta { flex-direction: column; align-items: flex-start; }
  .level-card-cta .btn-primary { width: 100%; justify-content: center; }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .floating-word, .vocab-marquee-track, .pulse-dot::after, .orb { animation: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════════
   INTERACTIVE ATMOSPHERE — Floating words · Marquee · Translator · Orbs
   ═══════════════════════════════════════════════════════════════════════ */

/* ═══ AVAILABILITY GRID (matches platform schema in academia.html) ═══ */
.avail-grid-pro {
  display: grid;
  grid-template-columns: 64px repeat(7, 1fr);
  gap: 1px;
  background: var(--ink-line);
  border-radius: var(--radius-md);
  border: 1px solid var(--ink-line);
  overflow: hidden;
  margin-bottom: 24px;
  user-select: none;
  -webkit-user-select: none;
}
.avail-grid-pro .gh-corner { background: var(--bg-card); }
.avail-grid-pro .gh {
  background: var(--bg-card);
  padding: 10px 4px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.avail-grid-pro .gh.weekend { color: var(--accent); }
.avail-grid-pro .gt {
  background: var(--bg-card);
  padding: 0 8px;
  text-align: right;
  font-size: 10px;
  color: var(--ink-mute);
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 22px;
}
.avail-grid-pro .gt.hour-mark {
  font-weight: 600;
  color: var(--ink);
  font-size: 11px;
}
.avail-grid-pro .gc {
  background: var(--bg-card);
  cursor: pointer;
  transition: background 0.1s ease;
  min-height: 22px;
  position: relative;
}
.avail-grid-pro .gc:hover { background: var(--accent-soft); }
.avail-grid-pro .gc.hour-mark { border-top: 1px solid var(--ink-line); }
.avail-grid-pro .gc.weekend { background: rgba(10, 10, 10, 0.015); }
.avail-grid-pro .gc.weekend:hover { background: var(--accent-soft); }
.avail-grid-pro .gc.selected {
  background: var(--accent);
  box-shadow: inset 0 0 0 1.5px var(--bg-card);
}
.avail-grid-pro .gc.selected:hover { background: var(--accent-hover); }
.avail-grid-pro.painting .gc { cursor: cell; }

@media (max-width: 720px) {
  .avail-grid-pro { grid-template-columns: 50px repeat(7, 1fr); }
  .avail-grid-pro .gh { font-size: 10px; padding: 8px 2px; letter-spacing: 0.05em; }
  .avail-grid-pro .gt { font-size: 9px; padding: 0 4px; min-height: 20px; }
  .avail-grid-pro .gt.hour-mark { font-size: 10px; }
  .avail-grid-pro .gc { min-height: 20px; }
}

/* ═══ FLOATING FRENCH WORDS ═══ */
.floating-words {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero > .floating-words { z-index: 0; }
.hero > .container, .hero > .container-narrow { position: relative; z-index: 2; }

.floating-word {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  letter-spacing: -0.02em;
  user-select: none;
  animation: float-drift 14s ease-in-out infinite;
  will-change: opacity, transform;
}
.floating-word.accent { color: var(--accent); }
.floating-word.ink { color: var(--ink); }
.floating-word.cream { color: rgba(250, 250, 248, 0.9); }

.fw-1 { top: 10%; left: 4%; font-size: clamp(32px, 4.5vw, 64px); animation-delay: 0s; }
.fw-2 { top: 18%; right: 6%; font-size: clamp(26px, 3.5vw, 52px); animation-delay: 2.8s; }
.fw-3 { top: 48%; left: 2%; font-size: clamp(22px, 3vw, 44px); animation-delay: 5.6s; }
.fw-4 { top: 55%; right: 3%; font-size: clamp(28px, 4vw, 56px); animation-delay: 1.4s; }
.fw-5 { top: 72%; left: 12%; font-size: clamp(20px, 2.8vw, 38px); animation-delay: 8.4s; }
.fw-6 { top: 78%; right: 14%; font-size: clamp(24px, 3.2vw, 46px); animation-delay: 4.2s; }

@keyframes float-drift {
  0%, 100% { opacity: 0; transform: translateY(0) translateX(0); }
  15%, 85% { opacity: 0.10; }
  50% { opacity: 0.14; transform: translateY(-18px) translateX(10px); }
}

/* In dark sections, lower opacity but slightly different keyframes */
section.bg-deep .floating-word,
.featured-card .floating-word,
.cta-banner .floating-word {
  color: rgba(250, 250, 248, 0.9);
}
section.bg-deep .floating-word.accent,
.featured-card .floating-word.accent,
.cta-banner .floating-word.accent {
  color: var(--accent);
}
@keyframes float-drift-dark {
  0%, 100% { opacity: 0; transform: translateY(0) translateX(0); }
  15%, 85% { opacity: 0.08; }
  50% { opacity: 0.13; transform: translateY(-14px) translateX(8px); }
}
section.bg-deep .floating-word,
.featured-card .floating-word,
.cta-banner .floating-word {
  animation-name: float-drift-dark;
}

/* ═══ VOCAB MARQUEE ═══ */
.vocab-marquee {
  background: var(--bg-soft);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.vocab-marquee::before, .vocab-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.vocab-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-soft) 30%, transparent);
}
.vocab-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-soft) 30%, transparent);
}

.vocab-marquee-track {
  display: flex;
  gap: 56px;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.vocab-marquee-track span.accent { color: var(--accent); }
.vocab-marquee-track span.dot {
  color: var(--accent);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  opacity: 0.6;
}
.vocab-marquee:hover .vocab-marquee-track { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══ TRANSLATOR STRIP ═══ */
.translator-strip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  background: var(--bg-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-pill);
  margin-top: 32px;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  position: relative;
  overflow: hidden;
}
.translator-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 90, 31, 0.04) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}

.translator-strip .t-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.translator-strip .t-from,
.translator-strip .t-to {
  font-size: 16px;
  font-weight: 600;
  transition: opacity .3s ease, transform .3s ease;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.translator-strip .t-from {
  color: var(--ink);
}
.translator-strip .t-to {
  color: var(--accent);
  font-style: italic;
}
.translator-strip .t-arrow {
  color: var(--ink-mute);
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.translator-strip.swap .t-from,
.translator-strip.swap .t-to {
  opacity: 0;
  transform: translateY(-3px);
}

/* ═══ PULSING DOT (for live badge) ═══ */
.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  margin-right: 2px;
  vertical-align: middle;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: pulse-ring 1.6s ease-out infinite;
  opacity: 0;
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ═══ ANIMATED GRADIENT ORBS (dark sections) ═══ */
.featured-card, .cta-banner, .pricing-card.featured, section.bg-deep, .program-block.featured {
  position: relative;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  will-change: transform;
}
.orb-accent { background: radial-gradient(circle, #FF5A1F 0%, transparent 70%); }
.orb-peach { background: radial-gradient(circle, #FF8A4F 0%, transparent 70%); }

.orb-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -100px;
  animation: orb-drift-1 18s ease-in-out infinite;
}
.orb-2 {
  width: 320px;
  height: 320px;
  bottom: -120px;
  left: -80px;
  animation: orb-drift-2 22s ease-in-out infinite;
}
.orb-3 {
  width: 280px;
  height: 280px;
  top: 30%;
  left: 40%;
  animation: orb-drift-3 26s ease-in-out infinite;
  opacity: 0.25;
}

@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 50px) scale(1.1); }
}
@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -30px) scale(0.95); }
}
@keyframes orb-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.25; }
  50% { transform: translate(-30px, 40px) scale(1.15); opacity: 0.35; }
}

/* Make sure content sits above orbs in dark sections */
.featured-card > *:not(.orb):not(.floating-words),
.cta-banner > *:not(.orb):not(.floating-words),
.pricing-card.featured > *:not(.orb) {
  position: relative;
  z-index: 1;
}
