@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/space-grotesk-variable-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/space-grotesk-variable-latin.woff2") format("woff2");
}

:root {
  --ink: #101917;
  --muted: #64726f;
  --soft: #eef4f1;
  --paper: #f8faf7;
  --white: #ffffff;
  --line: #dce7e2;
  --green: #146a5a;
  --green-dark: #0c4038;
  --mint: #5ed0bb;
  --blue: #25678f;
  --gold: #c8922d;
  --coral: #d85f45;
  --shadow: 0 22px 62px rgba(17, 31, 28, 0.12);
  --gutter: clamp(22px, 4vw, 64px);
  --section-y: clamp(56px, 7vw, 96px);
  --font-display: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 12px;
  z-index: 100;
  border-radius: 8px;
  padding: 12px 18px;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 850;
  transition: top 120ms ease;
}

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

.heading-tags {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sample-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(200, 146, 45, 0.16);
  color: #7a5312;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.sample-tag.on-dark {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--gutter);
  border-bottom: 1px solid rgba(220, 231, 226, 0.76);
  background: rgba(248, 250, 247, 0.9);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 40px rgba(17, 31, 28, 0.08);
}

.brand,
.header-cta,
.button,
.live-pill,
.screen-toolbar,
.view-tab,
.delivery-grid span,
.trust-row,
.proof-points {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.1vw, 28px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a:hover {
  color: var(--green);
}

.header-cta,
.button {
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 0.93rem;
  font-weight: 850;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  background: var(--green);
  color: var(--white);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  min-height: calc(92svh - 67px);
  padding: clamp(46px, 6vw, 82px) var(--gutter) 48px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(248, 250, 247, 0.96) 0%, rgba(248, 250, 247, 0.82) 42%, rgba(238, 244, 241, 0.9) 100%),
    radial-gradient(circle at 78% 18%, rgba(94, 208, 187, 0.34), transparent 34%),
    radial-gradient(circle at 18% 88%, rgba(200, 146, 45, 0.18), transparent 28%);
  pointer-events: none;
}

.hero-copy,
.hero-product,
.section,
.feature-highlights,
.showcase,
.delivery,
.outcomes,
.contact-section,
.module-ribbon,
.proof-strip {
  position: relative;
}

.hero-copy {
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
}

