@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600&family=Sora:wght@500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --primary: #4F46E5;
  --primary-2: #4338CA;
  --accent: #F59E0B;
  --bg: #0A0E1F;
  --surface: #161B33;
  --text: #F5F7FF;
  --muted: #9AA3C7;
  --success: #22C55E;
  --line: rgba(245, 247, 255, 0.12);
  --line-strong: rgba(79, 70, 229, 0.4);
  --shadow: 0 28px 90px rgba(3, 6, 20, 0.5);
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Sora", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  background:
    radial-gradient(circle at 16% 10%, rgba(79, 70, 246, 0.24), transparent 30%),
    radial-gradient(circle at 84% 8%, rgba(245, 158, 11, 0.14), transparent 24%),
    linear-gradient(135deg, #0A0E1F 0%, #0F1330 42%, #05070F 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(245, 247, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 247, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
  font-family: var(--font-display);
}

p {
  font-family: var(--font);
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h2 {
  max-width: 840px;
  font-size: clamp(2rem, 4.4vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.24;
}

.nav-shell {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 16px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 26px rgba(79, 70, 229, 0.36);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 14, 31, 0.72);
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: #cbd2f0;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(79, 70, 229, 0.2);
}

.nav-actions,
.hero__actions,
.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  font-family: var(--font-display);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.btn--small {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 11px;
  font-size: 0.9rem;
}

.btn--primary {
  color: #f5f7ff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 38px rgba(79, 70, 229, 0.34);
}

.btn--secondary,
.btn--ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(245, 247, 255, 0.055);
}

.btn--ghost {
  background: transparent;
}

.hero,
.proof-strip,
.section,
.final-cta,
.footer {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 56px 0 78px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--success);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 680px;
  margin-top: 24px;
  color: #cbd2f0;
  font-size: 1.14rem;
}

.hero__actions {
  margin-top: 30px;
}

.microcopy {
  margin-top: 14px;
  color: var(--muted);
}

.hero__visual {
  position: relative;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 8% -5% -7% 10%;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.32), rgba(245, 158, 11, 0.14));
  filter: blur(42px);
}

.browser {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(22, 27, 51, 0.92);
  box-shadow: var(--shadow);
}

.browser__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 247, 255, 0.04);
}

.browser__bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ef4444;
}

.browser__bar span:nth-child(2) {
  background: var(--accent);
}

.browser__bar span:nth-child(3) {
  background: var(--success);
}

.browser__bar strong {
  margin-left: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 470px;
}

.roster-panel,
.ops-panel {
  padding: 22px;
}

.roster-panel {
  border-right: 1px solid var(--line);
  background: rgba(22, 27, 51, 0.58);
}

.panel-head,
.enroll-row,
.roster-list li,
.branch-row,
.mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.panel-head p {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.connected {
  padding: 5px 9px;
  border-radius: 999px;
  color: #052e16;
  background: var(--success);
  font-size: 0.72rem;
  font-weight: 800;
}

.class-card {
  display: block;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 14, 31, 0.62);
}

.class-card span,
.class-card small,
.roster-list small,
.branch-row small,
.mini-ui span {
  color: var(--muted);
}

.class-card strong {
  display: block;
  margin: 6px 0 2px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

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

.roster-list li {
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(245, 247, 255, 0.045);
}

.roster-list strong {
  display: block;
}

.status-chip {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.status-chip--paid {
  color: #052e16;
  background: var(--success);
}

.status-chip--due {
  color: #451a03;
  background: var(--accent);
}

.ops-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: end;
  background:
    radial-gradient(circle at 50% 30%, rgba(245, 158, 11, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(22, 27, 51, 0.22), rgba(5, 7, 15, 0.82));
}

.live-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.22);
  color: #dfe1ff;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 600;
}

.live-badge span,
.rec-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  animation: pulse 1.4s infinite;
}

.branch-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.branch-row {
  padding: 13px 14px;
  border: 1px solid rgba(245, 247, 255, 0.18);
  border-radius: 14px;
  background: rgba(5, 7, 15, 0.72);
  backdrop-filter: blur(10px);
}

