    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
    body { font-family: 'Manrope', -apple-system, sans-serif; color: #333; background: #000938; overflow-x: hidden; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { font-family: 'Manrope', -apple-system, sans-serif; }

    :root {
      --navy: #000938;
      --sand: #EDD2A4;
      --white: #FFFFFF;
      --off-white: #F7F4EE;
      --text-primary: #333333;
      --text-secondary: #888888;
      --success: #1D9E75;
      --warning: #D85A30;
      --glass-bg: rgba(255,255,255,0.06);
      --glass-border: rgba(237,210,164,0.15);
      --font-display: 'Manrope', -apple-system, sans-serif;
      --font-body: 'Manrope', -apple-system, sans-serif;
      --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
      --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 28px;
      --radius-full: 999px;
      --shadow-card: 0 4px 32px rgba(0,9,56,0.07), 0 1px 4px rgba(0,9,56,0.04);
      --shadow-card-hover: 0 20px 60px rgba(0,9,56,0.12), 0 4px 16px rgba(0,9,56,0.06);
      --shadow-sand: 0 12px 40px rgba(237,210,164,0.32);
    }

    /* ═══ ANIMATIONS ═══ */
    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(48px) scale(0.98); }
      to   { opacity: 1; transform: translateY(0)   scale(1);    }
    }
    @keyframes gentleDrift {
      0%   { background-position: 0%   50%; }
      25%  { background-position: 50%  25%; }
      50%  { background-position: 100% 50%; }
      75%  { background-position: 50%  75%; }
      100% { background-position: 0%   50%; }
    }
    @keyframes breathe {
      0%, 100% { opacity: 0.45; transform: scale(1);    }
      50%       { opacity: 0.75; transform: scale(1.06); }
    }
    @keyframes sandPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(237,210,164,0.4); }
      50%       { box-shadow: 0 0 40px 16px rgba(237,210,164,0.1); }
    }
    @keyframes countGlow {
      0%, 100% { text-shadow: 0 0 20px rgba(237,210,164,0.15); }
      50%       { text-shadow: 0 0 48px rgba(237,210,164,0.4);  }
    }
    @keyframes scrollLine {
      0%   { transform: scaleY(0) translateY(-100%); opacity: 0; }
      30%  { opacity: 1; }
      100% { transform: scaleY(1) translateY(0);     opacity: 0; }
    }
    @keyframes shimmer {
      0%   { background-position: -200% 0; }
      100% { background-position:  200% 0; }
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0);    }
    }
    @keyframes luxConfettiFall {
      0%   { transform: translateY(-20px) rotate(0deg) scale(1);   opacity: 1; }
      80%  { opacity: 1; }
      100% { transform: translateY(110vh) rotate(720deg) scale(0.6); opacity: 0; }
    }
    @keyframes luxConfettiDrift {
      0%   { margin-left: 0; }
      25%  { margin-left: 18px; }
      50%  { margin-left: -12px; }
      75%  { margin-left: 14px; }
      100% { margin-left: 0; }
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* ═══ REVEAL SYSTEM ═══ */
    .reveal {
      opacity: 0;
      transform: translateY(44px);
      transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal.from-left  { transform: translateX(-64px); }
    .reveal.from-left.visible  { transform: translateX(0); }
    .reveal.from-right { transform: translateX(64px);  }
    .reveal.from-right.visible { transform: translateX(0); }
    .reveal.scale-in   { transform: scale(0.92); }
    .reveal.scale-in.visible   { transform: scale(1); }
    .d1 { transition-delay: 0.07s; }
    .d2 { transition-delay: 0.14s; }
    .d3 { transition-delay: 0.21s; }
    .d4 { transition-delay: 0.28s; }
    .d5 { transition-delay: 0.35s; }
    .d6 { transition-delay: 0.42s; }

    /* ═══ SPLASH LOGO ANIMATION ═══ */
    .splash-overlay {
      position: fixed; inset: 0; z-index: 9999;
      background: var(--navy);
      display: flex; align-items: center; justify-content: center;
      opacity: 1;
      transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .splash-overlay.fade-out { opacity: 0; pointer-events: none; }
    .splash-logo {
      will-change: transform, opacity;
      transform-origin: center center;
      opacity: 0;
      transform: scale(0.86);
    }

    /* ═══ NAV ═══ */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 48px; height: 74px;
      display: flex; align-items: center; justify-content: space-between;
      transition: all 0.5s var(--ease-smooth);
      overflow: visible;
    }
    .nav.scrolled {
      background: rgba(0, 9, 56, 0.95);
      backdrop-filter: blur(28px);
      -webkit-backdrop-filter: blur(28px);
      box-shadow: 0 1px 0 rgba(237,210,164,0.08), 0 8px 40px rgba(0,0,0,0.2);
    }
    .nav-logo {
      display: flex;
      align-items: center;
      cursor: pointer;
      height: 74px;
    }
    .nav-logo-img {
      display: flex;
      align-items: center;
      height: 100%;
    }
    .nav-logo-img img {
      height: 54px; width: auto; display: block;
      object-fit: contain;
    }
    .footer-logo { display: flex; justify-content: center; }
    .footer-logo img { height: 80px; width: auto; opacity: 0.6; display: block; }

    .nav-right { display: flex; align-items: center; gap: 10px; }
    .lang-toggle {
      display: flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-full); padding: 7px 14px;
      color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 600;
      cursor: pointer; transition: all 0.3s var(--ease-out-expo);
      letter-spacing: 0.3px;
    }
    .lang-toggle {
      animation: langButtonPulse 2s ease-in-out infinite;
    }
    .lang-toggle:hover {
      background: rgba(237,210,164,0.15);
      border-color: rgba(237,210,164,0.35) !important;
      color: var(--sand);
      animation: none;
      box-shadow: none !important;
    }
    .lang-toggle .lang-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--sand); opacity: 0.9;
      animation: langDotPulse 2s ease-in-out infinite;
    }
    .lang-toggle:hover .lang-dot {
      animation: none; opacity: 1; box-shadow: none; transform: scale(1);
    }
    @keyframes langDotPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(237,210,164,0.85); opacity: 0.85; transform: scale(1);    }
      50%      { box-shadow: 0 0 0 12px rgba(237,210,164,0); opacity: 1;    transform: scale(1.25); }
    }
    @keyframes langButtonPulse {
      0%, 100% { border-color: rgba(255,255,255,0.18); box-shadow: 0 0 0 0 rgba(237,210,164,0); }
      50%      { border-color: rgba(237,210,164,0.55); box-shadow: 0 0 0 6px rgba(237,210,164,0.10); }
    }
    @media (prefers-reduced-motion: reduce) {
      .lang-toggle, .lang-toggle .lang-dot { animation: none; }
    }

    /* ═══ BUTTONS ═══ */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      font-family: var(--font-body); font-weight: 700; font-size: 15px;
      letter-spacing: 0.15px; border-radius: var(--radius-full);
      cursor: pointer; border: none;
      transition: all 0.35s var(--ease-out-expo);
      white-space: nowrap; position: relative; overflow: hidden;
    }
    .btn::after {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.18), transparent 60%);
      opacity: 0; transition: opacity 0.35s;
    }
    .btn:hover::after { opacity: 1; }
    .btn:hover { transform: translateY(-3px); }
    .btn:active { transform: scale(0.96); transition-duration: 0.08s; }

    .btn-sand { background: var(--sand); color: var(--navy); padding: 15px 34px; }
    .btn-sand:hover { box-shadow: var(--shadow-sand); }
    .btn-ghost { background: transparent; color: var(--white); padding: 15px 34px; border: 1.5px solid rgba(255,255,255,0.22); }
    .btn-ghost:hover { border-color: var(--sand); color: var(--sand); }
    .btn-ghost-dark { background: transparent; color: var(--navy); padding: 15px 34px; border: 1.5px solid var(--navy); }
    .btn-ghost-dark:hover { background: var(--navy); color: var(--white); }
    .btn-large { padding: 18px 52px; font-size: 17px; }
    .btn-small { padding: 11px 24px; font-size: 13px; }

    /* ═══ HERO ═══ */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; text-align: center;
      padding: 120px 24px 100px; position: relative; overflow: hidden;
      background: var(--navy);
    }
    .hero-bg {
      position: absolute; inset: -50%;
      width: 200%; height: 200%;
      background:
        radial-gradient(ellipse at 22% 38%, rgba(237,210,164,0.10) 0%, transparent 52%),
        radial-gradient(ellipse at 78% 62%, rgba(237,210,164,0.06) 0%, transparent 48%),
        radial-gradient(ellipse at 50% 88%, rgba(29,158,117,0.04) 0%, transparent 38%);
      background-size: 200% 200%;
      animation: gentleDrift 44s ease-in-out infinite;
      pointer-events: none;
    }
    .hero-orb {
      position: absolute; border-radius: 50%; pointer-events: none;
      animation: breathe 9s ease-in-out infinite;
    }
    .hero-orb-1 {
      width: 700px; height: 700px; top: 5%; left: -12%;
      background: radial-gradient(circle, rgba(237,210,164,0.07), transparent 68%);
      animation-delay: 0s;
    }
    .hero-orb-2 {
      width: 500px; height: 500px; bottom: 2%; right: -8%;
      background: radial-gradient(circle, rgba(237,210,164,0.05), transparent 65%);
      animation-delay: 4.5s;
    }
    .hero-content { position: relative; z-index: 1; max-width: 860px; }
    .hero-eyebrow {
      display: inline-block; font-size: 12px; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--sand); border: 1px solid rgba(237,210,164,0.28);
      padding: 8px 22px; border-radius: var(--radius-full);
      margin-bottom: 32px;
      animation: heroFadeUp 0.9s var(--ease-out-expo) both;
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(46px, 8vw, 80px); color: var(--white); font-weight: 800;
      line-height: 1.07; margin-bottom: 30px;
      animation: heroFadeUp 1.1s var(--ease-out-expo) 0.1s both;
    }
    .hero h1 .accent { color: var(--sand); font-style: italic; }
    .hero-sub {
      font-size: clamp(16px, 2.2vw, 19px); font-weight: 400;
      color: rgba(255,255,255,0.78); line-height: 1.8;
      max-width: 600px; margin: 0 auto 56px;
      animation: heroFadeUp 1.1s var(--ease-out-expo) 0.22s both;
    }
    .hero-ctas {
      display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
      animation: heroFadeUp 1.1s var(--ease-out-expo) 0.36s both;
    }
    .hero-scroll {
      position: absolute; bottom: 44px; left: 0; right: 0;
      display: flex; flex-direction: column; align-items: center; gap: 14px;
      animation: heroFadeUp 1s var(--ease-out-expo) 1.2s both;
    }
    .hero-scroll-label {
      font-size: 13px; font-weight: 700; letter-spacing: 4px;
      text-transform: uppercase; color: var(--sand);
      animation: discoverPulse 2.2s ease-in-out infinite;
    }
    @keyframes discoverPulse {
      0%, 100% { opacity: 0.65; transform: scale(1); }
      50%      { opacity: 1;   transform: scale(1.1); }
    }
    .hero-scroll-line {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, rgba(237,210,164,0.7), transparent);
      transform-origin: top;
      animation: scrollLine 2.8s ease-in-out infinite;
    }

    /* ═══ TRACTION ═══ */
    .traction {
      background: var(--navy); padding: 52px 24px;
      display: flex; justify-content: center;
      gap: clamp(40px, 9vw, 110px); flex-wrap: wrap;
      position: relative; overflow: hidden;
      border-top: 1px solid rgba(237,210,164,0.08);
      border-bottom: 1px solid rgba(237,210,164,0.08);
    }
    .traction::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 100%, rgba(237,210,164,0.07), transparent 65%);
      pointer-events: none;
    }
    .traction-item { text-align: center; position: relative; z-index: 1; }
    .traction-number {
      font-family: var(--font-body);
      font-size: clamp(36px, 5vw, 52px); color: var(--sand); font-weight: 800;
      line-height: 1; display: inline-block;
      transition: transform 0.1s ease;
    }
    .traction-label {
      font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85);
      margin-top: 10px; letter-spacing: 1.2px; text-transform: uppercase;
    }

    /* ═══ VALUE SECTION ═══ */
    .value-section { background: var(--white); padding: clamp(80px, 11vw, 140px) 24px; }
    .container { max-width: 1120px; margin: 0 auto; }
    .value-header { text-align: center; max-width: 700px; margin: 0 auto 72px; }
    .value-header h2 {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(32px, 4.8vw, 48px); color: var(--navy); margin-bottom: 22px;
    }
    .value-header p { font-size: 17px; color: var(--text-primary); line-height: 1.8; }

    .value-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }
    @media (max-width: 900px) { .value-pillars { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

    .pillar-card {
      background: var(--white); border-radius: var(--radius-lg); padding: 44px 32px;
      box-shadow: var(--shadow-card);
      transition: all 0.5s var(--ease-out-expo);
      border: 1px solid transparent;
      display: flex; flex-direction: column;
      position: relative; overflow: hidden;
    }
    .pillar-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--sand), transparent);
      opacity: 0; transition: opacity 0.5s;
    }
    .pillar-card:hover::before { opacity: 1; }
    .pillar-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 40px rgba(237,210,164,0.18), 0 0 80px rgba(237,210,164,0.08), var(--shadow-card-hover);
      border-color: rgba(237,210,164,0.25);
      background: linear-gradient(180deg, rgba(237,210,164,0.04) 0%, var(--white) 40%);
    }
    .pillar-icon {
      width: 60px; height: 60px; border-radius: 18px;
      background: var(--navy); display: flex; align-items: center; justify-content: center;
      margin-bottom: 28px; flex-shrink: 0;
    }
    .pillar-card h3 {
      font-family: var(--font-display); font-weight: 800;
      font-size: 20px; color: var(--navy); margin-bottom: 16px; line-height: 1.25;
    }
    .pillar-card p {
      font-size: 15px; color: var(--text-primary); line-height: 1.8; flex: 1;
    }

    /* ═══ SPLIT ═══ */
    .split { display: grid; grid-template-columns: 1fr 1fr; }
    @media (max-width: 768px) { .split { grid-template-columns: 1fr; } }
    .split-side {
      padding: clamp(60px, 9vw, 120px) clamp(32px, 7vw, 96px);
      display: flex; flex-direction: column; justify-content: center;
    }
    .split-student { background: var(--navy); color: var(--white); }
    .split-professor { background: var(--white); color: var(--navy); }
    .split-label {
      font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; margin-bottom: 16px;
    }
    .split-student .split-label { color: var(--sand); }
    .split-professor .split-label { color: var(--text-secondary); }
    .split-side h2 {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 32px; line-height: 1.2;
    }
    .split-student h2 { color: var(--white); }
    .split-list { list-style: none; margin-bottom: 44px; }
    .split-list li {
      font-size: 15px; line-height: 1.7; padding: 11px 0 11px 30px;
      position: relative; font-weight: 500;
    }
    .split-list li::before {
      content: ''; position: absolute; left: 0; top: 20px;
      width: 8px; height: 8px; border-radius: 50%;
    }
    .split-student .split-list li::before { background: var(--sand); }
    .split-student .split-list li { color: rgba(255,255,255,0.88); }
    .split-professor .split-list li::before { background: var(--navy); }

    /* ═══ HOW IT WORKS ═══ */
    .how-it-works { background: var(--navy); padding: clamp(80px, 11vw, 140px) 24px; }
    .how-it-works h2 {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(32px, 4.8vw, 48px); color: var(--white);
      text-align: center; margin-bottom: 48px;
    }
    .how-tabs {
      display: flex; justify-content: center; gap: 4px; margin-bottom: 56px;
      background: rgba(255,255,255,0.06); border-radius: var(--radius-full);
      padding: 5px; width: fit-content; margin-left: auto; margin-right: auto;
    }
    .how-tab {
      padding: 12px 38px; border-radius: var(--radius-full);
      font-weight: 700; font-size: 15px; cursor: pointer;
      transition: all 0.4s var(--ease-out-expo); border: none;
      background: transparent; color: rgba(255,255,255,0.4);
    }
    .how-tab.active { background: var(--sand); color: var(--navy); }
    .how-steps {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 40px; max-width: 960px; margin: 0 auto;
      position: relative;
    }
    .how-steps::before {
      content: '';
      position: absolute;
      top: 30px;
      left: calc(16.66% + 30px);
      right: calc(16.66% + 30px);
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(237,210,164,0.5) 15%, var(--sand) 50%, rgba(237,210,164,0.5) 85%, transparent);
      z-index: 0;
    }
    .how-steps::after {
      content: '';
      position: absolute;
      top: 30px;
      left: calc(16.66% + 30px);
      right: calc(16.66% + 30px);
      height: 2px;
      background: linear-gradient(90deg, var(--sand), transparent);
      z-index: 0;
      animation: lineDrawIn 2s var(--ease-out-expo) both;
      transform-origin: left;
    }
    @keyframes lineDrawIn {
      from { clip-path: inset(0 100% 0 0); }
      to   { clip-path: inset(0 0 0 0); }
    }
    @media (max-width: 640px) { .how-steps { grid-template-columns: 1fr; gap: 32px; } .how-steps::before, .how-steps::after { display: none; } }
    .how-step { text-align: center; position: relative; z-index: 1; }
    .how-step-number {
      width: 60px; height: 60px; border-radius: 50%;
      background: var(--sand); color: var(--navy);
      font-family: var(--font-body); font-size: 22px; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px;
      transition: all 0.4s var(--ease-out-expo);
      box-shadow: 0 8px 24px rgba(237,210,164,0.25);
    }
    .how-step:hover .how-step-number { transform: scale(1.12); box-shadow: 0 12px 36px rgba(237,210,164,0.4); }
    .how-step h3 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
    .how-step p { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.75; }
    .how-steps-content.hidden { display: none; }

    /* ═══ FOUNDING ═══ */
    .founding {
      background: var(--navy); padding: clamp(80px, 11vw, 140px) 24px;
      text-align: center; position: relative; overflow: hidden;
      border-top: 1px solid rgba(237,210,164,0.08);
    }
    .founding-glow {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 800px; height: 800px; border-radius: 50%;
      background: radial-gradient(circle, rgba(237,210,164,0.06), transparent 65%);
      pointer-events: none; animation: breathe 12s ease-in-out infinite;
    }
    .founding-content { position: relative; z-index: 1; }
    .founding-badge {
      display: inline-block; font-size: 11px; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase; color: var(--sand);
      border: 1px solid rgba(237,210,164,0.3); padding: 9px 26px;
      border-radius: var(--radius-full); margin-bottom: 32px;
    }
    .founding h2 {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(36px, 5.5vw, 56px); color: var(--white); margin-bottom: 18px;
    }
    .founding-sub { font-size: 18px; color: rgba(255,255,255,0.72); margin-bottom: 56px; font-weight: 400; }
    .founding-counter { margin-bottom: 56px; }
    .founding-number {
      font-family: var(--font-body);
      font-size: clamp(64px, 13vw, 100px); color: var(--sand); font-weight: 800;
      line-height: 1; animation: countGlow 4s ease-in-out infinite;
      display: inline-block; transition: transform 0.1s ease;
    }
    .founding-of { font-size: 17px; color: rgba(255,255,255,0.8); margin-top: 12px; font-weight: 500; }
    .founding-bar {
      max-width: 440px; margin: 28px auto 0; height: 6px;
      background: rgba(255,255,255,0.07); border-radius: var(--radius-full); overflow: hidden;
    }
    .founding-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, #c8a875, var(--sand), #f5e4bb);
      border-radius: var(--radius-full);
      transition: width 2.2s var(--ease-out-expo);
    }
    .founding-perks {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 16px; max-width: 960px; margin: 0 auto 56px; text-align: left;
    }
    @media (max-width: 900px) { .founding-perks { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) { .founding-perks { grid-template-columns: 1fr; } }
    .perk {
      background: var(--glass-bg); border: 1px solid var(--glass-border);
      border-radius: var(--radius-md); padding: 30px;
      transition: all 0.5s var(--ease-out-expo);
    }
    .perk:hover { border-color: rgba(237,210,164,0.3); transform: translateY(-5px); background: rgba(255,255,255,0.08); }
    .perk-icon { margin-bottom: 16px; }
    .perk h4 { color: var(--sand); font-size: 15px; font-weight: 700; margin-bottom: 10px; }
    .perk p { color: rgba(255,255,255,0.82); font-size: 14px; line-height: 1.65; }

    /* ═══ DUAL CTA ═══ */
    .dual-cta { background: var(--white); padding: clamp(80px, 11vw, 140px) 24px; }
    .dual-cta h2 {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(32px, 4.8vw, 48px); color: var(--navy);
      text-align: center; margin-bottom: 56px;
    }
    .dual-cards {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 28px; max-width: 960px; margin: 0 auto;
    }
    @media (max-width: 640px) { .dual-cards { grid-template-columns: 1fr; } }
    .dual-card {
      background: var(--white); border-radius: var(--radius-lg); padding: 48px 40px;
      box-shadow: var(--shadow-card);
      transition: all 0.5s var(--ease-out-expo);
      position: relative; overflow: hidden; border: 1px solid transparent;
    }
    .dual-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-card-hover); border-color: rgba(237,210,164,0.15); }
    .dual-card::before {
      content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    .dual-card.student::before { background: linear-gradient(90deg, var(--sand), #f5e4bb); }
    .dual-card.professor::before { background: linear-gradient(90deg, var(--navy), #001a6e); }
    .dual-card-label {
      font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; margin-bottom: 20px;
    }
    .dual-card.student .dual-card-label { color: #b8984c; }
    .dual-card.professor .dual-card-label { color: var(--text-secondary); }
    .dual-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--navy); margin-bottom: 14px; }
    .dual-card p { color: var(--text-primary); font-size: 15px; line-height: 1.8; margin-bottom: 36px; }
    .dual-card-time { font-size: 13px; color: var(--text-secondary); margin-top: 16px; text-align: center; font-weight: 500; }

    /* ═══ FOOTER ═══ */
    .footer {
      background: var(--navy); padding: 56px 24px; text-align: center;
      border-top: 1px solid rgba(237,210,164,0.08);
    }
    .footer-logo { margin-bottom: 22px; display: flex; justify-content: center; }
    .footer-logo { display: flex; justify-content: center; }
    .footer-links {
      display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 32px;
    }
    .footer-links a {
      font-size: 14px; color: rgba(255,255,255,0.78); font-weight: 500;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--sand); }
    .footer-copy { font-size: 13px; color: rgba(255,255,255,0.55); }

    /* ═══ CONTACT ═══ */
    .contact-section {
      background: var(--white); padding: clamp(80px, 11vw, 120px) 24px;
      text-align: center;
    }
    .contact-section h2 {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(32px, 4.8vw, 48px); color: var(--navy); margin-bottom: 16px;
    }
    .contact-sub { font-size: 17px; color: var(--text-primary); line-height: 1.8; margin-bottom: 36px; }
    .contact-form { display: flex; flex-direction: column; gap: 14px; }
    .contact-form .survey-input,
    .contact-form .survey-textarea {
      background: var(--off-white); border: 1.5px solid rgba(0,9,56,0.1);
      border-radius: var(--radius-sm); padding: 14px 18px;
      font-size: 15px; font-family: var(--font-body); color: var(--text-primary);
      transition: border-color 0.3s;
    }
    .contact-form .survey-input:focus,
    .contact-form .survey-textarea:focus {
      outline: none; border-color: var(--sand);
    }

    /* ═══ INSTAGRAM CTA ═══ */
    .instagram-cta {
      background: var(--navy); padding: 64px 24px;
      border-top: 1px solid rgba(237,210,164,0.08);
    }
    .ig-follow-text {
      font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 24px; font-weight: 500;
    }
    .ig-btn {
      font-size: 17px !important; padding: 16px 40px !important;
      display: inline-flex !important; align-items: center;
    }

    /* ═══ MODAL ═══ */
    .modal-overlay {
      position: fixed; inset: 0;
      background: rgba(0,9,56,0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      z-index: 2000; display: flex; align-items: center; justify-content: center;
      padding: 24px; opacity: 0; pointer-events: none;
      transition: opacity 0.4s var(--ease-smooth);
    }
    .modal-overlay.active { opacity: 1; pointer-events: all; }
    .modal {
      background: var(--white); border-radius: var(--radius-lg);
      width: 100%; max-width: 540px; max-height: 92vh; overflow-y: auto;
      transform: translateY(60px) scale(0.95);
      transition: transform 0.5s var(--ease-out-back);
      position: relative; scrollbar-width: thin;
    }
    .modal-overlay.active .modal { transform: translateY(0) scale(1); }
    .modal-close {
      position: absolute; top: 20px; right: 20px; width: 40px; height: 40px;
      border-radius: 50%; background: #f2f2f2; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; color: var(--text-secondary);
      transition: all 0.3s var(--ease-out-expo); z-index: 10;
    }
    .modal-close:hover { background: #e4e4e4; color: var(--navy); transform: rotate(90deg); }
    .modal-header { padding: 40px 40px 0; }
    .modal-progress {
      height: 3px; background: #eee; border-radius: var(--radius-full);
      margin-bottom: 36px; overflow: hidden;
    }
    .modal-progress-fill {
      height: 100%; background: var(--sand); border-radius: var(--radius-full);
      transition: width 0.55s var(--ease-out-expo);
    }
    .modal-step-label {
      font-size: 11px; color: var(--text-secondary); letter-spacing: 1.8px;
      text-transform: uppercase; margin-bottom: 10px; font-weight: 700;
    }
    .modal-header h3 { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--navy); line-height: 1.25; }
    .modal-header p { font-size: 15px; color: var(--text-secondary); margin-top: 8px; line-height: 1.6; }
    .modal-body { padding: 28px 40px 44px; }

    /* Survey elements */
    .survey-options { display: flex; flex-direction: column; gap: 10px; }
    .survey-option {
      padding: 17px 22px; border: 1.5px solid #eaeaea; border-radius: var(--radius-md);
      cursor: pointer; transition: all 0.28s var(--ease-out-expo);
      font-size: 15px; color: var(--text-primary); background: var(--white);
      text-align: left; font-weight: 500; font-family: var(--font-body);
    }
    .survey-option:hover { border-color: var(--sand); background: rgba(237,210,164,0.07); transform: translateX(5px); }
    .survey-option.selected { border-color: var(--sand); background: rgba(237,210,164,0.12); font-weight: 700; color: var(--navy); }

    .survey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .survey-grid .survey-option { text-align: center; padding: 16px 10px; font-size: 13px; }
    .survey-grid .survey-option:hover { transform: translateY(-4px); }
    .survey-option-flag { font-size: 30px; display: block; margin-bottom: 8px; }

    /* Language picker (Step 0) */
    .lang-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
    .lang-card {
      padding: 28px 20px; border: 2px solid #eaeaea; border-radius: var(--radius-md);
      cursor: pointer; transition: all 0.32s var(--ease-out-back);
      text-align: center; font-family: var(--font-body); background: var(--white);
      display: flex; flex-direction: column; align-items: center; gap: 10px;
    }
    .lang-card:hover { border-color: var(--sand); transform: translateY(-6px); box-shadow: 0 12px 32px rgba(237,210,164,0.2); }
    .lang-card.selected { border-color: var(--sand); background: rgba(237,210,164,0.1); }
    .lang-card-flag { font-size: 40px; line-height: 1; }
    .lang-card-name { font-size: 17px; font-weight: 700; color: var(--navy); }
    .lang-card-native { font-size: 13px; color: var(--text-secondary); font-weight: 500; }

    .survey-pills { display: flex; flex-wrap: wrap; gap: 10px; }
    .survey-pill {
      padding: 11px 22px; border: 1.5px solid #eaeaea; border-radius: var(--radius-full);
      cursor: pointer; transition: all 0.28s var(--ease-out-expo);
      font-size: 14px; color: var(--text-primary); background: var(--white);
      font-weight: 500; font-family: var(--font-body);
    }
    .survey-pill:hover { border-color: var(--sand); transform: scale(1.04); }
    .survey-pill.selected { border-color: var(--sand); background: var(--sand); color: var(--navy); font-weight: 700; }

    .survey-input {
      width: 100%; padding: 17px 22px; border: 1.5px solid #eaeaea;
      border-radius: var(--radius-md); font-size: 15px;
      font-family: var(--font-body); color: var(--text-primary);
      outline: none; transition: border-color 0.3s, box-shadow 0.3s;
      margin-bottom: 12px;
    }
    .survey-input:focus { border-color: var(--sand); box-shadow: 0 0 0 4px rgba(237,210,164,0.14); }
    .survey-input::placeholder { color: #c0c0c0; }
    .survey-input:last-child { margin-bottom: 0; }

    .survey-textarea {
      width: 100%; padding: 17px 22px; border: 1.5px solid #eaeaea;
      border-radius: var(--radius-md); font-size: 15px;
      font-family: var(--font-body); color: var(--text-primary);
      outline: none; transition: border-color 0.3s, box-shadow 0.3s;
      resize: vertical; min-height: 110px;
    }
    .survey-textarea:focus { border-color: var(--sand); box-shadow: 0 0 0 4px rgba(237,210,164,0.14); }

    .survey-consent {
      display: flex; align-items: flex-start; gap: 12px;
      margin-top: 18px; font-size: 13px; color: var(--text-secondary); line-height: 1.5;
    }
    .survey-consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--sand); flex-shrink: 0; }
    .survey-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }
    .survey-back {
      display: inline-flex; align-items: center; gap: 6px;
      background: none; border: none; cursor: pointer;
      font-family: var(--font-body); font-size: 14px; font-weight: 600;
      color: var(--text-secondary); padding: 6px 0; margin-bottom: 12px;
      transition: color 0.2s ease;
    }
    .survey-back:hover { color: var(--navy); }
    .survey-back svg { width: 16px; height: 16px; }
    .survey-skip {
      background: none; border: none; color: var(--text-secondary); font-size: 14px;
      cursor: pointer; font-family: var(--font-body); padding: 8px 0; font-weight: 600;
      transition: color 0.2s; letter-spacing: 0.1px;
    }
    .survey-skip:hover { color: var(--navy); }
    .survey-error { color: #C0392B; font-size: 13px; margin-top: 8px; font-weight: 500; }

    .survey-complete { text-align: center; padding: 56px 40px; animation: fadeIn 0.5s var(--ease-out-expo) both; }
    .survey-complete-icon { font-size: 64px; margin-bottom: 28px; }
    .survey-complete h3 { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--navy); margin-bottom: 16px; }
    .survey-complete p { color: var(--text-secondary); font-size: 16px; line-height: 1.8; margin-bottom: 36px; }

    .survey-loading {
      display: flex; flex-direction: column; align-items: center;
      gap: 20px; padding: 60px 40px; text-align: center;
    }
    .survey-loading-spinner {
      width: 36px; height: 36px; border: 3px solid #eaeaea;
      border-top-color: var(--sand); border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }

    /* ═══ RESPONSIVE ═══ */
    @media (max-width: 768px) {
      .nav { padding: 0 20px; }
      .nav-right .btn { display: none; }
      .modal-header, .modal-body { padding-left: 24px; padding-right: 24px; }
      .founding-perks { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .hero-ctas { flex-direction: column; align-items: center; }
      .hero-ctas .btn { width: 100%; max-width: 300px; }
      .survey-grid { grid-template-columns: repeat(2, 1fr); }
      .traction { gap: 28px; }
      .dual-cta h2, .how-it-works h2, .value-header h2, .founding h2 { text-align: center; }
    }

    /* ═══════════════════════════════════════════════
       MULTI-PAGE ADDITIONS — 2026-06-03
       Same tokens, same easings, same universe.
       ═══════════════════════════════════════════════ */

    /* ═══ NAV LINKS ═══ */
    .nav-links {
      display: flex; align-items: center; gap: 30px;
      margin: 0 auto; padding: 0 24px;
    }
    .nav-links a {
      font-size: 14px; font-weight: 600; letter-spacing: 0.2px;
      color: rgba(255,255,255,0.72);
      position: relative; padding: 6px 0;
      transition: color 0.3s var(--ease-out-expo);
    }
    .nav-links a::after {
      content: ''; position: absolute; left: 0; right: 0; bottom: 0;
      height: 2px; border-radius: var(--radius-full);
      background: var(--sand);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.35s var(--ease-out-expo);
    }
    .nav-links a:hover { color: var(--sand); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-links a.active { color: var(--sand); }
    .nav-links a.active::after { transform: scaleX(1); }

    /* ═══ BURGER + MOBILE MENU ═══ */
    .nav-burger {
      display: none; flex-direction: column; justify-content: center; gap: 6px;
      width: 44px; height: 44px; padding: 10px;
      background: transparent; border: none; cursor: pointer;
    }
    .nav-burger span {
      display: block; height: 2px; width: 100%;
      background: var(--white); border-radius: var(--radius-full);
      transition: all 0.4s var(--ease-out-expo);
    }
    .nav-burger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); background: var(--sand); }
    .nav-burger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); background: var(--sand); }
    .mobile-menu {
      position: fixed; inset: 0; z-index: 990;
      background: rgba(0,9,56,0.97);
      backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 6px; opacity: 0; pointer-events: none;
      transition: opacity 0.45s var(--ease-smooth);
    }
    .mobile-menu.active { opacity: 1; pointer-events: all; }
    .mobile-menu a {
      font-size: 26px; font-weight: 700; color: var(--white);
      padding: 13px 24px; opacity: 0; transform: translateY(18px);
      transition: color 0.3s, opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
    }
    .mobile-menu.active a { opacity: 1; transform: translateY(0); }
    .mobile-menu.active a:nth-child(1) { transition-delay: 0.06s; }
    .mobile-menu.active a:nth-child(2) { transition-delay: 0.12s; }
    .mobile-menu.active a:nth-child(3) { transition-delay: 0.18s; }
    .mobile-menu.active a:nth-child(4) { transition-delay: 0.24s; }
    .mobile-menu.active a:nth-child(5) { transition-delay: 0.30s; }
    .mobile-menu a:hover, .mobile-menu a.active { color: var(--sand); }
    .mobile-menu .mobile-menu-ctas {
      display: flex; flex-direction: column; gap: 12px; margin-top: 34px;
      opacity: 0; transform: translateY(18px);
      transition: opacity 0.5s var(--ease-out-expo) 0.36s, transform 0.5s var(--ease-out-expo) 0.36s;
    }
    .mobile-menu.active .mobile-menu-ctas { opacity: 1; transform: translateY(0); }

    /* ═══ PAGE HERO (sub-pages) ═══ */
    .hero--page { min-height: 76vh; padding-top: 140px; }
    .hero--page h1 { font-size: clamp(38px, 6.4vw, 64px); }
    .hero--compact { min-height: 58vh; }

    /* ═══ SECTION EYEBROW (reusable) ═══ */
    .section-eyebrow {
      display: inline-block; font-size: 11px; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase;
      padding: 8px 22px; border-radius: var(--radius-full);
      margin-bottom: 26px;
    }
    .section-eyebrow--sand { color: var(--sand); border: 1px solid rgba(237,210,164,0.3); }
    .section-eyebrow--navy { color: var(--navy); border: 1px solid rgba(0,9,56,0.18); }

    /* ═══ FEATURE GRID (students experience) ═══ */
    .feature-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    }
    @media (max-width: 820px) { .feature-grid { grid-template-columns: 1fr; } }
    .feature-grid .pillar-card.wide { grid-column: 1 / -1; }

    /* ═══ BUNDLES ═══ */
    .bundles {
      background: var(--navy); padding: clamp(80px, 11vw, 140px) 24px;
      position: relative; overflow: hidden;
      border-top: 1px solid rgba(237,210,164,0.08);
    }
    .bundles-header { text-align: center; max-width: 720px; margin: 0 auto 26px; position: relative; z-index: 1; }
    .bundles-header h2 {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(32px, 4.8vw, 48px); color: var(--white); margin-bottom: 20px;
    }
    .bundles-header p { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.8; }
    .science-note {
      max-width: 680px; margin: 0 auto 64px; text-align: center;
      font-size: 15px; font-style: italic; line-height: 1.85;
      color: rgba(255,255,255,0.62);
      position: relative; z-index: 1; padding: 0 12px;
    }
    .science-note strong { color: var(--sand); font-weight: 600; }
    .bundle-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
      max-width: 1120px; margin: 0 auto; position: relative; z-index: 1;
      align-items: stretch;
    }
    @media (max-width: 1024px) { .bundle-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px)  { .bundle-grid { grid-template-columns: 1fr; } }
    .bundle-card {
      background: var(--glass-bg); border: 1px solid var(--glass-border);
      border-radius: var(--radius-md); padding: 34px 28px;
      display: flex; flex-direction: column;
      transition: all 0.5s var(--ease-out-expo);
      position: relative;
    }
    .bundle-card:hover {
      border-color: rgba(237,210,164,0.35); transform: translateY(-6px);
      background: rgba(255,255,255,0.08);
    }
    .bundle-kicker {
      font-size: 11px; font-weight: 700; letter-spacing: 2.2px;
      text-transform: uppercase; color: var(--sand); margin-bottom: 14px;
    }
    .bundle-card h3 {
      font-family: var(--font-display); font-weight: 800;
      font-size: 24px; color: var(--white); margin-bottom: 6px;
    }
    .bundle-meta {
      font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.55);
      margin-bottom: 18px; letter-spacing: 0.3px;
    }
    .bundle-card p { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.75; flex: 1; }
    .bundle-tag {
      position: absolute; top: 20px; right: 20px;
      font-size: 11px; font-weight: 800; letter-spacing: 0.8px;
      background: var(--sand); color: var(--navy);
      padding: 5px 12px; border-radius: var(--radius-full);
    }
    .bundle-card--featured { border-color: rgba(237,210,164,0.4); box-shadow: 0 0 48px rgba(237,210,164,0.10); }

    /* ═══ FAQ ═══ */
    .faq-section { background: var(--white); padding: clamp(80px, 11vw, 140px) 24px; }
    .faq-list { max-width: 760px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid rgba(0,9,56,0.09); }
    .faq-q {
      width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
      background: none; border: none; cursor: pointer; text-align: left;
      padding: 26px 4px; font-family: var(--font-body);
      font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.4;
      transition: color 0.3s;
    }
    .faq-q:hover { color: #5a5f8a; }
    .faq-icon {
      flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
      border: 1.5px solid rgba(0,9,56,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 17px; font-weight: 500; color: var(--navy);
      transition: all 0.4s var(--ease-out-expo);
    }
    .faq-item.open .faq-icon { background: var(--sand); border-color: var(--sand); transform: rotate(45deg); }
    .faq-a {
      max-height: 0; overflow: hidden; opacity: 0;
      transition: max-height 0.55s var(--ease-out-expo), opacity 0.4s;
    }
    .faq-item.open .faq-a { max-height: 420px; opacity: 1; }
    .faq-a p { font-size: 15px; color: var(--text-primary); line-height: 1.85; padding: 0 44px 28px 4px; }

    /* ═══ TIER TABLE ═══ */
    .tier-section { background: var(--white); padding: clamp(80px, 11vw, 140px) 24px; }
    .tier-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
    .tier-header h2 {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(32px, 4.8vw, 48px); color: var(--navy); margin-bottom: 20px;
    }
    .tier-header p { font-size: 17px; color: var(--text-primary); line-height: 1.8; }
    .tier-scroll { max-width: 980px; margin: 0 auto; overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
    .tier-table { width: 100%; min-width: 660px; border-collapse: collapse; background: var(--white); }
    .tier-table th {
      background: var(--navy); color: rgba(255,255,255,0.85);
      font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
      padding: 18px 22px; text-align: left; white-space: nowrap;
    }
    .tier-table td {
      padding: 20px 22px; font-size: 15px; color: var(--text-primary);
      border-bottom: 1px solid rgba(0,9,56,0.06);
    }
    .tier-table tr:last-child td { border-bottom: none; }
    .tier-table .tier-name { font-weight: 700; color: var(--navy); }
    .tier-table tr.tier-founding td {
      background: rgba(237,210,164,0.14);
      border-bottom-color: rgba(237,210,164,0.3);
    }
    .tier-table tr.tier-founding .tier-name { color: #8a6d3b; }
    .tier-table tr.tier-founding td:first-child { box-shadow: inset 3px 0 0 var(--sand); }
    .tier-badge-perm {
      display: inline-block; margin-left: 10px; font-size: 10px; font-weight: 800;
      letter-spacing: 1px; text-transform: uppercase;
      background: var(--sand); color: var(--navy);
      padding: 3px 10px; border-radius: var(--radius-full); vertical-align: middle;
    }

    /* ═══ PROSE (approach) ═══ */
    .prose-section { background: var(--white); padding: clamp(80px, 11vw, 130px) 24px; text-align: center; }
    .prose-section.off { background: var(--off-white); }
    .prose-section h2 {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(30px, 4.4vw, 44px); color: var(--navy); margin-bottom: 30px;
    }
    .prose { max-width: 700px; margin: 0 auto; }
    .prose p { font-size: 17px; color: var(--text-primary); line-height: 1.95; margin-bottom: 22px; }
    .prose p:last-child { margin-bottom: 0; }
    .prose .accent-line { font-style: italic; color: var(--navy); font-weight: 600; }

    /* ═══ CONVICTIONS (navy cards) ═══ */
    .convictions { background: var(--navy); padding: clamp(80px, 11vw, 140px) 24px; text-align: center;
      border-top: 1px solid rgba(237,210,164,0.08); position: relative; overflow: hidden; }
    .convictions h2 {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(32px, 4.8vw, 48px); color: var(--white); margin-bottom: 56px;
    }
    .convictions-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
      max-width: 1060px; margin: 0 auto; text-align: left;
    }
    @media (max-width: 880px) { .convictions-grid { grid-template-columns: 1fr; max-width: 520px; } }
    .conviction {
      background: var(--glass-bg); border: 1px solid var(--glass-border);
      border-radius: var(--radius-md); padding: 36px 30px;
      transition: all 0.5s var(--ease-out-expo);
    }
    .conviction:hover { border-color: rgba(237,210,164,0.3); transform: translateY(-5px); background: rgba(255,255,255,0.08); }
    .conviction h3 {
      font-family: var(--font-display); font-weight: 800;
      font-size: 20px; color: var(--sand); margin-bottom: 14px; line-height: 1.3;
    }
    .conviction p { font-size: 14.5px; color: rgba(255,255,255,0.84); line-height: 1.8; }

    /* ═══ COMPARE CARDS (what Speakysy is not) ═══ */
    .compare-section { background: var(--off-white); padding: clamp(80px, 11vw, 140px) 24px; }
    .compare-section h2 {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(30px, 4.4vw, 44px); color: var(--navy);
      text-align: center; margin-bottom: 56px;
    }
    .compare-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
      max-width: 1120px; margin: 0 auto; align-items: stretch;
    }
    @media (max-width: 920px) { .compare-grid { grid-template-columns: 1fr; max-width: 560px; } }
    .compare-card {
      background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px;
      box-shadow: var(--shadow-card); border: 1px solid transparent;
      transition: all 0.5s var(--ease-out-expo);
      display: flex; flex-direction: column;
    }
    .compare-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }
    .compare-card h3 {
      font-family: var(--font-display); font-weight: 800;
      font-size: 19px; color: var(--navy); margin-bottom: 16px; line-height: 1.35;
    }
    .compare-card p { font-size: 14.5px; color: var(--text-primary); line-height: 1.8; flex: 1; }
    .compare-card--speakysy { background: var(--navy); border-color: rgba(237,210,164,0.35);
      box-shadow: 0 0 48px rgba(237,210,164,0.12), var(--shadow-card); }
    .compare-card--speakysy h3 { color: var(--sand); }
    .compare-card--speakysy p { color: rgba(255,255,255,0.86); }
    .compare-card--speakysy:hover { border-color: rgba(237,210,164,0.55); }

    /* ═══ FINAL CTA ═══ */
    .final-cta {
      background: var(--navy); padding: clamp(90px, 12vw, 150px) 24px;
      text-align: center; position: relative; overflow: hidden;
      border-top: 1px solid rgba(237,210,164,0.08);
    }
    .final-cta .founding-glow { animation-duration: 14s; }
    .final-cta h2 {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(32px, 5vw, 52px); color: var(--white); margin-bottom: 22px;
      position: relative; z-index: 1;
    }
    .final-cta p {
      font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.85;
      max-width: 620px; margin: 0 auto 44px; position: relative; z-index: 1;
    }
    .final-cta .btn { position: relative; z-index: 1; }
    .final-cta-time { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 18px; font-weight: 500; position: relative; z-index: 1; }

    /* ═══ VALUE FOOTNOTE ═══ */
    .value-footnote {
      text-align: center; margin-top: 44px;
      font-size: 16px; font-style: italic; font-weight: 600; color: var(--navy);
    }

    /* ═══ HOW STEPS — single (no tabs) ═══ */
    .how-eyebrow-wrap { text-align: center; }

    /* ═══ CONTACT PAGE ═══ */
    .contact-page-section { background: var(--white); padding: clamp(70px, 9vw, 110px) 24px; }
    .contact-card { max-width: 620px; margin: 0 auto; }
    .contact-role-label {
      font-size: 11px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase;
      color: var(--text-secondary); margin-bottom: 14px; text-align: left;
    }
    .contact-roles { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
    .contact-prof-hint {
      display: none; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
      background: rgba(237,210,164,0.13); border: 1px solid rgba(237,210,164,0.45);
      border-radius: var(--radius-md); padding: 16px 20px; margin-bottom: 22px;
      font-size: 14px; color: var(--navy); font-weight: 600; text-align: left;
      animation: fadeIn 0.35s var(--ease-out-expo) both;
    }
    .contact-prof-hint.visible { display: flex; }

    /* ═══ SPLIT MORE-LINKS ═══ */
    .split-more {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 14px; font-weight: 700; margin-top: 18px;
      transition: gap 0.3s var(--ease-out-expo), opacity 0.3s;
    }
    .split-more:hover { gap: 11px; opacity: 0.85; }
    .split-student .split-more { color: var(--sand); }
    .split-professor .split-more { color: var(--navy); }

    /* ═══ NAV RESPONSIVE (multi-page) ═══ */
    @media (max-width: 1080px) {
      .nav-links { display: none; }
      .nav-right .btn { display: none; }
      .nav-burger { display: flex; }
    }

    /* ═══ 2026-06-03 — Founder QA additions ═══ */
    /* Approach hero statement — header-scale subline with sand keyword accents */
    .hero-statement {
      font-family: var(--font-display); font-weight: 400;
      font-size: clamp(14px, 1.8vw, 20px);
      line-height: 1.65; color: rgba(255,255,255,0.85);
      max-width: 760px; margin: 0 auto;
      animation: heroFadeUp 1.1s var(--ease-out-expo) 0.3s both;
    }
    .hero-statement .accent { color: var(--sand); font-style: italic; }

    /* Final CTA — second line of the headline on its own line, with
       breathing room before the button */
    .final-cta .cta-line2 { display: block; margin-top: 14px; padding-bottom: 14px; }

    /* Speakysy compare card — real logo instead of the text heading */
    .compare-logo { height: 26px; width: 65px; align-self: flex-start; flex: 0 0 auto; display: block; margin: 0 0 16px 0; }

    /* ═══ 2026-06-04 — Founder QA round 2 ═══ */
    /* Home hero: 4 exact lines; sentence 2 holds on one line on desktop */
    body[data-page="home"] .hero-sub { max-width: 820px; }
    @media (min-width: 760px) {
      .nowrap-lg { white-space: nowrap; }
    }
    /* Bundle payment note in brand sand (cards sit on navy) */
    .bundle-card .pay-note { color: var(--sand); font-weight: 600; }
