:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #171a18;
  background: #ffffff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --ink: #171a18;
  --muted: #616964;
  --line: #dfe4e0;
  --soft: #f5f7f5;
  --green: #157553;
  --green-dark: #0d563c;
  --green-soft: #e9f5ef;
  --coral: #d96551;
  --coral-soft: #fff0ed;
  --yellow: #d6a324;
  --yellow-soft: #fff7dd;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(23, 26, 24, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
}

body:has(.sheet-backdrop) {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
}

p {
  line-height: 1.65;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
}

.brand span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.brand strong {
  font-size: 18px;
}

.desktop-nav,
.header-cta {
  display: none;
}

.menu-button {
  margin-left: auto;
}

.icon-button {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: var(--green);
  color: var(--green);
}

.mobile-nav {
  position: absolute;
  top: 62px;
  left: 0;
  right: 0;
  display: grid;
  gap: 2px;
  padding: 12px 18px 18px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-nav > a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(21, 117, 83, 0.22);
  outline-offset: 2px;
}

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

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

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

.button.secondary:hover {
  border-color: var(--ink);
}

.button.light {
  background: var(--white);
  color: var(--green-dark);
}

.button.full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--green-dark);
  font-weight: 800;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 92px));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-image: url("/ic-academia-hero.png");
  background-size: cover;
  background-position: 62% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.78);
}

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

.eyebrow {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 8px;
  font-size: clamp(46px, 8vw, 78px);
}

.hero h2 {
  max-width: 630px;
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: clamp(27px, 5vw, 48px);
}

.hero-content > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 26px;
  color: #343a36;
  font-size: 17px;
}

.hero-actions {
  display: grid;
  gap: 10px;
}

