:root {
  --primary: #001233;
  --secondary: #0466c8;
  --ink: #07111f;
  --muted: #607089;
  --paper: #f7fbff;
  --white: #ffffff;
  --cyan: #5ddcca;
  --amber: #ffbf4d;
  --coral: #ff7a70;
  --green: #40c97b;
  --mint: #e9f7f4;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 80px rgba(0, 18, 51, 0.24);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

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

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  color: var(--white);
  background: rgba(0, 18, 51, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(0, 18, 51, 0.92);
  border-color: rgba(255, 255, 255, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark svg,
.button svg,
.metric-icon svg,
.step-icon svg,
.trust-list svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.nav-dropdown-toggle {
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 11px 13px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.is-active,
.nav-dropdown.is-open .nav-dropdown-toggle {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 30;
  width: min(360px, calc(100vw - 48px));
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 18, 51, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-dropdown-section {
  display: grid;
  gap: 8px;
}

.nav-dropdown-label {
  padding-inline: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-dropdown-panel a {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a[aria-current="page"] {
  border-color: rgba(93, 220, 202, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.nav-dropdown-panel small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section {
  position: relative;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  padding-top: 104px;
  padding-bottom: 104px;
}

.account-access {
  padding: 112px 24px 0;
  background:
    linear-gradient(180deg, rgba(4, 102, 200, 0.08), rgba(4, 102, 200, 0) 100%),
    var(--paper);
}

.account-access-inner {
  padding-top: 0;
  padding-bottom: 40px;
}

.account-access-shell {
  border: 1px solid rgba(0, 18, 51, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 56px rgba(0, 18, 51, 0.08);
  overflow: hidden;
}

.account-access-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 18px 20px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.account-access-toggle-copy {
  display: grid;
  gap: 4px;
}

.account-access-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 700;
}

.account-access-toggle .eyebrow {
  margin: 0;
  color: var(--secondary);
}

.account-access-toggle-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--primary);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.account-access-shell.is-open .account-access-toggle-icon {
  transform: rotate(45deg);
}

.account-access-panel {
  padding: 0 20px 20px;
}

.account-access-copy {
  max-width: 760px;
  margin-bottom: 24px;
}

.account-access-copy p:last-child {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

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

.account-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(0, 18, 51, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 56px rgba(0, 18, 51, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.account-card:hover {
  transform: translateY(-2px);
}

.account-card-logo {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
}

.account-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.account-card-body {
  display: grid;
  gap: 4px;
}

.account-card-body strong {
  font-size: 1.06rem;
}

.account-card-body small {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.account-access-panel[hidden] {
  display: none !important;
}

.studio-card:hover {
  border-color: rgba(4, 102, 200, 0.28);
  box-shadow: 0 24px 60px rgba(4, 102, 200, 0.12);
}

.admin-card:hover {
  border-color: rgba(189, 24, 24, 0.24);
  box-shadow: 0 24px 60px rgba(189, 24, 24, 0.12);
}

.hero {
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px 24px 72px;
  color: var(--white);
  background: var(--primary);
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.05);
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 18, 51, 0.96) 0%, rgba(0, 18, 51, 0.8) 44%, rgba(0, 18, 51, 0.18) 82%),
    linear-gradient(180deg, rgba(0, 18, 51, 0.7) 0%, rgba(0, 18, 51, 0.08) 48%, rgba(0, 18, 51, 0.88) 100%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: end;
}

.hero-content {
  width: min(720px, 100%);
}

.hero-side {
  display: grid;
  gap: 14px;
  justify-items: end;
  align-self: end;
}

.hero-panel,
.hero-stats span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(0, 18, 51, 0.56);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero-panel {
  max-width: 360px;
  padding: 18px;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.hero-stats span {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--serif);
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: 5.3rem;
  line-height: 0.96;
}

h2 {
  margin: 0;
  font-size: 3.4rem;
  line-height: 1.04;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
}

.hero-copy,
.section-heading p,
.section-copy p,
.feature-card p,
.step-card p,
.price-card p,
.trust-list p,
.audience-card p,
.final-cta p,
.institution-card p {
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.8);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--secondary);
  box-shadow: 0 14px 32px rgba(4, 102, 200, 0.34);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.product-band .button-secondary,
.visual-section .button-secondary,
.final-cta .button-secondary {
  color: var(--primary);
  border-color: rgba(0, 18, 51, 0.12);
  background: rgba(4, 102, 200, 0.1);
}

.button-quiet {
  color: var(--primary);
  background: rgba(4, 102, 200, 0.1);
}

.button-admin {
  color: var(--white);
  background: #c81d25;
  box-shadow: 0 14px 32px rgba(200, 29, 37, 0.28);
}

.suite-overview {
  background: var(--white);
}

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

.suite-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(0, 18, 51, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 56px rgba(0, 18, 51, 0.08);
}

.suite-card header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.suite-card-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
}

.suite-card-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.suite-card-copy {
  display: grid;
  gap: 4px;
}

.suite-card-copy p {
  margin: 0;
  color: var(--muted);
}

.suite-card .detail-list {
  gap: 12px;
}

.suite-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subpage-hero {
  min-height: 82svh;
  display: grid;
  align-items: end;
  padding: 132px 24px 80px;
  color: var(--white);
  background: var(--primary);
}

.subpage-hero h1 {
  max-width: 760px;
  font-size: 4.6rem;
  line-height: 0.98;
}

.subpage-hero.admin-hero {
  background:
    linear-gradient(135deg, rgba(200, 29, 37, 0.26), rgba(0, 18, 51, 0) 36%),
    var(--primary);
}

.subpage-hero.studio-hero {
  background:
    linear-gradient(135deg, rgba(4, 102, 200, 0.26), rgba(0, 18, 51, 0) 36%),
    var(--primary);
}

.subpage-hero.practice-hero {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(93, 220, 202, 0.24), rgba(255, 191, 77, 0.08) 34%, rgba(0, 18, 51, 0) 58%),
    var(--primary);
}

.product-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 36px;
  align-items: end;
}

.practice-hero .product-shell {
  align-items: center;
}

.product-copy {
  max-width: 720px;
}

.product-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.practice-logo-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  overflow: hidden;
  border-radius: 8px;
}

.practice-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.75;
}

.cta-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.product-panel {
  display: grid;
  gap: 14px;
}

.practice-device-panel {
  align-self: stretch;
  align-content: center;
  justify-items: center;
}

.practice-device-stage {
  position: relative;
  width: min(500px, 100%);
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.coming-soon-preview-badge {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(0, 18, 51, 0.76);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 18px 42px rgba(0, 18, 51, 0.24);
}

.practice-phone-frame,
.practice-screen-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 1320 / 2868;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #00101f;
}

.practice-phone-frame {
  --entry-rotate: 0deg;
  --entry-x: 0px;
  --phone-opacity: 1;
  --phone-rotate: 0deg;
  --phone-scale: 1;
  --phone-x: 0px;
  --phone-y: 0px;
  --scroll-rotate: 0deg;
  --scroll-y: 0px;
  width: min(260px, 62vw);
  border-radius: 32px;
  padding: 7px;
  opacity: var(--phone-opacity);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  transform:
    translate3d(var(--phone-x), calc(var(--phone-y) + var(--scroll-y)), 0)
    rotate(calc(var(--phone-rotate) + var(--scroll-rotate)))
    scale(var(--phone-scale));
  transition:
    opacity 850ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.practice-phone-frame img,
.practice-screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.practice-phone-frame img {
  border-radius: 24px;
}

.practice-phone-frame-primary {
  --entry-rotate: -9deg;
  --entry-x: -42px;
  --phone-rotate: -2deg;
  --phone-x: -44px;
  z-index: 2;
}

.practice-phone-frame-secondary {
  --entry-rotate: 10deg;
  --entry-x: 42px;
  --phone-opacity: 0.92;
  --phone-rotate: 5deg;
  position: absolute;
  right: 0;
  bottom: 26px;
  z-index: 1;
  width: min(205px, 46vw);
  transition-delay: 120ms;
}

.reveal-ready .practice-device-panel:not(.is-visible) .practice-phone-frame {
  opacity: 0;
  transform:
    translate3d(calc(var(--phone-x) + var(--entry-x)), 38px, 0)
    rotate(var(--entry-rotate))
    scale(0.94);
}

.reveal-ready .practice-device-panel.is-visible .practice-phone-frame {
  opacity: var(--phone-opacity);
}

.practice-hero-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 18, 51, 0.52);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.practice-hero-card img {
  width: min(280px, 100%);
  margin-inline: auto;
  filter: drop-shadow(0 24px 54px rgba(0, 240, 255, 0.22));
}

.practice-hero-card strong {
  font-size: 1.05rem;
}

.practice-hero-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.proof-strip,
.utility-pills span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 18, 51, 0.52);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.proof-strip {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.proof-strip strong {
  font-size: 1.05rem;
}

.proof-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.utility-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.utility-pills span {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.product-band {
  background: var(--white);
}

.product-band.alt-band {
  background: #eef6ff;
}

.product-band .section-heading p,
.product-band .section-copy p,
.product-band.alt-band .section-heading p,
.product-band.alt-band .section-copy p {
  color: var(--muted);
}

.product-band h2,
.product-band.alt-band h2 {
  max-width: 920px;
}

.workflow-stack {
  display: grid;
  gap: 22px;
}

.workflow-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(0, 18, 51, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 56px rgba(0, 18, 51, 0.08);
}

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

.admin-workflow-stack .workflow-card {
  position: relative;
  min-height: 100%;
  grid-template-columns: 1fr;
  align-items: start;
  overflow: hidden;
}

.admin-workflow-stack .workflow-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 32%),
    linear-gradient(135deg, rgba(200, 29, 37, 0.18), rgba(37, 161, 244, 0.16));
  opacity: 0.72;
  pointer-events: none;
}

.workflow-copy p,
.split-panel p,
.spotlight-card p {
  color: var(--muted);
  line-height: 1.7;
}

.placeholder-frame {
  margin: 0;
}

.placeholder-frame img {
  width: 100%;
  height: auto;
}

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

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

.product-family-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-family-card .suite-card-actions {
  margin-top: auto;
}

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

.practice-feature-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

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

.practice-screen-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(0, 18, 51, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 56px rgba(0, 18, 51, 0.08);
}

.practice-screen-frame {
  width: min(230px, 100%);
  margin-inline: auto;
  border-color: rgba(0, 18, 51, 0.18);
  border-radius: 30px;
  padding: 6px;
  box-shadow: 0 24px 70px rgba(0, 18, 51, 0.18);
}

.practice-screen-frame img {
  border-radius: 23px;
}

.practice-screen-copy {
  display: grid;
  align-content: start;
  gap: 8px;
}

.practice-screen-copy .eyebrow {
  margin: 0;
  color: var(--secondary);
}

.practice-screen-copy h3 {
  font-size: 1.32rem;
  line-height: 1.18;
}

.practice-screen-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.practice-metric {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(0, 18, 51, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 56px rgba(0, 18, 51, 0.08);
}

.practice-metric strong {
  font-size: 1.05rem;
}

.practice-metric span {
  color: var(--muted);
  line-height: 1.55;
}

.split-panel,
.spotlight-card {
  padding: 28px;
  border: 1px solid rgba(0, 18, 51, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 56px rgba(0, 18, 51, 0.08);
}

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

.page-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-footer-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-legal {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.intro-band,
.trust {
  color: var(--white);
  background: var(--primary);
}

.intro-band {
  background:
    linear-gradient(180deg, rgba(4, 102, 200, 0.16), rgba(4, 102, 200, 0) 24%),
    var(--primary);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading p,
.section-copy p {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 18px;
}

.feature-grid,
.steps,
.audience-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.pricing-group {
  display: grid;
  gap: 22px;
  margin-bottom: 34px;
}

.pricing-group-copy {
  max-width: 760px;
}

.pricing-group-copy h3 {
  font-size: 1.5rem;
  line-height: 1.3;
}

.pricing-group-copy p:last-child {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

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

.feature-card,
.step-card,
.price-card,
.contact-form,
.audience-card,
.institution-card {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.metric-icon,
.step-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  margin-bottom: 28px;
}

.icon-cyan {
  color: #06312c;
  background: var(--cyan);
}

.icon-amber {
  color: #3b2500;
  background: var(--amber);
}

.icon-coral {
  color: #3a0808;
  background: var(--coral);
}

.feature-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.visual-section {
  background: #eef6ff;
}

.visual-section .eyebrow,
.workflow .eyebrow,
.audience .eyebrow,
.pricing .eyebrow,
.final-cta .eyebrow,
.institution-card .eyebrow {
  color: var(--secondary);
}

.visual-section .section-heading p,
.workflow .section-heading p,
.audience .section-heading p,
.pricing .section-heading p,
.final-cta .section-copy p {
  color: var(--muted);
}

.showcase-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 54px;
  padding: 34px;
  color: var(--white);
  border: 1px solid rgba(0, 18, 51, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(93, 220, 202, 0.15), rgba(255, 191, 77, 0.08) 42%, rgba(255, 122, 112, 0.1)),
    var(--primary);
  box-shadow: var(--shadow);
}

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

.showcase-copy h3 {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1.08;
}

.showcase-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
  line-height: 1.7;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.showcase-tags span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px 24px;
}

.screen-shot {
  display: grid;
  gap: 16px;
  align-content: start;
}

.screen-shot > div {
  min-height: 156px;
}

.screen-shot h3 {
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.2;
}

.screen-shot p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.screen-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  padding-top: 38px;
  border: 1px solid rgba(0, 18, 51, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 18, 51, 0.16);
}

.screen-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 38px;
  background: #f3f7fb;
  border-bottom: 1px solid rgba(0, 18, 51, 0.08);
}

.screen-frame::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 18px 0 0 var(--amber), 36px 0 0 var(--cyan);
}

.screen-frame img {
  width: 100%;
  height: auto;
  border-top: 1px solid rgba(0, 18, 51, 0.04);
}

.screen-frame-large {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.product-stage {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 18, 51, 0.1);
  border-radius: 8px;
  background: var(--primary);
  box-shadow: var(--shadow);
}

.product-stage img {
  width: min(980px, 94%);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.floating-panel {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 190px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 16px;
  color: var(--white);
  background: rgba(0, 18, 51, 0.78);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.floating-panel small {
  color: rgba(255, 255, 255, 0.68);
}

.panel-top {
  top: 34px;
  left: 34px;
}

.panel-bottom {
  right: 34px;
  bottom: 34px;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(64, 201, 123, 0.18);
}

.workflow,
.pricing,
.audience {
  background: var(--white);
}

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

.step-card {
  min-height: 320px;
  padding: 26px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(0, 18, 51, 0.08);
  box-shadow: 0 20px 56px rgba(0, 18, 51, 0.08);
}

.step-number {
  color: var(--secondary);
  font-weight: 800;
}

.step-icon {
  margin-top: 44px;
  color: var(--white);
  background: var(--primary);
}

.step-card p,
.price-card p,
.audience-card p,
.final-cta p,
.institution-card p {
  color: var(--muted);
}

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

.faq {
  background: #eef6ff;
}

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

.faq-card {
  padding: 28px;
  border: 1px solid rgba(0, 18, 51, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 56px rgba(0, 18, 51, 0.08);
}

.faq-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.audience-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(0, 18, 51, 0.08);
  background: var(--white);
  box-shadow: 0 20px 56px rgba(0, 18, 51, 0.08);
}

.featured-audience {
  color: var(--white);
  background: linear-gradient(145deg, rgba(4, 102, 200, 0.96), rgba(0, 18, 51, 1));
}

.featured-audience p,
.featured-audience li {
  color: rgba(255, 255, 255, 0.82);
}

.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.detail-list li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  transform: translateY(-50%);
}

.compact li {
  font-size: 0.98rem;
}

.trust {
  background:
    linear-gradient(125deg, rgba(4, 102, 200, 0.28), rgba(0, 18, 51, 0) 44%),
    var(--primary);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 56px;
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-list svg {
  width: 46px;
  height: 46px;
  padding: 12px;
  border-radius: 8px;
  color: var(--primary);
  background: var(--cyan);
}

.trust-list p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-grid-teachers {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-grid-schools {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(0, 18, 51, 0.08);
  box-shadow: 0 20px 56px rgba(0, 18, 51, 0.08);
}

.price-card.featured {
  color: var(--white);
  background: var(--primary);
  transform: translateY(-16px);
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.price-card.featured li::before {
  background: var(--amber);
}

.price {
  margin: 6px 0 0;
  color: inherit;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.price span {
  color: currentColor;
  font-size: 1rem;
  opacity: 0.64;
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 8px;
  padding: 7px 10px;
  color: #241600;
  background: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
}

.institution-card {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 26px 28px;
  border: 1px solid rgba(0, 18, 51, 0.08);
  background: linear-gradient(180deg, #f5fbff, #edf5ff);
  box-shadow: 0 20px 56px rgba(0, 18, 51, 0.08);
}

.institution-card h3 {
  font-size: 1.55rem;
  line-height: 1.25;
}

.final-cta {
  color: var(--ink);
  background: var(--mint);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: start;
}

.cta-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.cta-notes span {
  border: 1px solid rgba(0, 18, 51, 0.1);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(0, 18, 51, 0.08);
  box-shadow: 0 20px 56px rgba(0, 18, 51, 0.1);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.demo-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(0, 18, 51, 0.1);
  border-radius: 8px;
  background: #f4f8fc;
}

.demo-toggle-button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.demo-toggle-button.is-active {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 10px 24px rgba(0, 18, 51, 0.18);
}

.demo-panel {
  display: none;
  gap: 18px;
}

.demo-panel.is-active {
  display: grid;
}

[hidden] {
  display: none !important;
}

.form-intro h3 {
  font-size: 1.24rem;
}

.form-intro p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

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

.full-span {
  grid-column: 1 / -1;
}

.contact-form label,
.contact-methods {
  display: grid;
  gap: 8px;
}

.contact-form label > span,
.contact-methods legend {
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 18, 51, 0.14);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f9fbff;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(4, 102, 200, 0.12);
}

.form-footnote {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status.is-success {
  color: #0d7a43;
}

.form-status.is-error {
  color: #b42318;
}

.verification-block {
  display: grid;
  gap: 10px;
}

.verification-label {
  display: block;
  font-weight: 700;
}

.verification-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.verification-refresh {
  min-width: 120px;
}

.contact-methods {
  margin: 0;
  padding: 0;
  border: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 18, 51, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  background: #f9fbff;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--secondary);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(24px, calc((100% - 1120px) / 2));
  color: rgba(255, 255, 255, 0.7);
  background: var(--primary);
}

.adabuild-support-page {
  min-height: 100vh;
  color: #f8fbff;
  background:
    linear-gradient(112deg, rgba(42, 233, 255, 0.16) 0%, rgba(42, 233, 255, 0) 31%),
    linear-gradient(246deg, rgba(255, 73, 239, 0.2) 0%, rgba(255, 73, 239, 0) 34%),
    linear-gradient(135deg, #030714 0%, #071439 54%, #1b0838 100%);
}

.adabuild-support-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 82%);
}

.adabuild-support-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100svh - 78px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(440px, 1.1fr);
  gap: 48px;
  align-items: start;
  padding: 54px 0 40px;
}

.adabuild-support-intro {
  display: grid;
  align-content: center;
  gap: 28px;
}

.adabuild-logo-lockup {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.adabuild-logo-lockup img {
  width: 128px;
  height: 128px;
  border-radius: 28px;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(42, 233, 255, 0.18);
}

.adabuild-kicker {
  margin: 0 0 10px;
  color: #36f1ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.adabuild-support-page h1,
.adabuild-support-page h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.adabuild-support-page h1 {
  margin: 0;
  font-size: 5.2rem;
  line-height: 0.94;
  overflow-wrap: normal;
  white-space: nowrap;
  text-shadow: 0 18px 56px rgba(0, 0, 0, 0.34);
}

.adabuild-support-page h2 {
  margin: 0;
  font-size: 2.9rem;
  line-height: 1.02;
}

.adabuild-support-copy {
  max-width: 560px;
  margin: 0;
  color: rgba(248, 251, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.72;
}

.adabuild-support-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 28px;
  background: rgba(4, 8, 26, 0.78);
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.adabuild-form-heading {
  margin-bottom: 22px;
}

.adabuild-support-form {
  display: grid;
  gap: 18px;
}

.adabuild-success-message {
  margin: 0 0 20px;
  border: 1px solid rgba(54, 241, 255, 0.28);
  border-radius: 8px;
  padding: 13px 14px;
  color: #bdfaff;
  background: rgba(54, 241, 255, 0.1);
  font-weight: 800;
}

.adabuild-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.adabuild-support-form label {
  display: grid;
  gap: 8px;
}

.adabuild-support-form label > span {
  color: rgba(248, 251, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 800;
}

.adabuild-support-form input,
.adabuild-support-form select,
.adabuild-support-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 13px 14px;
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  resize: vertical;
}

.adabuild-support-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(248, 251, 255, 0.76) 50%),
    linear-gradient(135deg, rgba(248, 251, 255, 0.76) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 20px,
    calc(100% - 14px) 20px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.adabuild-support-form option {
  color: #07111f;
}

.adabuild-support-form textarea {
  min-height: 132px;
  line-height: 1.55;
}

.adabuild-support-form input::placeholder {
  color: rgba(248, 251, 255, 0.45);
}

.adabuild-support-form input:focus,
.adabuild-support-form select:focus,
.adabuild-support-form textarea:focus {
  border-color: #36f1ff;
  box-shadow: 0 0 0 4px rgba(54, 241, 255, 0.16);
}

.adabuild-check-row {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  color: rgba(248, 251, 255, 0.78);
}

.adabuild-check-row input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 0;
  accent-color: #36f1ff;
}

.adabuild-submit-button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  padding: 14px 18px;
  color: #03101a;
  background: linear-gradient(135deg, #36f1ff 0%, #2685ff 48%, #f05cff 100%);
  box-shadow: 0 18px 46px rgba(38, 133, 255, 0.3);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.adabuild-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(240, 92, 255, 0.28);
}

.adabuild-submit-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.adabuild-secondary-button {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  color: rgba(248, 251, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  cursor: pointer;
}

.adabuild-verification-question {
  margin: 0;
  color: #36f1ff;
  font-size: 0.92rem;
  font-weight: 800;
}

.adabuild-support-form .verification-label {
  color: rgba(248, 251, 255, 0.88);
}

.adabuild-support-form .form-status {
  color: rgba(248, 251, 255, 0.64);
}

.adabuild-support-form .form-status.is-success {
  color: #bdfaff;
}

.adabuild-support-form .form-status.is-error {
  color: #ffb6ad;
}

.adabuild-form-note {
  margin: 0;
  color: rgba(248, 251, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.55;
}

.adabuild-support-footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 28px;
  color: rgba(248, 251, 255, 0.54);
  font-size: 0.88rem;
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.practice-screen-card.reveal {
  transform: translateY(0) scale(1);
}

.reveal-ready .practice-screen-card.reveal {
  transform: translateY(54px) scale(0.96);
  transition:
    opacity 760ms ease,
    transform 840ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 180ms ease;
}

.reveal-ready .practice-screen-card.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.practice-screen-card.reveal:nth-child(2) {
  transition-delay: 80ms;
}

.practice-screen-card.reveal:nth-child(3) {
  transition-delay: 160ms;
}

.practice-screen-card.reveal:nth-child(4) {
  transition-delay: 40ms;
}

.practice-screen-card.reveal:nth-child(5) {
  transition-delay: 120ms;
}

.practice-screen-card.reveal:nth-child(6) {
  transition-delay: 200ms;
}

@media (prefers-reduced-motion: reduce) {
  .practice-phone-frame,
  .practice-screen-card.reveal {
    transition: none;
  }

  .reveal-ready .practice-device-panel:not(.is-visible) .practice-phone-frame {
    opacity: var(--phone-opacity);
    transform:
      translate3d(var(--phone-x), var(--phone-y), 0)
      rotate(var(--phone-rotate))
      scale(var(--phone-scale));
  }
}

@media (max-width: 1180px) {
  .pricing-grid-teachers,
  .pricing-grid-schools {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .institution-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .hero-shell,
  .two-column,
  .contact-layout,
  .showcase-feature,
  .suite-grid,
  .product-shell,
  .admin-workflow-stack,
  .workflow-card,
  .split-band,
  .product-family-grid,
  .practice-feature-grid,
  .practice-screen-grid,
  .practice-metric-grid,
  .spotlight-grid,
  .screen-grid,
  .feature-grid,
  .steps,
  .audience-grid,
  .faq-grid,
  .pricing-grid-teachers,
  .pricing-grid-schools,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .account-access-actions {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 3.4rem;
  }

  .hero-side {
    justify-items: start;
  }

  .hero-stats {
    justify-content: flex-start;
  }

  .price-card.featured {
    transform: none;
  }

  .screen-shot > div {
    min-height: auto;
  }

  .practice-device-panel {
    align-content: start;
  }

  .practice-device-stage {
    width: min(520px, 100%);
    min-height: 500px;
    margin-top: 8px;
  }

  .practice-phone-frame-primary {
    --phone-x: -52px;
  }

  .practice-phone-frame-secondary {
    right: auto;
    left: calc(50% + 28px);
  }

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

  .workflow-card {
    padding: 24px;
  }

  .adabuild-support-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 38px;
  }

  .adabuild-support-intro {
    max-width: 720px;
  }

  .adabuild-support-page h1 {
    font-size: 5.2rem;
  }

  .adabuild-support-page h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .account-access {
    padding: 82px 16px 0;
  }

  .account-access-inner {
    padding-top: 0;
    padding-bottom: 4px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 8px;
    background: rgba(0, 18, 51, 0.96);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px;
  }

  .nav-dropdown-panel {
    position: static;
    width: 100%;
    display: none;
    margin-top: 6px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-dropdown.is-open .nav-dropdown-panel {
    display: grid;
  }

  .hero {
    min-height: 96svh;
    padding: 116px 20px 96px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 18, 51, 0.94) 0%, rgba(0, 18, 51, 0.72) 48%, rgba(0, 18, 51, 0.95) 100%);
  }

  .section-inner {
    width: min(100% - 32px, 1120px);
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .section-inner.account-access-inner {
    width: min(100% - 28px, 1120px);
    padding-top: 0;
    padding-bottom: 10px;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .subpage-hero h1 {
    font-size: 3.65rem;
  }

  .subpage-hero.practice-hero {
    padding-top: 96px;
  }

  .product-stage {
    min-height: 430px;
  }

  .practice-device-stage {
    width: min(430px, 100%);
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 18px;
  }

  .practice-phone-frame {
    width: min(220px, 56vw);
  }

  .practice-phone-frame-primary {
    --phone-x: -40px;
  }

  .practice-phone-frame-secondary {
    width: min(168px, 40vw);
    left: calc(50% + 10px);
  }

  .showcase-feature {
    padding: 22px;
  }

  .showcase-copy h3 {
    font-size: 2rem;
  }

  .screen-frame {
    padding-top: 34px;
  }

  .screen-frame::before {
    height: 34px;
  }

  .screen-frame::after {
    top: 13px;
  }

  .floating-panel {
    min-width: 146px;
  }

  .panel-top {
    top: 16px;
    left: 16px;
  }

  .panel-bottom {
    right: 16px;
    bottom: 16px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    white-space: normal;
  }

  .adabuild-support-shell {
    width: min(100% - 28px, 1180px);
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .adabuild-logo-lockup {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
  }

  .adabuild-logo-lockup img {
    width: 92px;
    height: 92px;
    border-radius: 20px;
  }

  .adabuild-support-page h1 {
    font-size: 4rem;
  }

  .adabuild-support-page h2 {
    font-size: 2.15rem;
  }

  .adabuild-support-panel {
    padding: 22px;
  }

  .adabuild-form-grid {
    grid-template-columns: 1fr;
  }

  .adabuild-support-footer {
    width: min(100% - 28px, 1180px);
  }
}

@media (max-width: 480px) {
  .account-access {
    padding: 78px 12px 0;
  }

  .section-inner.account-access-inner {
    width: min(100% - 20px, 1120px);
    padding-top: 0;
    padding-bottom: 8px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .subpage-hero h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .product-stage {
    min-height: 360px;
  }

  .practice-device-stage {
    min-height: 0;
    padding-top: 24px;
  }

  .practice-phone-frame-primary {
    --phone-x: -34px;
  }

  .practice-phone-frame-secondary {
    left: calc(50% + 6px);
    bottom: 18px;
  }

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

  .practice-screen-card {
    padding: 18px;
  }

  .practice-screen-frame {
    width: min(220px, 76vw);
  }

  .floating-panel {
    position: static;
    width: calc(100% - 32px);
    margin-top: 12px;
  }

  .adabuild-support-shell {
    width: min(100% - 20px, 1180px);
    gap: 24px;
  }

  .adabuild-logo-lockup {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  .adabuild-logo-lockup img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

  .adabuild-support-page h1 {
    font-size: 3.1rem;
  }

  .adabuild-support-page h2 {
    font-size: 1.9rem;
  }

  .adabuild-support-panel {
    padding: 18px;
  }

  .adabuild-submit-button {
    width: 100%;
  }

  .adabuild-support-footer {
    width: min(100% - 20px, 1180px);
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 20px;
  }
}