h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(3rem, 6.2vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.01em;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-product {
  z-index: 1;
  min-height: 580px;
}

.product-window {
  border: 1px solid rgba(16, 25, 23, 0.11);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.main-window {
  transform: perspective(1300px) rotateY(-7deg) rotateX(2deg);
  transform-origin: left center;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfb;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #a9b8b3;
}

.window-bar strong {
  margin-left: 10px;
  color: var(--muted);
  font-size: 0.8rem;
}

.app-shell {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  min-height: 530px;
}

.app-sidebar {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 17px;
  padding: 24px 0;
  background: #10211d;
}

.brand-dot,
.nav-dot {
  display: block;
  border-radius: 8px;
}

.brand-dot {
  width: 34px;
  height: 34px;
  background: var(--mint);
}

.nav-dot {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.18);
}

.nav-dot.active {
  background: var(--gold);
}

.app-content {
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(135deg, #ffffff 0%, #f2f7f4 100%);
}

.app-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.app-heading p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.app-heading h2 {
  font-size: clamp(1.7rem, 3.2vw, 3.1rem);
}

.live-pill {
  align-self: start;
  min-height: 32px;
  border-radius: 8px;
  padding: 0 11px;
  background: #e5f7f2;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric-grid article {
  min-height: 130px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 17px;
  background: var(--white);
}

.metric-grid span,
.statement-panel small,
.statement-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.metric-grid strong {
  display: block;
  margin: 11px 0 8px;
  font-size: clamp(1.18rem, 2.35vw, 2rem);
  line-height: 1;
}

.metric-grid em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.metric-grid .up {
  color: var(--green);
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(230px, 0.75fr);
  gap: 14px;
  margin-top: 14px;
}

.chart-card,
.work-queue {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.chart-card {
  display: flex;
  align-items: end;
  gap: 12px;
  min-height: 238px;
  padding: 22px;
  background: #edf5f2;
}

.bar {
  flex: 1;
  min-width: 14px;
  border-radius: 8px 8px 0 0;
  background: var(--blue);
}

.bar.one {
  height: 46%;
}

.bar.two {
  height: 72%;
  background: var(--green);
}

.bar.three {
  height: 58%;
  background: var(--gold);
}

.bar.four {
  height: 88%;
  background: var(--green-dark);
}

.bar.five {
  height: 65%;
  background: var(--mint);
}

.bar.six {
  height: 76%;
}

.work-queue {
  display: grid;
  gap: 0;
  align-content: start;
  overflow: hidden;
}

.work-queue div {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.work-queue div:last-child {
  border-bottom: 0;
}

.work-queue p {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 750;
}

.queue-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 999px;
}

.queue-dot.finance {
  background: var(--green);
}

.queue-dot.ops {
  background: var(--gold);
}

.queue-dot.academic {
  background: var(--blue);
}

.floating-window {
  position: absolute;
}

.finance-window {
  right: 0;
  bottom: 20px;
  width: min(280px, 46%);
  padding: 18px;
}

.message-window {
  left: 3%;
  bottom: 58px;
  width: min(250px, 44%);
  padding: 17px;
  background: #10211d;
  color: var(--white);
}

.message-window p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.mini-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.mini-title span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.mini-title strong {
  color: var(--green-dark);
  text-align: right;
}

.invoice-list {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.invoice-list span {
  height: 28px;
  border-radius: 8px;
  background: #e8f1ed;
}

.module-ribbon {
  margin: -28px var(--gutter) 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(17, 31, 28, 0.07);
}

.ribbon-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.ribbon-heading h2 {
  max-width: 620px;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
}

.ribbon-heading .eyebrow {
  margin-bottom: 0;
}

.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ribbon-grid article {
  display: grid;
  grid-template-rows: 42px auto 1fr;
  gap: 12px;
  min-height: 156px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fbfcfb;
}

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

.module-number {
  display: inline-grid;
  width: 34px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: #e5f4ef;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 950;
}

.module-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  padding: 9px;
  background: #f0f6f3;
  color: var(--green-dark);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.module-icon.theme-green {
  background: rgba(20, 106, 90, 0.12);
  color: var(--green);
}

.module-icon.theme-blue {
  background: rgba(37, 103, 143, 0.12);
  color: var(--blue);
}

.module-icon.theme-mint {
  background: rgba(94, 208, 187, 0.18);
  color: #128274;
}

.module-icon.theme-coral {
  background: rgba(216, 95, 69, 0.13);
  color: var(--coral);
}

.ribbon-grid strong {
  display: flex;
  align-items: start;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.2;
}

.ribbon-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.trust-row {
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.trust-row span {
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 7px 10px;
  background: #f5faf7;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 850;
}

.section,
.feature-highlights,
.showcase,
.delivery,
  .outcomes,
  .contact-section,
  .proof-strip {
  padding: var(--section-y) var(--gutter);
}

.section {
  padding-top: clamp(38px, 5vw, 76px);
}

.feature-highlights {
  background: var(--paper);
}

.feature-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  margin-bottom: 30px;
}

.feature-intro .section-heading {
  margin-bottom: 0;
}

.feature-intro h2 {
  max-width: 980px;
}

.feature-snapshot {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(17, 31, 28, 0.07);
}

.snapshot-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border-radius: 8px;
  padding: 14px;
  background: #10211d;
  color: var(--white);
}

.snapshot-top span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 850;
}

.snapshot-top strong {
  color: var(--mint);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.snapshot-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fbfcfb;
}

.snapshot-grid span {
  display: block;
  min-height: 34px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.snapshot-grid strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.35rem;
  line-height: 1;
}

.snapshot-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.snapshot-flow span {
  min-height: 38px;
  border-radius: 8px;
  padding: 10px;
  background: #e5f4ef;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-align: center;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.highlight-grid article {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 196px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 76px 24px 22px;
  background: var(--white);
}

.highlight-grid strong {
  color: var(--green-dark);
  font-size: 1.08rem;
  line-height: 1.22;
}

.highlight-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.highlight-icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  padding: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.highlight-icon.theme-green {
  background: rgba(20, 106, 90, 0.12);
  color: var(--green);
}

.highlight-icon.theme-blue {
  background: rgba(37, 103, 143, 0.12);
  color: var(--blue);
}

.highlight-icon.theme-mint {
  background: rgba(94, 208, 187, 0.18);
  color: #128274;
}

.highlight-icon.theme-coral {
  background: rgba(216, 95, 69, 0.13);
  color: var(--coral);
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 960px;
  margin-bottom: 38px;
}

.section-heading.compact {
  margin-bottom: 30px;
}

.section-heading > .eyebrow {
  margin-bottom: 0;
}

.section-heading p:not(.eyebrow),
.contact-copy p {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.platform-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  margin-bottom: 38px;
}

.platform-intro .section-heading {
  margin-bottom: 0;
}

.platform-snapshot {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(17, 31, 28, 0.07);
}

.platform-snapshot-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border-radius: 8px;
  padding: 14px;
  background: #10211d;
  color: var(--white);
}

.platform-snapshot-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 850;
}