.hero-trust {
  display: grid;
  gap: 9px;
  margin-top: 26px;
  color: #3f4842;
  font-size: 13px;
  font-weight: 700;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust .icon {
  color: var(--green);
}

.outcome-band {
  display: grid;
  background: var(--ink);
  color: var(--white);
}

.outcome-band > div {
  display: grid;
  gap: 5px;
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.outcome-band strong {
  font-size: 18px;
}

.outcome-band span {
  color: #c8cec9;
  font-size: 13px;
  line-height: 1.5;
}

.problem-section,
.roles-section,
.pricing-section,
.faq-section,
.super-section {
  padding: 72px 20px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.module-copy h2,
.super-copy h2,
.closing-section h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 5vw, 48px);
}

.section-heading > p:last-child,
.module-copy > p:last-of-type,
.super-copy > p {
  color: var(--muted);
}

.problem-section {
  display: grid;
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
}

.problem-list {
  border-top: 1px solid var(--ink);
}

.problem-list span,
.problem-list p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.problem-list span {
  display: block;
  padding-bottom: 0;
  border-bottom: 0;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.problem-list p {
  padding-top: 6px;
  font-weight: 720;
}

.module-band {
  padding: 64px 20px;
  border-top: 1px solid var(--line);
}

.module-band.alt {
  background: var(--soft);
}

.module-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 34px;
  align-items: center;
}

.module-copy {
  max-width: 560px;
}

.module-number {
  display: block;
  margin-bottom: 26px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.module-copy .text-link {
  margin-top: 12px;
}

.product-frame,
.tenant-console {
  width: 100%;
  min-width: 0;
  padding: 18px;
  background: var(--white);
  border: 1px solid #cfd6d1;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(23, 26, 24, 0.08);
}

.frame-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.frame-head span {
  color: var(--muted);
  font-size: 12px;
}

.student-row,
.tenant-row,
.product-line,
.class-slot,
.payment-method-row {
  min-width: 0;
  display: grid;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.student-row,
.tenant-row {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.student-row div,
.tenant-row div,
.product-line div,
.class-slot div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.student-row small,
.tenant-row small,
.product-line small,
.class-slot small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.avatar,
.tenant-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
}

.tenant-mark.coral {
  background: var(--coral-soft);
  color: #984131;
}

.tenant-mark.yellow {
  background: var(--yellow-soft);
  color: #805f0e;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.status.good {
  background: var(--green-soft);
  color: var(--green-dark);
}

.status.review {
  background: var(--yellow-soft);
  color: #73560d;
}

.status.danger {
  background: var(--coral-soft);
  color: #963f31;
}

.frame-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

.frame-foot strong {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--green-dark);
}

.class-slot {
  grid-template-columns: 52px minmax(0, 1fr) auto;
}

.class-slot time,
.class-slot > span {
  font-size: 12px;
  font-weight: 850;
}

.class-slot.active {
  margin: 0 -10px;
  padding: 14px 10px;
  background: var(--green-soft);
  border-bottom-color: transparent;
}

.capacity-line,
.event-progress {
  position: relative;
  height: 6px;
  margin: 16px 0 8px;
  overflow: hidden;
  background: #e4e8e5;
  border-radius: 999px;
}

.capacity-line span,
.event-progress span {
  display: block;
  width: var(--fill);
  height: 100%;
  background: var(--green);
}

.schedule-frame > small,
.event-info > small {
  color: var(--muted);
}

.revenue {
  display: grid;
  gap: 5px;
  padding: 20px 0;
}

.revenue span,
.revenue small {
  color: var(--muted);
}

.revenue strong {
  font-size: 36px;
}

.payment-method-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.payment-method-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.payment-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px;
  background: var(--yellow-soft);
  color: #6e530e;
  font-size: 12px;
  font-weight: 800;
}

.attendance-frame {
  display: grid;
  gap: 22px;
}

.qr-demo {
  width: min(100%, 190px);
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  padding: 14px;
  justify-self: center;
  background: #f2f4f2;
  border: 1px solid var(--line);
}

.qr-demo span {
  background: transparent;
}

.qr-demo .filled {
  background: var(--ink);
}

.attendance-copy h3 {
  margin: 14px 0 5px;
  font-size: 26px;
}

.attendance-copy p {
  margin-bottom: 16px;
  color: var(--muted);
}

.attendance-copy dl {
  margin: 0 0 18px;
}

.attendance-copy dl > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.attendance-copy dt {
  color: var(--muted);
}

.attendance-copy dd {
  margin: 0;
  font-weight: 800;
}

.small-command {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid var(--green);
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.event-frame {
  display: grid;
  gap: 22px;
}

.event-date {
  display: grid;
  align-content: start;
  gap: 4px;
  color: var(--coral);
}

.event-date strong {
  font-size: 48px;
  line-height: 1;
}

.event-date span {
  font-size: 11px;
  font-weight: 900;
}

.event-info h3 {
  margin: 14px 0 5px;
  font-size: 25px;
}

.event-info p,
.ticket-revenue span,
.ticket-revenue small {
  color: var(--muted);
}

.ticket-revenue {
  display: grid;
  align-content: start;
  gap: 5px;
  padding-top: 8px;
}

.ticket-revenue strong {
  font-size: 26px;
}

.product-line {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.product-swatch {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 6px;
}

.product-swatch.coral {
  background: var(--coral-soft);
  color: var(--coral);
}

.product-swatch.green {
  background: var(--green-soft);
  color: var(--green);
}

.product-swatch.yellow {
  background: var(--yellow-soft);
  color: #96700f;
}

.roles-section {
  background: var(--ink);
  color: var(--white);
}

.roles-section .eyebrow {
  color: #86d5b8;
}

.roles-section .section-heading > p:last-child {
  color: #c3cac5;
}

.role-matrix {
  max-width: 1020px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.role-matrix article {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.role-matrix article > span {
  color: #86d5b8;
  font-size: 11px;
  font-weight: 900;
}

.role-matrix h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.role-matrix p {
  margin: 0;
  color: #c3cac5;
  font-size: 13px;
}

.security-note {
  max-width: 1020px;
  display: flex;
  gap: 12px;
  margin: 28px auto 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #d8ddda;
  font-size: 13px;
  line-height: 1.55;
}

.security-note .icon {
  width: 22px;
  height: 22px;
  color: #86d5b8;
}

.super-section {
  display: grid;
  gap: 36px;
  max-width: 1180px;
  margin: 0 auto;
}

.super-copy ul,
.price-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.super-copy li,
.price-card li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.super-copy li .icon,
.price-card li .icon {
  color: var(--green);
}

.tenant-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 16px;
}

.tenant-summary div {
  display: grid;
  gap: 5px;
  padding: 12px;
  background: var(--soft);
}

.tenant-summary span {
  color: var(--muted);
  font-size: 11px;
}

.pricing-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.pricing-grid {
  max-width: 1100px;
  display: grid;
  gap: 14px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-card.recommended {
  border: 2px solid var(--green);
}

.recommend-label {
  align-self: flex-start;
  margin: -7px 0 14px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card > div:first-of-type {
  display: grid;
  gap: 7px;
}

.price-card > div:first-of-type > span {
  font-weight: 850;
}

.price-card > div:first-of-type > strong {
  margin-top: 10px;
  font-size: clamp(34px, 6vw, 48px);
}

.price-card small,
.price-card p {
  color: var(--muted);
}

.price-card p {
  min-height: 28px;
  margin: 18px 0 7px;
}

.saving {
  color: var(--green-dark);
}

.price-card ul {
  margin: 26px 0;
  font-size: 14px;
}

.price-card .button {
  margin-top: auto;
}

.payment-options {
  max-width: 760px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 22px;
  margin: 28px auto 0;
  padding: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.payment-options > span {
  width: 100%;
  color: var(--muted);
  text-align: center;
}

.payment-options strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.faq-section {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--muted);
}

.closing-section {
  padding: 72px 20px;
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
}

.closing-section .eyebrow {
  color: #9fe0c7;
}

.closing-section h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.closing-section p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 26px;
  color: #d4e8df;
}

footer {
  display: grid;
  gap: 20px;
  padding: 28px 20px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

footer .text-link {
  justify-self: start;
}

.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: rgba(14, 18, 15, 0.54);
  animation: fade-in 160ms ease-out;
}

.sheet {
  width: 100%;
  max-height: min(92svh, 850px);
  overflow-y: auto;
  padding: 10px 20px 28px;
  border-radius: 8px 8px 0 0;
  background: var(--white);
  box-shadow: var(--shadow);
  animation: sheet-up 190ms ease-out;
}

.sheet-handle {
  width: 44px;
  height: 4px;
  margin: 2px auto 14px;
  border-radius: 999px;
  background: #c5cbc7;
}

.sheet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.sheet-head h2 {
  margin: 0;
  font-size: 27px;
}

.form-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  margin-bottom: 18px;
  background: var(--green-soft);
}

.lead-form,
.lead-form label,
.lead-form fieldset,
.success-state {
  display: grid;
}

.lead-form {
  gap: 14px;
}

.lead-form label {
  gap: 7px;
  color: #353c37;
  font-size: 13px;
  font-weight: 800;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form label > input:not([type]) {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #bfc7c1;
  border-radius: 5px;
  background: var(--white);
}

.field-grid {
  display: grid;
  gap: 14px;
}

.lead-form fieldset {
  gap: 8px;
  margin: 2px 0;
  padding: 0;
  border: 0;
}

.lead-form legend {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 850;
}

.payment-choice {
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  min-height: 52px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.payment-choice:has(input:checked) {
  border-color: var(--green);
  background: var(--green-soft);
}

.payment-choice input {
  accent-color: var(--green);
}

.payment-choice span {
  display: grid;
  gap: 3px;
}

.payment-choice small,
.form-note {
  color: var(--muted);
  font-weight: 500;
}

.form-note {
  text-align: center;
  line-height: 1.5;
}

.success-state {
  justify-items: center;
  gap: 12px;
  padding: 20px 0;
  text-align: center;
}

.success-state > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 26px;
}

.success-state h2 {
  margin-bottom: 0;
  font-size: 30px;
}

.success-state p:not(.eyebrow) {
  color: var(--muted);
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes sheet-up {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (min-width: 640px) {
  .site-header {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-content,
  .problem-section,
  .roles-section,
  .pricing-section,
  .faq-section,
  .super-section,
  .module-band,
  .closing-section,
  footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-trust {
    grid-template-columns: repeat(3, minmax(0, max-content));
  }

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

  .outcome-band > div {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 0;
  }

  .problem-list {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .problem-list span {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
  }

  .problem-list p {
    padding: 20px 0;
  }

  .attendance-frame {
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: center;
  }

  .event-frame {
    grid-template-columns: 90px minmax(0, 1fr) minmax(130px, auto);
  }

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

  .price-card.recommended {
    transform: translateY(-8px);
  }

  footer {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
  }

  footer p {
    text-align: center;
  }

  .sheet-backdrop {
    align-items: center;
    padding: 24px;
  }

  .sheet {
    max-width: 660px;
    padding: 20px 28px 30px;
    border-radius: 8px;
  }

  .sheet-handle {
    display: none;
  }

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

@media (min-width: 900px) {
  .site-header {
    min-height: 68px;
    padding: 10px max(34px, calc((100vw - 1180px) / 2));
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
  }

  .desktop-nav a {
    color: #434a45;
    font-size: 13px;
    font-weight: 750;
  }

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

  .header-cta {
    display: inline-flex;
    margin-left: 8px;
  }

  .menu-button,
  .mobile-nav {
    display: none;
  }

  .hero {
    min-height: min(760px, calc(100svh - 106px));
    background-position: center;
  }

  .hero-shade {
    right: auto;
    width: 56%;
    background: rgba(255, 255, 255, 0.88);
  }

  .hero-content {
    width: min(54%, 720px);
    padding-left: max(44px, calc((100vw - 1180px) / 2));
    padding-right: 34px;
  }

  .outcome-band {
    padding-left: max(34px, calc((100vw - 1180px) / 2));
    padding-right: max(34px, calc((100vw - 1180px) / 2));
  }

  .problem-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    padding-top: 98px;
    padding-bottom: 98px;
  }

  .module-band {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .module-inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
    gap: 72px;
  }

  .module-inner.reverse .module-copy {
    order: 2;
  }

  .module-inner.reverse .product-frame {
    order: 1;
  }

  .roles-section,
  .pricing-section,
  .faq-section,
  .super-section,
  .closing-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .role-matrix article {
    grid-template-columns: 45px minmax(0, 1fr) auto;
  }

  .role-matrix article > div {
    display: grid;
    grid-template-columns: minmax(190px, 0.55fr) minmax(0, 1fr);
    align-items: center;
    gap: 30px;
  }

  .role-matrix h3,
  .role-matrix p {
    margin: 0;
  }

  .super-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
    align-items: center;
    gap: 72px;
  }

  .faq-section {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