.branch-row strong {
  font-size: 1rem;
}

.plan-banner {
  position: relative;
  z-index: 1;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(5, 7, 15, 0.72);
  border: 1px solid rgba(245, 247, 255, 0.18);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.plan-banner strong {
  color: var(--accent);
}

.proof-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(22, 27, 51, 0.5);
}

.proof-strip p {
  color: #dfe1ff;
  font-weight: 700;
}

.proof-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.proof-strip span,
.chips span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #cbd2f0;
  background: rgba(245, 247, 255, 0.045);
  font-size: 0.86rem;
  font-weight: 700;
}

.section {
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head--wide {
  max-width: 900px;
}

.card-grid {
  display: grid;
  gap: 16px;
}

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

.problem-card,
.compact-features article,
.steps li,
.price-card,
.faq details,
blockquote {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(22, 27, 51, 0.55);
}

.problem-card,
.compact-features article,
.steps li,
blockquote {
  padding: 24px;
}

.icon {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  margin-bottom: 18px;
  padding: 0 9px;
  border-radius: 12px;
  color: #eef0ff;
  background: rgba(79, 70, 229, 0.24);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
}

.problem-card p,
.compact-features p,
.steps p,
.price-card p,
.faq p,
blockquote p,
.final-cta p,
.footer p,
.guardian-copy p,
.pricing-head p {
  margin-top: 10px;
  color: var(--muted);
}

.transition-line {
  margin-top: 24px;
  color: var(--success);
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 26px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(10, 14, 31, 0.58);
}

.feature-row--reverse {
  grid-template-columns: minmax(320px, 1.15fr) minmax(0, 0.85fr);
}

.feature-row--reverse > div:first-child {
  order: 2;
}

.feature-row p {
  margin-top: 12px;
  color: var(--muted);
}

.mini-ui {
  min-height: 260px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(22, 27, 51, 0.66);
}

.mini-head {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.mini-people {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mini-people li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 13px;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.14);
  list-style: none;
}

.mini-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.org-window {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 222px;
  border-radius: 16px;
  background:
    linear-gradient(rgba(79, 70, 229, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, 0.14) 1px, transparent 1px),
    #05070F;
  background-size: 34px 34px;
}

.org-window .rec-dot {
  position: absolute;
  top: 14px;
  left: 14px;
}

.org-score {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(10, 14, 31, 0.86);
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.org-score small {
  color: var(--success);
}

.org-alert {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--accent);
  color: #451a03;
  font-weight: 800;
}

.subject-row {
  display: grid;
  grid-template-columns: 1.6fr 0.6fr 0.7fr 0.9fr;
  gap: 8px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.subject-row--head {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.compact-features {
  margin-top: 12px;
}

.guardian-highlight {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 36px;
  align-items: center;
  padding: 52px;
  border: 1px solid rgba(79, 70, 229, 0.3);
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 24%, rgba(79, 70, 229, 0.22), transparent 34%),
    radial-gradient(circle at 38% 72%, rgba(245, 158, 11, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(22, 27, 51, 0.88), rgba(10, 14, 31, 0.9));
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0;
}

.guardian-demo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #05070F;
  box-shadow: var(--shadow);
}

.guardian-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.8rem;
}

.guardian-field {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 22px;
  min-height: 360px;
  align-content: center;
  background:
    radial-gradient(ellipse at center, rgba(79, 70, 229, 0.18), transparent 56%),
    linear-gradient(135deg, #1b1f45, #0a0e1f);
}

.guardian-card {
  padding: 16px;
  border: 1px solid rgba(245, 247, 255, 0.2);
  border-radius: 16px;
  background: rgba(5, 7, 15, 0.82);
}

.guardian-card span,
.guardian-card small {
  color: #cbd2f0;
  font-family: var(--mono);
  font-size: 0.78rem;
}

.guardian-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.35rem;
  font-family: var(--font-display);
}

.guardian-alert {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--accent);
  color: #451a03;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #eef0ff;
  background: var(--primary);
  font-weight: 800;
  font-family: var(--font-display);
}