.platform-snapshot-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.platform-snapshot-body article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfcfb;
}

.platform-snapshot-body span {
  display: block;
  min-height: 34px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
}

.platform-snapshot-body strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.6rem;
  line-height: 1;
}

.platform-snapshot-list {
  display: grid;
  gap: 9px;
}

.platform-snapshot-list span {
  min-height: 38px;
  border-radius: 8px;
  padding: 10px;
  background: #e5f4ef;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  display: grid;
  align-content: start;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.value-card.large {
  background: #10211d;
  color: var(--white);
}

.value-card.wide {
  grid-column: span 3;
}

.dashboard-value {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: 22px;
  align-items: center;
}

.dashboard-value .card-number {
  margin-bottom: 24px;
}

.card-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  background: #e8f3ef;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 950;
}

.value-card.large .card-number {
  background: rgba(94, 208, 187, 0.18);
  color: var(--mint);
}

.value-card h3 {
  max-width: 620px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.value-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.value-card.large p {
  color: rgba(255, 255, 255, 0.72);
}

.dashboard-card-visual {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(135deg, #ffffff 0%, #edf5f2 100%);
  box-shadow: 0 14px 36px rgba(17, 31, 28, 0.07);
}

.student-summary {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--white);
}

.student-photo {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 32%, #f3d4b8 0 22%, transparent 23%),
    radial-gradient(circle at 50% 82%, var(--green) 0 34%, transparent 35%),
    linear-gradient(135deg, #dff1ec, #f7fbf8);
}

.student-summary strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.student-summary p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.student-summary em {
  border-radius: 8px;
  padding: 6px 8px;
  background: #e5f4ef;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 950;
}

.dashboard-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.dashboard-mini-grid article {
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--white);
}

.dashboard-mini-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.dashboard-mini-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--green-dark);
  font-size: 0.98rem;
  line-height: 1.1;
}

.dashboard-exceptions {
  display: grid;
  gap: 8px;
}

.dashboard-exceptions span {
  display: block;
  min-height: 34px;
  border-radius: 8px;
  padding: 9px 11px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
}

.dashboard-exceptions .fee {
  background: rgba(200, 146, 45, 0.18);
}

.dashboard-exceptions .report {
  background: rgba(37, 103, 143, 0.14);
}

.showcase {
  background: #10211d;
  color: var(--white);
}

.showcase .eyebrow {
  color: var(--mint);
}

.showcase .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.showcase-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.view-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.view-tab {
  min-height: 58px;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 17px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
  font-weight: 850;
  text-align: left;
}

.view-tab.active,
.view-tab:hover {
  border-color: rgba(94, 208, 187, 0.7);
  background: rgba(94, 208, 187, 0.16);
  color: var(--white);
}

.view-stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(360px, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  min-height: 510px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 46px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.view-kicker {
  margin: 0 0 12px;
  color: var(--mint);
  font-weight: 900;
}

.view-copy h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
  letter-spacing: -0.01em;
}

.view-copy p:not(.view-kicker) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.screen-shot {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.screen-toolbar {
  justify-content: space-between;
  gap: 14px;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfb;
}

.screen-toolbar span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
}

.screen-toolbar strong {
  font-size: 0.86rem;
}

