:root {
  --navy: #09264a;
  --navy-deep: #061a33;
  --navy-soft: #143b68;
  --gold: #d49b24;
  --gold-bright: #f2c35d;
  --gold-pale: #f8e9bc;
  --green: #1c7a5a;
  --green-deep: #123d33;
  --cream: #f6f1e5;
  --paper: #fffdf8;
  --ink: #172033;
  --muted: #657083;
  --line: #dcd4c4;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", "Trebuchet MS", sans-serif;
  --shadow: 0 28px 80px rgba(12, 31, 51, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
  content: "";
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 100; padding: 10px 14px; transform: translateY(-150%); border-radius: 8px; background: white; color: var(--navy); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(1180px, calc(100% - 36px));
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px 11px 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 22px;
  color: white;
  background: rgba(7, 29, 58, .82);
  box-shadow: 0 14px 40px rgba(3, 18, 35, .17);
  backdrop-filter: blur(18px);
  transition: top .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { top: 8px; background: rgba(7, 29, 58, .95); box-shadow: 0 16px 45px rgba(3, 18, 35, .26); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: .78rem; font-weight: 600; line-height: 1.08; letter-spacing: .02em; }
.brand img { border-radius: 11px; box-shadow: 0 5px 18px rgba(0, 0, 0, .15); }
.brand strong { font-size: 1rem; color: var(--gold-bright); }
.site-nav { display: flex; align-items: center; gap: 5px; }
.site-nav a { padding: 11px 14px; border-radius: 12px; color: rgba(255, 255, 255, .82); font-size: .86rem; font-weight: 700; transition: color .2s ease, background .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: white; background: rgba(255, 255, 255, .09); }
.site-nav .nav-cta { margin-left: 8px; padding-inline: 18px; color: var(--navy-deep); background: var(--gold-bright); }
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible { color: var(--navy-deep); background: white; }
.menu-button { display: none; width: 45px; height: 45px; place-content: center; gap: 5px; border: 0; border-radius: 12px; background: rgba(255, 255, 255, .1); }
.menu-button span:not(.sr-only) { display: block; width: 19px; height: 2px; background: white; }

.hero {
  position: relative;
  display: grid;
  min-height: 810px;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 44px;
  overflow: hidden;
  padding: 150px max(5vw, calc((100vw - 1280px) / 2)) 95px;
  color: white;
  background:
    radial-gradient(circle at 11% 4%, rgba(49, 102, 151, .52), transparent 28%),
    linear-gradient(130deg, #071d3a 0%, #0a294f 50%, #103757 100%);
}
.hero::before { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, transparent 45%, rgba(28, 122, 90, .14)); content: ""; }
.hero::after { position: absolute; right: -8%; bottom: -190px; width: 620px; height: 620px; border: 1px solid rgba(242, 195, 93, .15); border-radius: 50%; content: ""; }
.hero-orbit { position: absolute; border: 1px solid rgba(255, 255, 255, .08); border-radius: 50%; pointer-events: none; }
.orbit-one { top: 17%; right: 6%; width: 540px; height: 540px; }
.orbit-two { top: 25%; right: 12%; width: 390px; height: 390px; border-color: rgba(242, 195, 93, .12); }
.hero-copy { position: relative; z-index: 3; max-width: 620px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--gold-bright); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: currentColor; }
.eyebrow.dark { color: #9a6c0c; }
.eyebrow.light { color: var(--gold-bright); }
.hero h1 { margin-bottom: 25px; font-family: var(--serif); font-size: clamp(3.6rem, 6.2vw, 6.7rem); font-weight: 700; letter-spacing: -.052em; line-height: .87; }
.hero h1 em { color: var(--gold-bright); font-style: normal; }
.hero-lede { max-width: 600px; margin-bottom: 30px; color: #ced9e5; font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 42px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 12px 22px; border: 1px solid transparent; border-radius: 14px; cursor: pointer; font-size: .86rem; font-weight: 800; transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .site-nav a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, .profile-pill:focus-visible { outline: 3px solid rgba(242, 195, 93, .48); outline-offset: 3px; }
.button-gold { color: var(--navy-deep); background: var(--gold-bright); box-shadow: 0 12px 28px rgba(212, 155, 36, .2); }
.button-gold:hover { background: #ffd77c; box-shadow: 0 14px 35px rgba(212, 155, 36, .3); }
.button-quiet { color: white; border-color: rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .06); }
.button-quiet:hover { background: rgba(255, 255, 255, .12); }
.button-navy { color: white; background: var(--navy); }
.button-outline { color: var(--navy); border-color: #a9b1bc; background: transparent; }
.button-outline:hover { color: white; border-color: var(--navy); background: var(--navy); }
.light-outline { color: white; border-color: rgba(255, 255, 255, .35); }
.light-outline:hover { color: var(--navy-deep); border-color: white; background: white; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .13); }
.hero-proof div { display: grid; gap: 4px; }
.hero-proof strong { color: white; font-size: .8rem; }
.hero-proof span { color: #96a9bd; font-size: .68rem; line-height: 1.45; }

.product-stage { position: relative; z-index: 2; width: 100%; max-width: 760px; justify-self: end; transform: perspective(1400px) rotateY(-4deg) rotateX(1deg); }
.stage-glow { position: absolute; inset: 8% 3% -10%; filter: blur(55px); background: rgba(33, 111, 84, .34); }
.app-window { position: relative; overflow: hidden; border: 1px solid rgba(255, 255, 255, .35); border-radius: 22px; background: #f7f2e7; box-shadow: 0 50px 100px rgba(0, 0, 0, .35); }
.window-bar { display: flex; height: 49px; align-items: center; justify-content: space-between; padding: 0 17px; color: var(--navy); background: #fffdf8; border-bottom: 1px solid #ddd4c3; }
.window-brand { display: flex; align-items: center; gap: 9px; font-size: .67rem; font-weight: 800; }
.window-brand img { border-radius: 7px; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #bdc3c9; }
.window-body { display: grid; min-height: 430px; grid-template-columns: 83px 1fr; }
.mock-sidebar { display: flex; align-items: center; flex-direction: column; gap: 22px; padding: 28px 13px; background: var(--navy); }
.mock-profile { display: grid; width: 38px; height: 38px; place-items: center; margin-bottom: 10px; border-radius: 12px; color: var(--navy); background: var(--gold-bright); font-size: .64rem; font-weight: 800; }
.mock-nav { width: 39px; height: 7px; border-radius: 10px; background: rgba(255, 255, 255, .3); }
.mock-nav.short { width: 27px; }
.mock-nav.active { height: 31px; border: 1px solid rgba(255, 255, 255, .12); background: var(--navy-soft); box-shadow: inset 3px 0 var(--gold-bright); }
.mock-main { padding: 32px 29px; color: var(--ink); }
.mock-kicker { margin-bottom: 6px; color: #a9760b; font-size: .55rem; font-weight: 800; letter-spacing: .13em; }
.mock-main h2 { margin-bottom: 24px; color: var(--navy); font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.04; }
.course-strip { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; padding: 15px 17px; border: 1px solid #d8d0c0; border-radius: 13px; background: white; }
.course-strip div { display: grid; min-width: 0; gap: 3px; }
.course-strip small, .metric-row small { color: #8a7d67; font-size: .48rem; font-weight: 800; letter-spacing: .08em; }
.course-strip strong { overflow: hidden; color: var(--navy); font-size: .66rem; text-overflow: ellipsis; white-space: nowrap; }
.course-strip > span { padding: 5px 9px; border-radius: 12px; color: #176448; background: #dcefe7; font-size: .51rem; font-weight: 800; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 18px; overflow: hidden; border: 1px solid #d8d0c0; border-radius: 13px; background: white; }
.metric-row div { display: grid; gap: 2px; padding: 12px 15px; border-right: 1px solid #e1dacd; }
.metric-row div:last-child { border-right: 0; }
.metric-row strong { color: var(--navy); font-family: var(--serif); font-size: 1.05rem; }
.grade-table { overflow: hidden; border: 1px solid #d8d0c0; border-radius: 13px; background: white; }
.grade-table > div { display: grid; grid-template-columns: 1.6fr repeat(3, .7fr); align-items: center; gap: 8px; min-height: 43px; padding: 8px 13px; border-bottom: 1px solid #e9e3d8; color: #5f6875; font-size: .57rem; }
.grade-table > div:last-child { border-bottom: 0; }
.grade-table .table-head { min-height: 32px; color: #8a7d67; background: #f3eee4; font-size: .48rem; font-weight: 800; text-transform: uppercase; }
.grade-table div span:first-child { display: flex; align-items: center; gap: 6px; color: var(--navy); font-weight: 700; }
.grade-table b { display: grid; width: 23px; height: 23px; place-items: center; border-radius: 7px; color: white; background: var(--green); font-size: .43rem; }
.grade-table strong { color: var(--green); }
.floating-card { position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid rgba(255, 255, 255, .65); border-radius: 14px; color: var(--ink); background: rgba(255, 253, 248, .96); box-shadow: 0 18px 48px rgba(0, 0, 0, .24); }
.floating-card div { display: grid; }
.floating-card small { color: #8a7d67; font-size: .45rem; font-weight: 800; letter-spacing: .09em; }
.floating-card strong { color: var(--navy); font-size: .67rem; }
.float-ready { right: 2%; bottom: -25px; }
.float-moodle { top: 83px; left: -28px; }
.status-icon, .moodle-mark { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 9px; color: white; background: var(--green); font-size: .7rem; font-weight: 800; }
.moodle-mark { color: var(--navy); background: var(--gold-bright); }

.logo-line { display: flex; min-height: 98px; align-items: center; justify-content: space-between; gap: 30px; padding: 20px max(5vw, calc((100vw - 1180px) / 2)); border-bottom: 1px solid var(--line); background: #eee7d8; }
.logo-line p { margin: 0; color: #81745f; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.logo-line div { display: flex; align-items: center; gap: 25px; color: var(--navy); font-family: var(--serif); font-size: 1.05rem; font-weight: 700; }
.logo-line i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.section { padding: 115px max(5vw, calc((100vw - 1180px) / 2)); }
.section-heading { max-width: 760px; margin-bottom: 55px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .institution-intro h2, .workflow-copy h2, .beta-copy h2, .contact-copy h2, .faq-heading h2 { color: var(--navy); font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -.04em; line-height: .98; }
.section-heading > p:last-child, .institution-intro > p { max-width: 620px; color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { position: relative; min-height: 540px; overflow: hidden; padding: 32px; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); transition: transform .3s ease, box-shadow .3s ease; }
.feature:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.feature::after { position: absolute; right: -60px; bottom: -80px; width: 210px; height: 210px; border: 35px solid rgba(9, 38, 74, .035); border-radius: 50%; content: ""; }
.feature-number { position: absolute; top: 26px; right: 28px; color: #b9ad99; font-family: var(--serif); font-size: 1.15rem; }
.feature-icon { display: grid; width: 64px; height: 64px; place-items: center; margin-bottom: 55px; border-radius: 19px; color: var(--navy); background: var(--gold-pale); }
.feature-icon svg { width: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { margin-bottom: 13px; color: var(--navy); font-family: var(--serif); font-size: 2rem; }
.feature p { color: var(--muted); font-size: .9rem; }
.feature ul, .price-card ul { position: relative; z-index: 1; display: grid; gap: 11px; margin: 25px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.feature li, .price-card li { position: relative; padding-left: 21px; font-size: .78rem; font-weight: 600; }
.feature li::before, .price-card li::before { position: absolute; left: 0; color: var(--green); content: "\2713"; }
.feature-assessment .feature-icon { color: #165d48; background: #dcefe7; }
.feature-connection { color: white; border-color: var(--navy); background: var(--navy); }
.feature-connection h3 { color: white; }
.feature-connection p { color: #b7c7d8; }
.feature-connection .feature-icon { color: var(--navy); background: var(--gold-bright); }
.feature-connection ul { border-color: rgba(255, 255, 255, .13); }
.feature-connection li::before { color: var(--gold-bright); }

.workflow-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; padding: 110px max(5vw, calc((100vw - 1180px) / 2)); color: white; background: var(--green-deep); }
.workflow-copy h2 { color: white; }
.workflow-copy > p:not(.eyebrow) { max-width: 500px; color: #b9d0c9; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 20px; color: var(--gold-bright); font-size: .82rem; font-weight: 800; }
.workflow-steps { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.workflow-steps li { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.workflow-steps li:first-child { padding-top: 0; }
.workflow-steps li > span { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(242, 195, 93, .5); border-radius: 50%; color: var(--gold-bright); font-family: var(--serif); }
.workflow-steps strong { display: block; margin-bottom: 3px; font-family: var(--serif); font-size: 1.25rem; }
.workflow-steps p { margin: 0; color: #aac4bb; font-size: .83rem; }

.institutions-section { background: var(--paper); }
.institution-intro { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 70px; margin-bottom: 58px; }
.institution-intro h2 { max-width: 760px; margin-bottom: 0; }
.institution-intro > p { margin-bottom: 8px; }
.profile-board { display: grid; grid-template-columns: 280px 1fr; min-height: 440px; overflow: hidden; border: 1px solid #d8d0c0; border-radius: 26px; box-shadow: var(--shadow); }
.profile-selector { display: flex; flex-direction: column; gap: 10px; padding: 30px 22px; background: #eee8dc; }
.profile-selector > span { margin: 0 10px 14px; color: #8a7d67; font-size: .62rem; font-weight: 800; letter-spacing: .11em; }
.profile-pill { display: flex; align-items: center; gap: 11px; padding: 12px; border: 1px solid transparent; border-radius: 14px; color: #617082; background: transparent; cursor: pointer; text-align: left; font-size: .76rem; font-weight: 800; }
.profile-pill i { display: grid; width: 33px; height: 33px; place-items: center; border-radius: 9px; color: var(--navy); background: white; font-style: normal; }
.profile-pill.active { color: white; background: var(--navy); box-shadow: 0 10px 24px rgba(9, 38, 74, .18); }
.profile-pill.active i { background: var(--gold-bright); }
.profile-detail { padding: 40px; background: var(--navy); color: white; transition: opacity .15s ease; }
.profile-title { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
.profile-monogram { display: grid; width: 56px; height: 56px; flex: 0 0 auto; place-items: center; border-radius: 15px; color: var(--navy); background: var(--gold-bright); font-family: var(--serif); font-size: 1.6rem; }
.profile-title div { min-width: 0; }
.profile-title small { color: var(--gold-bright); font-size: .55rem; font-weight: 800; letter-spacing: .12em; }
.profile-title h3 { margin: 4px 0 0; overflow: hidden; font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.4rem); text-overflow: ellipsis; white-space: nowrap; }
.profile-status { margin-left: auto; padding: 7px 10px; border-radius: 20px; color: #a7e1cd; background: rgba(28, 122, 90, .25); font-size: .58rem; font-weight: 800; white-space: nowrap; }
.connector-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.connector-grid div { display: grid; min-height: 120px; align-content: center; padding: 20px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 16px; background: rgba(255, 255, 255, .045); }
.connector-grid small { color: var(--gold-bright); font-size: .5rem; font-weight: 800; letter-spacing: .11em; }
.connector-grid strong { margin: 5px 0 2px; font-family: var(--serif); font-size: 1.2rem; }
.connector-grid span { color: #9fb2c6; font-size: .68rem; }
.institution-cta { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 35px; margin-top: 20px; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: var(--cream); }
.institution-cta div > span { color: #9a6c0c; font-size: .56rem; font-weight: 800; letter-spacing: .12em; }
.institution-cta h3 { margin: 4px 0 0; color: var(--navy); font-family: var(--serif); font-size: 1.35rem; }
.institution-cta p { margin: 0; color: var(--muted); font-size: .75rem; }
.institution-cta .button { white-space: nowrap; }

.pricing-section { background: var(--cream); }
.billing-toggle { display: flex; width: max-content; margin: -25px auto 35px; padding: 5px; border: 1px solid var(--line); border-radius: 14px; background: #e9e2d4; }
.billing-toggle button { padding: 9px 16px; border: 0; border-radius: 10px; color: #6c7581; background: transparent; cursor: pointer; font-size: .7rem; font-weight: 800; }
.billing-toggle button span { margin-left: 5px; color: var(--green); font-size: .57rem; }
.billing-toggle button.active { color: var(--navy); background: white; box-shadow: 0 5px 15px rgba(9, 38, 74, .08); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 17px; }
.price-card { position: relative; display: flex; min-height: 590px; flex-direction: column; padding: 33px; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); }
.price-card.featured { border: 2px solid var(--gold); transform: translateY(-12px); box-shadow: var(--shadow); }
.popular { position: absolute; top: -15px; left: 50%; padding: 6px 12px; transform: translateX(-50%); border-radius: 20px; color: var(--navy); background: var(--gold-bright); font-size: .51rem; font-weight: 800; letter-spacing: .09em; white-space: nowrap; }
.plan-label { margin-bottom: 13px; color: #9a6c0c; font-size: .6rem; font-weight: 800; letter-spacing: .14em; }
.price-card h3 { margin-bottom: 17px; color: var(--navy); font-family: var(--serif); font-size: 1.8rem; }
.price { display: flex; min-height: 57px; align-items: baseline; flex-wrap: wrap; gap: 6px; }
.price strong { color: var(--navy); font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.45rem); line-height: 1.05; }
.price span { color: #7a8491; font-size: .67rem; }
.plan-note { min-height: 52px; color: var(--muted); font-size: .74rem; }
.price-card .button { width: 100%; margin: 13px 0 8px; }
.price-card ul { margin-top: 20px; }
.institution-card { color: white; border-color: var(--navy); background: var(--navy); }
.institution-card h3, .institution-card .price strong { color: white; }
.institution-card .price span, .institution-card .plan-note { color: #b2c3d4; }
.institution-card ul { border-color: rgba(255, 255, 255, .14); }
.institution-card li::before { color: var(--gold-bright); }

.beta-section { position: relative; display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 90px; overflow: hidden; padding: 110px max(5vw, calc((100vw - 1060px) / 2)); color: white; background: var(--navy); }
.beta-section::before { position: absolute; top: -60%; left: -12%; width: 650px; height: 650px; border: 90px solid rgba(242, 195, 93, .04); border-radius: 50%; content: ""; }
.beta-stamp { position: relative; display: grid; width: 270px; height: 270px; place-content: center; justify-self: center; transform: rotate(-7deg); border: 2px solid rgba(242, 195, 93, .55); border-radius: 50%; text-align: center; }
.beta-stamp::before, .beta-stamp::after { position: absolute; inset: 13px; border: 1px dashed rgba(242, 195, 93, .33); border-radius: 50%; content: ""; }
.beta-stamp::after { inset: 30px; border-style: solid; }
.beta-stamp span { color: var(--gold-bright); font-size: .75rem; font-weight: 800; letter-spacing: .3em; }
.beta-stamp strong { color: white; font-family: var(--serif); font-size: 4.5rem; line-height: 1; }
.beta-stamp small { color: #9fb2c6; font-size: .56rem; font-weight: 800; letter-spacing: .16em; }
.beta-copy { position: relative; z-index: 1; }
.beta-copy h2 { color: white; }
.beta-copy > p:not(.eyebrow, .beta-later) { max-width: 650px; color: #b7c7d8; }
.beta-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0; }
.beta-tags span { padding: 7px 11px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 20px; color: #d5e0ea; background: rgba(255, 255, 255, .05); font-size: .62rem; font-weight: 700; }
.beta-later { max-width: 690px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .13); color: #9fb2c6; font-size: .7rem; }
.beta-later strong { color: var(--gold-bright); }

.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; background: var(--paper); }
.faq-heading h2 { margin: 0; }
.faq-list { display: grid; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; cursor: pointer; color: var(--navy); font-family: var(--serif); font-size: 1.18rem; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; width: 29px; height: 29px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-family: var(--sans); font-size: 1rem; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 700px; padding: 0 45px 20px 0; color: var(--muted); font-size: .82rem; }

.contact-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; padding: 110px max(5vw, calc((100vw - 1180px) / 2)); color: white; background: var(--green-deep); }
.contact-copy h2 { color: white; }
.contact-copy > p:not(.eyebrow) { color: #b8cec7; }
.contact-points { display: grid; gap: 12px; margin-top: 35px; }
.contact-points span { display: flex; align-items: center; gap: 11px; color: #d8e5e1; font-size: .72rem; }
.contact-points b { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgba(242, 195, 93, .4); border-radius: 50%; color: var(--gold-bright); font-size: .52rem; }
.lead-form { display: grid; gap: 15px; padding: 32px; border: 1px solid rgba(255, 255, 255, .35); border-radius: 24px; color: var(--ink); background: var(--paper); box-shadow: 0 35px 80px rgba(0, 0, 0, .2); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.lead-form label { display: grid; gap: 6px; color: var(--navy); font-size: .66rem; font-weight: 800; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; border: 1px solid #cbc4b6; border-radius: 11px; color: var(--ink); background: white; outline: 0; }
.lead-form input, .lead-form select { height: 46px; padding: 0 12px; }
.lead-form textarea { min-height: 106px; padding: 11px 12px; resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 155, 36, .13); }
.lead-form .consent { display: flex; align-items: flex-start; gap: 9px; color: #67717d; font-size: .59rem; font-weight: 600; line-height: 1.5; }
.lead-form .consent input { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--green); }
.form-submit { border: 0; }
.hidden-field { display: none; }

.site-footer { padding: 65px max(5vw, calc((100vw - 1180px) / 2)) 24px; color: white; background: var(--navy-deep); }
.site-footer { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.footer-logo { margin-bottom: 17px; }
.footer-brand p { max-width: 290px; color: #8fa4b8; font-size: .76rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links div { display: grid; align-content: start; gap: 10px; }
.footer-links strong { margin-bottom: 5px; color: var(--gold-bright); font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-links a { color: #9db0c3; font-size: .72rem; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; grid-column: 1 / -1; justify-content: space-between; margin-top: 25px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); color: #748ca3; font-size: .62rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2, .7, .2, 1); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .14s; }
.reveal-delay-short { transition-delay: .09s; }
.reveal-delay-long { transition-delay: .18s; }

.simple-page { min-height: 100vh; color: var(--ink); background: var(--cream); }
.simple-header { position: static; width: 100%; transform: none; border-radius: 0; background: var(--navy-deep); }
.simple-main { width: min(850px, calc(100% - 36px)); margin: 0 auto; padding: 90px 0 120px; }
.simple-main h1 { color: var(--navy); font-family: var(--serif); font-size: clamp(2.8rem, 7vw, 5rem); line-height: .95; }
.simple-main h2 { margin-top: 42px; color: var(--navy); font-family: var(--serif); }
.simple-main p, .simple-main li { color: var(--muted); }
.simple-card { padding: 38px; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); box-shadow: var(--shadow); }
.thanks-main { display: grid; min-height: calc(100vh - 75px); place-items: center; padding: 80px 18px; text-align: center; }
.thanks-card { max-width: 650px; }
.thanks-icon { display: grid; width: 72px; height: 72px; place-items: center; margin: 0 auto 25px; border-radius: 22px; color: white; background: var(--green); font-size: 1.5rem; }

@media (max-width: 1080px) {
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 145px; }
  .hero-copy { max-width: 760px; }
  .product-stage { max-width: 800px; justify-self: center; transform: none; }
  .feature-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .feature-connection, .institution-card { grid-column: 1 / -1; min-height: auto; }
  .institution-card { min-height: 480px; }
  .institution-cta { grid-template-columns: 1fr 1fr; }
  .institution-cta .button { grid-column: 1 / -1; width: max-content; }
}

@media (max-width: 780px) {
  .site-header { top: 10px; min-height: 64px; padding: 9px 10px 9px 13px; border-radius: 18px; }
  .menu-button { display: grid; }
  .site-nav { position: absolute; top: 72px; right: 0; left: 0; display: none; padding: 12px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 18px; background: rgba(7, 29, 58, .98); box-shadow: 0 25px 60px rgba(0, 0, 0, .3); }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 13px; }
  .site-nav .nav-cta { margin: 6px 0 0; text-align: center; }
  .hero { gap: 60px; padding: 125px 20px 80px; }
  .hero h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .hero-proof { grid-template-columns: 1fr; gap: 14px; }
  .window-body { min-height: 365px; grid-template-columns: 58px 1fr; }
  .mock-sidebar { padding-inline: 8px; }
  .mock-nav { width: 27px; }
  .mock-main { padding: 24px 16px; }
  .float-moodle { top: 72px; left: -5px; }
  .float-ready { right: -4px; }
  .logo-line { align-items: flex-start; flex-direction: column; }
  .logo-line div { flex-wrap: wrap; gap: 14px; font-size: .85rem; }
  .section { padding: 82px 20px; }
  .section-heading h2, .institution-intro h2, .workflow-copy h2, .beta-copy h2, .contact-copy h2, .faq-heading h2 { font-size: clamp(2.4rem, 12vw, 3.6rem); }
  .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
  .feature { min-height: auto; }
  .feature-connection, .institution-card { grid-column: auto; }
  .price-card.featured { transform: none; }
  .workflow-section, .contact-section { grid-template-columns: 1fr; gap: 55px; padding: 82px 20px; }
  .institution-intro { grid-template-columns: 1fr; gap: 25px; }
  .profile-board { grid-template-columns: 1fr; }
  .profile-selector { flex-direction: row; overflow-x: auto; }
  .profile-selector > span { display: none; }
  .profile-pill { flex: 0 0 auto; }
  .profile-detail { padding: 28px 20px; }
  .profile-title { align-items: flex-start; flex-wrap: wrap; }
  .profile-status { margin-left: 72px; }
  .profile-title h3 { white-space: normal; }
  .connector-grid { grid-template-columns: 1fr; }
  .institution-cta { grid-template-columns: 1fr; }
  .institution-cta .button { grid-column: auto; width: 100%; }
  .beta-section { grid-template-columns: 1fr; gap: 55px; padding: 82px 20px; }
  .beta-stamp { width: 220px; height: 220px; }
  .faq-section { grid-template-columns: 1fr; gap: 45px; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; gap: 45px; padding-inline: 20px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
}

@media (max-width: 480px) {
  .hero-actions, .hero-actions .button { width: 100%; }
  .product-stage { width: 108%; margin-left: -4%; }
  .floating-card { display: none; }
  .mock-main h2 { font-size: 1.25rem; }
  .course-strip > span { display: none; }
  .metric-row div { padding: 9px; }
  .grade-table > div { grid-template-columns: 1.4fr repeat(3, .7fr); padding-inline: 8px; }
  .profile-pill { padding: 9px; }
  .profile-pill i { width: 27px; height: 27px; }
  .billing-toggle { width: 100%; }
  .billing-toggle button { flex: 1; padding-inline: 8px; }
  .lead-form { padding: 22px 17px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