.pricing-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.billing-toggle {
  display: inline-flex;
  min-width: max-content;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(245, 247, 255, 0.05);
}

.billing-toggle button {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
}

.billing-toggle button.is-active {
  color: #eef0ff;
  background: var(--primary);
}

.billing-toggle span {
  margin-left: 3px;
  font-size: 0.76rem;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.price-card--featured {
  border-color: rgba(79, 70, 229, 0.6);
  background: linear-gradient(180deg, rgba(79, 70, 229, 0.18), rgba(22, 27, 51, 0.62));
  box-shadow: 0 24px 70px rgba(79, 70, 229, 0.2);
  transform: translateY(-10px);
}

.badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(79, 70, 229, 0.4);
  border-radius: 999px;
  color: #c7cbff;
  font-size: 0.76rem;
  font-weight: 800;
}

.badge--hot {
  color: #451a03;
  background: var(--accent);
  border-color: var(--accent);
}

.price-card h3 {
  margin-top: 18px;
}

.price {
  margin-top: 12px;
  color: var(--text) !important;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: var(--font-display);
}

.price small {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.price-card .btn {
  width: 100%;
  margin-top: 20px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 20px;
  color: #cbd2f0;
  font-size: 0.94rem;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
}

.pricing-note {
  margin-top: 18px;
  color: var(--muted);
  text-align: center;
}

blockquote {
  margin: 0;
}

blockquote p {
  color: #dfe1ff;
  font-size: 1.02rem;
}

blockquote cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq summary {
  padding: 18px 20px;
  font-weight: 800;
  font-family: var(--font-display);
  cursor: pointer;
}

.faq summary::marker {
  color: var(--primary);
}

.faq p {
  padding: 0 20px 20px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 76px 42px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 20%, rgba(245, 158, 11, 0.18), transparent 28%),
    linear-gradient(135deg, #0A0E1F, #3730A3);
  text-align: center;
}

.final-cta h2,
.final-cta p {
  margin-right: auto;
  margin-left: auto;
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
}

.final-cta .hero__actions {
  justify-content: center;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(140px, 0.6fr));
  gap: 28px;
  padding: 52px 0 34px;
}

.footer__brand {
  max-width: 360px;
}

.footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer nav strong {
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.footer nav a,
.footer nav button,
.footer p a {
  color: var(--muted);
}

.footer nav button {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--text);
  background: var(--primary);
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.38);
  font-weight: 800;
  font-family: var(--font-display);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 22px;
}

.modal.is-open {
  display: grid;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 15, 0.78);
  backdrop-filter: blur(12px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.modal__panel h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(245, 247, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 800;
}

.modal__actions {
  margin-top: 24px;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .browser,
  .feature-row,
  .price-card,
  .guardian-demo {
    animation: lift-in 620ms ease both;
  }

  .feature-row:nth-child(2) {
    animation-delay: 90ms;
  }

  .feature-row:nth-child(3) {
    animation-delay: 160ms;
  }
}

@keyframes lift-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  .nav-shell {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .feature-row,
  .feature-row--reverse,
  .guardian-highlight,
  .pricing-head,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-row--reverse > div:first-child {
    order: 0;
  }

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

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

@media (max-width: 720px) {
  .nav-shell,
  .hero,
  .proof-strip,
  .section,
  .final-cta,
  .footer {
    width: min(100% - 28px, 1200px);
  }

  .nav-actions,
  .nav-shell > .brand {
    width: 100%;
  }

  .nav-actions .btn {
    flex: 1;
  }

  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
  }

  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .product-grid,
  .proof-strip,
  .card-grid--3,
  .steps,
  .pricing-grid,
  .guardian-card {
    grid-template-columns: 1fr;
  }

  .roster-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div {
    justify-content: flex-start;
  }

  .section {
    padding: 68px 0;
  }

  .guardian-highlight,
  .final-cta {
    padding: 34px 20px;
  }

  .hero__actions,
  .modal__actions {
    display: grid;
  }

  .hero__actions .btn,
  .modal__actions .btn {
    width: 100%;
  }

  .footer__bottom {
    display: grid;
  }
}