.screen-toolbar em {
  border-radius: 8px;
  padding: 5px 8px;
  background: #e8f4ef;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.finance-screen,
.director-screen,
.enrolment-screen,
.attendance-screen,
.reportcard-screen,
.classroom-screen,
.student-screen,
.ops-screen,
.message-screen {
  display: grid;
  gap: 16px;
  min-height: 330px;
  padding: 18px;
  background: #f4f8f6;
}

.finance-screen {
  grid-template-columns: 0.55fr 1fr;
  align-items: start;
}

.statement-panel,
.table-panel,
.director-kpis article,
.director-chart,
.director-alerts,
.pipeline-column,
.attendance-summary article,
.attendance-register,
.report-preview,
.comment-panel,
.classroom-tree,
.classroom-panel,
.profile-panel,
.activity-panel,
.kanban-column,
.thread-panel,
.template-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.director-screen {
  align-content: start;
}

.director-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.director-kpis article {
  padding: 16px;
}

.director-kpis span,
.attendance-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
}

.director-kpis strong,
.attendance-summary strong {
  display: block;
  margin-top: 8px;
  color: var(--green-dark);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.director-body {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
}

.director-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  min-height: 190px;
  padding: 18px;
  background: #edf5f2;
}

.director-alerts {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 16px;
}

.director-alerts span {
  min-height: 40px;
  border-radius: 8px;
  padding: 11px;
  background: #edf5f2;
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 850;
}

.enrolment-screen {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pipeline-column {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 14px;
}

.pipeline-column strong {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.candidate-card {
  min-height: 74px;
  border-radius: 8px;
  padding: 12px;
  background: #edf5f2;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 850;
}

.candidate-card.active {
  background: rgba(200, 146, 45, 0.18);
  color: #6a4a10;
}

.candidate-card.done {
  background: rgba(20, 106, 90, 0.16);
  color: var(--green-dark);
}

.attendance-screen {
  align-content: start;
}

.attendance-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.attendance-summary article {
  padding: 16px;
}

.attendance-register {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.register-row {
  display: block;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(20, 106, 90, 0.22), #edf5f2 72%);
}

.register-row.late {
  background: linear-gradient(90deg, rgba(200, 146, 45, 0.32), #f5efe3 72%);
}

.register-row.absent {
  background: linear-gradient(90deg, rgba(216, 95, 69, 0.24), #f7ece8 72%);
}

.reportcard-screen {
  grid-template-columns: 0.8fr 1fr;
  align-items: start;
}

.report-preview,
.comment-panel {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
}

.report-header {
  display: block;
  height: 46px;
  border-radius: 8px;
  background: var(--green-dark);
}

.report-line,
.comment-panel span {
  display: block;
  height: 18px;
  border-radius: 999px;
  background: #dbe8e3;
}

.report-line.short,
.comment-panel .short {
  width: 64%;
}

.grade-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.grade-grid span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 8px;
  background: #edf5f2;
  color: var(--green-dark);
  font-weight: 950;
}

.comment-panel strong {
  display: block;
  margin-bottom: 4px;
}

.classroom-screen {
  grid-template-columns: 0.72fr 1fr;
}

.classroom-tree,
.classroom-panel {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 16px;
}

.classroom-tree strong {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.classroom-tree span,
.classroom-actions span {
  min-height: 42px;
  border-radius: 8px;
  padding: 12px;
  background: #edf5f2;
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 850;
}

.classroom-status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.classroom-status article {
  border-radius: 8px;
  padding: 14px;
  background: #edf5f2;
}

.classroom-status strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.3rem;
}

.classroom-status span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.classroom-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.statement-panel {
  padding: 20px;
}

.statement-panel strong {
  display: block;
  margin: 18px 0 8px;
  color: var(--green-dark);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
}

.table-panel {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 16px;
}

.row {
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(90deg, #dce9e4 0%, #f2f7f4 100%);
}

.row.high {
  background: linear-gradient(90deg, rgba(20, 106, 90, 0.25), #edf6f3);
}

.row.low {
  width: 68%;
}

.student-screen {
  grid-template-columns: 0.6fr 1fr;
}

.profile-panel {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px;
}

.avatar {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--mint));
}

.profile-line {
  display: block;
  height: 16px;
  border-radius: 999px;
  background: #dbe8e3;
}

.profile-line.short {
  width: 64%;
}

.activity-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.activity-tile {
  min-height: 102px;
  border-radius: 8px;
  padding: 14px;
  background: #edf5f2;
}

.activity-tile strong {
  display: block;
  margin-bottom: 8px;
}

.activity-tile span {
  color: var(--muted);
  font-size: 0.82rem;
}

.ops-screen {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kanban-column {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 14px;
}

.kanban-column strong {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.ticket {
  min-height: 76px;
  border-radius: 8px;
  padding: 12px;
  background: #edf5f2;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.message-screen {
  grid-template-columns: 1fr 0.7fr;
}

.thread-panel,
.template-panel {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 16px;
}

.bubble {
  max-width: 84%;
  border-radius: 8px;
  padding: 12px;
  background: #e8f4ef;
  font-size: 0.86rem;
}

.bubble.out {
  margin-left: auto;
  background: var(--green);
  color: var(--white);
}

.template-chip {
  min-height: 40px;
  border-radius: 8px;
  padding: 11px;
  background: #edf5f2;
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 850;
}

.delivery {
  background: var(--white);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.delivery-grid article {
  min-height: 234px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--paper);
}

.delivery-grid span {
  justify-content: center;
  width: 58px;
  height: 36px;
  margin-bottom: 30px;
  border-radius: 8px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.delivery-grid p,
.outcome-list span,
.proof-points p,
.form-note,
.site-footer {
  color: var(--muted);
}

.outcomes {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 58px);
  background: var(--soft);
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}

.outcome-list article {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.outcome-list strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.14rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 58px);
  background: #10211d;
  color: var(--white);
}

.proof-strip .eyebrow {
  color: var(--mint);
}

.proof-points {
  align-items: stretch;
  gap: 14px;
}

.proof-points article {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.proof-points strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.04rem;
}

.proof-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(330px, 0.64fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: start;
  background: var(--white);
}

.contact-copy {
  display: grid;
  gap: 16px;
  max-width: 800px;
}

.contact-card {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 18px 58px rgba(17, 31, 28, 0.09);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fbfcfb;
  color: var(--ink);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(20, 106, 90, 0.12);
}

.form-note {
  min-height: 22px;
  margin: 0;
  font-size: 0.86rem;
}

.form-note.success {
  color: var(--green-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
  background: var(--white);
  font-size: 0.9rem;
}

@media (max-width: 1120px) {
  .hero,
  .feature-intro,
  .platform-intro,
  .outcomes,
  .proof-strip,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-product {
    min-height: 590px;
  }

  .value-grid,
  .ribbon-grid,
  .highlight-grid,
  .delivery-grid,
  .outcome-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ribbon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .view-stage {
    grid-template-columns: 1fr;
  }

  .dashboard-value {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 24px), transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 24px), transparent);
  }

  .header-cta {
    order: 2;
    margin-left: auto;
  }

  .hero-product {
    min-height: auto;
  }

  .main-window {
    transform: none;
  }

  .floating-window {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .app-shell {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: auto;
  }

  .app-content {
    padding: 18px;
  }

  .metric-grid,
  .visual-grid,
  .finance-screen,
  .director-body,
  .enrolment-screen,
  .reportcard-screen,
  .classroom-screen,
  .student-screen,
  .ops-screen,
  .message-screen,
  .ribbon-heading,
  .showcase-layout,
  .value-grid,
  .highlight-grid,
  .delivery-grid,
  .outcome-list {
    grid-template-columns: 1fr;
  }

  .dashboard-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .module-ribbon {
    margin: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    transform: none;
  }

  .ribbon-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .ribbon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .value-card.large,
  .value-card.wide {
    grid-column: auto;
  }

  .view-stage {
    min-height: auto;
  }

  .screen-shot {
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .brand-text {
    display: none;
  }

  h1 {
    font-size: clamp(2.7rem, 17vw, 4.4rem);
  }

  .button {
    width: 100%;
  }

  .app-sidebar {
    display: none;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .app-heading {
    display: grid;
  }

  .chart-card {
    min-height: 180px;
  }

  .activity-panel {
    grid-template-columns: 1fr;
  }

  .director-kpis,
  .attendance-summary,
  .dashboard-mini-grid,
  .snapshot-grid,
  .snapshot-flow,
  .platform-snapshot-body,
  .classroom-status,
  .classroom-actions {
    grid-template-columns: 1fr;
  }

  .student-summary {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .student-summary em {
    width: fit-content;
    grid-column: 2;
  }

  .ribbon-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
