:root {
  --orange: #ff6b35;
  --green: #096036;
  --blue: #0b45bd;
  --cream: #ebe6de;
  --cream-soft: #f6f1ea;
  --ink: #07110d;
  --muted: #66706a;
  --line: rgba(7, 17, 13, 0.09);
  --line-strong: rgba(7, 17, 13, 0.16);
  --white: #fffdf9;
  --dark: #07110d;
  --dark-soft: #0f1d17;
  --shadow: 0 18px 46px rgba(7, 17, 13, 0.09);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.46) 1px, transparent 1px),
    linear-gradient(rgba(255, 253, 249, 0.46) 1px, transparent 1px),
    radial-gradient(circle at 82% 8%, rgba(255, 107, 53, 0.08), transparent 30rem),
    radial-gradient(circle at 8% 26%, rgba(11, 69, 189, 0.07), transparent 28rem),
    linear-gradient(rgba(235, 230, 222, 0.72), rgba(235, 230, 222, 0.72)),
    var(--cream);
  background-size: 18px 18px, 18px 18px, auto, auto, auto, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  width: min(1240px, calc(100% - 32px));
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 253, 249, 0.12);
  border-radius: 999px;
  background: rgba(7, 17, 13, 0.86);
  box-shadow: 0 16px 42px rgba(7, 17, 13, 0.16);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 850;
}

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

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.logo-orange {
  fill: var(--orange);
}

.logo-blue {
  fill: var(--blue);
}

.logo-green {
  fill: var(--green);
}

.brand-text {
  max-width: 190px;
  color: var(--white);
  line-height: 1.04;
}

.desktop-nav,
.header-actions,
.hero-actions,
.card-actions,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav {
  justify-content: center;
}

.desktop-nav a,
.ghost-link,
.site-footer a {
  padding: 10px 8px;
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav a:hover,
.ghost-link:hover,
.site-footer a:hover {
  color: var(--white);
}

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

.button,
button {
  border: 0;
  cursor: pointer;
}

.button {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0 34%, rgba(255, 253, 249, 0.36) 48%, transparent 62% 100%);
  content: "";
  transform: translateX(-120%);
}

.button:hover,
.product-card button:hover,
.admin-table button:hover {
  transform: translateY(-2px);
}

.button:hover::after {
  animation: buttonSweep 760ms ease;
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(255, 107, 53, 0.2);
}

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

.button-small {
  min-height: 40px;
  padding-inline: 16px;
}

.text-action {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 253, 249, 0.22);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
}

.menu-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  background: currentColor;
}

.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 80;
  width: min(380px, 100%);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--green);
  color: var(--white);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-close {
  align-self: flex-end;
  font-size: 1.8rem;
}

.page {
  display: none;
  padding: 0 clamp(16px, 4vw, 56px) 60px;
}

.page-active {
  display: block;
}

.hero {
  width: min(1240px, 100%);
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin: 0 auto;
  padding: 128px 0 70px;
}

.hero-media {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  min-height: 590px;
  overflow: visible;
  border: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.76), rgba(255, 253, 249, 0.42)),
    linear-gradient(135deg, rgba(9, 96, 54, 0.16), rgba(11, 69, 189, 0.14)),
    rgba(255, 253, 249, 0.5);
  box-shadow: none;
}

.founder-visual {
  position: relative;
  min-height: 590px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  grid-template-rows: minmax(390px, 1fr) auto;
  gap: 16px;
  padding: 16px;
}

.founder-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-soft);
}

.founder-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(7, 17, 13, 0.74));
  content: "";
}

.founder-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 700ms ease, filter 700ms ease;
}

.founder-card:hover img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.035);
}

.founder-card-primary img {
  object-position: 50% 42%;
}

.founder-card-primary {
  box-shadow: 0 0 0 1px rgba(9, 96, 54, 0.12);
}

.founder-card-secondary {
  margin-top: 34px;
  box-shadow: 0 0 0 1px rgba(11, 69, 189, 0.12);
}

.founder-card-secondary img {
  object-position: 50% 38%;
}

.founder-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: var(--white);
}

.founder-card span,
.founder-note span {
  display: block;
  color: rgba(255, 253, 249, 0.74);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founder-card strong {
  display: block;
  max-width: 260px;
  margin-top: 8px;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.02;
}

.founder-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(9, 96, 54, 0.14);
  background: rgba(255, 253, 249, 0.72);
  color: var(--ink);
}

.founder-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: normal;
}

.founder-note span {
  color: var(--green);
}

.court-visual {
  position: absolute;
  inset: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 249, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 107, 53, 0.12), transparent 22%),
    linear-gradient(135deg, rgba(9, 96, 54, 0.62), rgba(11, 69, 189, 0.26)),
    var(--dark-soft);
}

.court-line {
  position: absolute;
  display: block;
  background: rgba(255, 253, 249, 0.42);
}

.court-line.baseline {
  right: 12%;
  bottom: 16%;
  left: 12%;
  height: 2px;
}

.court-line.service {
  top: 18%;
  bottom: 16%;
  left: 22%;
  width: 2px;
}

.court-line.center {
  top: 48%;
  right: 12%;
  left: 22%;
  height: 2px;
}

.ball-dot {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.13);
}

.dot-one {
  top: 24%;
  right: 22%;
}

.dot-two {
  right: 42%;
  bottom: 24%;
  background: rgba(255, 253, 249, 0.86);
}

.dot-three {
  top: 58%;
  left: 18%;
  background: rgba(255, 253, 249, 0.86);
}

.visual-card {
  position: absolute;
  border: 1px solid rgba(255, 253, 249, 0.12);
  border-radius: var(--radius);
  background: rgba(7, 17, 13, 0.68);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.visual-card span {
  display: block;
  color: rgba(255, 253, 249, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-card-main {
  right: 24px;
  bottom: 24px;
  width: min(260px, calc(100% - 48px));
  padding: 20px;
}

.visual-card-main strong {
  display: block;
  margin: 14px 0 4px;
  color: var(--orange);
  font-size: 3.4rem;
  line-height: 0.9;
}

.visual-card-main p {
  margin: 0;
  color: rgba(255, 253, 249, 0.78);
}

.visual-card-side {
  top: 24px;
  left: 24px;
  width: min(210px, calc(100% - 48px));
  padding: 16px;
}

.visual-card-side b {
  display: block;
  width: 72%;
  height: 8px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--orange);
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

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

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 720px;
  color: var(--green);
  font-size: clamp(2.55rem, 4.2vw, 4.35rem);
  font-weight: 720;
  line-height: 1;
  text-transform: uppercase;
}

h2 {
  max-width: 900px;
  color: var(--green);
  font-size: clamp(2rem, 3.55vw, 3.8rem);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
}

h3 {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.45vw, 1.5rem);
  font-weight: 760;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-copy,
.section-copy,
.subpage-hero p,
.community-strip p,
.product-card p,
.module-grid p,
.product-detail li,
.timeline li,
.creator-card p,
.article-grid span,
.site-footer p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
  margin-top: 34px;
}

.hero-metrics .metric-card {
  position: relative;
  min-height: 174px;
  display: grid;
  grid-template-rows: 16px 52px 34px 1fr;
  gap: 8px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(9, 96, 54, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.68);
  box-shadow: 0 16px 38px rgba(7, 17, 13, 0.05);
  animation: metricEnter 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.hero-metrics .metric-card:nth-child(2) {
  animation-delay: 100ms;
}

.hero-metrics .metric-card:nth-child(3) {
  animation-delay: 200ms;
}

.hero-metrics .metric-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--green);
  content: "";
}

.hero-metrics .metric-card:nth-child(2)::before {
  background: var(--blue);
}

.hero-metrics .metric-card:nth-child(3)::before {
  background: var(--orange);
}

.hero-metrics .metric-card::after {
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 126px;
  height: 126px;
  border: 16px solid rgba(9, 96, 54, 0.06);
  border-radius: 50%;
  content: "";
  transform: rotate(16deg);
}

.hero-metrics .metric-card:nth-child(2)::after {
  border-color: rgba(11, 69, 189, 0.07);
}

.hero-metrics .metric-card:nth-child(3)::after {
  border-color: rgba(255, 107, 53, 0.08);
}

.hero-metrics .metric-card:hover {
  border-color: rgba(9, 96, 54, 0.24);
  box-shadow: 0 20px 48px rgba(7, 17, 13, 0.08);
  transform: translateY(-5px);
}

.hero-metrics small,
.hero-metrics strong,
.hero-metrics span,
.hero-metrics p {
  position: relative;
  z-index: 1;
}

.hero-metrics small {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-metrics strong {
  display: flex;
  align-items: end;
  color: var(--green);
  font-size: clamp(2.05rem, 2.85vw, 3.05rem);
  font-weight: 680;
  line-height: 0.9;
  white-space: nowrap;
}

.hero-metrics span {
  display: block;
  align-self: start;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.22;
  text-transform: uppercase;
}

.hero-metrics p {
  align-self: start;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.38;
}

.trust-band {
  width: min(1240px, 100%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: -18px auto 0;
  padding: 10px;
  border: 1px solid rgba(9, 96, 54, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.44);
  backdrop-filter: blur(10px);
}

.trust-band span {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.62);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.trust-band span::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.trust-band span:nth-child(2)::before,
.trust-band span:nth-child(4)::before {
  background: var(--blue);
}

.trust-band span:nth-child(3)::before,
.trust-band span:nth-child(5)::before {
  background: var(--green);
}

.audience-section {
  position: relative;
  max-width: 1240px;
  margin-top: -8px;
  padding-top: clamp(46px, 6vw, 78px);
}

.audience-section::before {
  position: absolute;
  top: 28px;
  right: clamp(20px, 5vw, 82px);
  width: 170px;
  height: 170px;
  border: 22px solid rgba(11, 69, 189, 0.06);
  border-radius: 50%;
  content: "";
  animation: slowSpin 20s linear infinite;
}

.audience-heading {
  position: relative;
  z-index: 1;
}

.audience-heading > p {
  max-width: 550px;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.audience-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 16px;
  align-items: stretch;
}

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

.audience-card,
.audience-signal {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(9, 96, 54, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.76);
  box-shadow: 0 18px 48px rgba(7, 17, 13, 0.06);
}

.audience-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 26px;
  grid-column: span 3;
  padding: 24px;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.audience-card:hover {
  border-color: rgba(9, 96, 54, 0.26);
  box-shadow: 0 24px 58px rgba(7, 17, 13, 0.08);
  transform: translateY(-5px);
}

.audience-card::after {
  position: absolute;
  right: -30px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border: 18px solid rgba(9, 96, 54, 0.07);
  border-radius: 50%;
  content: "";
}

.audience-card span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
}

.audience-card h3,
.audience-card p,
.audience-card span {
  position: relative;
  z-index: 1;
}

.audience-card h3 {
  margin-top: clamp(30px, 3vw, 54px);
  color: var(--green);
  font-size: clamp(1.16rem, 1.65vw, 1.58rem);
}

.audience-card p {
  margin: -10px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.audience-card-primary {
  grid-column: span 6;
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(9, 96, 54, 0.08), rgba(255, 253, 249, 0.8)),
    var(--white);
}

.audience-card-primary h3 {
  max-width: 680px;
  margin-top: clamp(32px, 4vw, 54px);
  font-size: clamp(1.6rem, 2.8vw, 2.7rem);
}

.audience-card-primary p {
  max-width: 720px;
}

.audience-card-blue {
  border-color: rgba(11, 69, 189, 0.16);
}

.audience-card-blue span {
  background: var(--blue);
}

.audience-card-blue::after {
  border-color: rgba(11, 69, 189, 0.08);
}

.audience-card-orange {
  border-color: rgba(255, 107, 53, 0.2);
}

.audience-card-orange span {
  background: var(--orange);
}

.audience-card-orange::after {
  border-color: rgba(255, 107, 53, 0.1);
}

.audience-signal {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(11, 69, 189, 0.06), transparent 50%),
    rgba(255, 253, 249, 0.86);
}

.audience-signal h3 {
  color: var(--green);
  font-size: clamp(1.35rem, 2vw, 2.1rem);
}

.audience-signal ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.audience-signal li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.5;
}

.audience-signal li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.audience-signal .button {
  width: 100%;
  margin-top: auto;
}

.reveal.visible .audience-card,
.reveal.visible .audience-signal {
  animation: cardRise 720ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.reveal.visible .audience-card:nth-child(2) {
  animation-delay: 90ms;
}

.reveal.visible .audience-card:nth-child(3) {
  animation-delay: 180ms;
}

.reveal.visible .audience-card:nth-child(4) {
  animation-delay: 270ms;
}

.reveal.visible .audience-signal {
  animation-delay: 180ms;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(68px, 8vw, 104px) 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
}

.about-section {
  grid-template-columns: minmax(430px, 0.62fr) minmax(0, 1fr);
  align-items: start;
}

.about-heading h2 {
  max-width: 620px;
  font-size: clamp(2.45rem, 4.25vw, 4.8rem);
}

.about-section .section-copy {
  display: grid;
  gap: 22px;
}

.about-section .section-copy p {
  margin: 0;
}

.about-visual {
  position: relative;
  min-height: 310px;
  margin: 18px 0 0;
  overflow: hidden;
  border: 1px solid rgba(9, 96, 54, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(7, 17, 13, 0.07);
}

.about-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 36%, rgba(7, 17, 13, 0.66)),
    linear-gradient(90deg, rgba(9, 96, 54, 0.18), transparent 58%);
  content: "";
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: 50% 0%;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 700ms ease, filter 700ms ease;
}

.about-visual:hover img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.035);
}

.about-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: var(--white);
}

.about-visual span {
  color: rgba(255, 253, 249, 0.78);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-visual strong {
  max-width: 560px;
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  line-height: 1.1;
}

.section-heading {
  margin-bottom: 34px;
}

.row-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.problem-grid,
.product-grid,
.audience-grid,
.article-grid,
.module-grid,
.status-grid {
  display: grid;
  gap: 16px;
}

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

.problem-card {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 0;
  border-top: 3px solid var(--green);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 760;
  line-height: 1.18;
  text-transform: none;
  box-shadow: none;
}

.problem-card.blue {
  border-top-color: var(--blue);
}

.problem-card.orange {
  border-top-color: var(--orange);
}

.problem-card.green {
  border-top-color: var(--green);
}

.problem-card span {
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

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

.process article {
  min-height: 198px;
  padding: 22px;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
}

.process span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

.product-grid.wide,
.article-grid.wide {
  max-width: 1240px;
  margin: 0 auto;
}

.product-card,
.audience-grid article,
.article-grid article,
.module-grid article,
.product-detail,
.panel-section,
.status-grid article,
.login-panel,
.checkout-form,
.cart-panel {
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.product-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.product-card:hover,
.audience-grid article:hover,
.article-grid article:hover,
.module-grid article:hover {
  box-shadow: 0 18px 46px rgba(7, 17, 13, 0.07);
  transform: translateY(-5px);
}

.product-card.featured {
  background:
    linear-gradient(180deg, rgba(9, 96, 54, 0.05), transparent 46%),
    var(--white);
}

.product-card.featured h3,
.product-card.featured p,
.product-card.featured strong {
  color: inherit;
}

.tag {
  width: fit-content;
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  background: var(--cream-soft);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.featured .tag {
  border-color: rgba(9, 96, 54, 0.2);
  background: rgba(9, 96, 54, 0.08);
  color: var(--green);
}

.blue-tag {
  color: var(--blue);
}

.orange-tag {
  color: var(--orange);
}

.product-card p {
  margin: 0;
}

.product-card strong {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-size: 1.05rem;
}

.product-card button,
.card-actions button,
.admin-table button {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.card-actions {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.card-actions a {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.community-strip {
  max-width: 1240px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: clamp(24px, 5vw, 66px);
  align-items: end;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 54px);
  border-radius: var(--radius);
  border: 1px solid rgba(9, 96, 54, 0.14);
  background:
    linear-gradient(135deg, rgba(11, 69, 189, 0.08), transparent 44%),
    rgba(255, 253, 249, 0.76);
  color: var(--ink);
  box-shadow: none;
}

.community-strip h2,
.community-strip .eyebrow {
  color: var(--green);
}

.community-strip p {
  color: var(--muted);
}

.program-stats {
  display: grid;
  gap: 10px;
}

.program-stats span {
  padding: 12px 14px;
  border: 1px solid rgba(9, 96, 54, 0.14);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 253, 249, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.analysis-layout,
.checkout-layout,
.auth-layout {
  max-width: 1240px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 18px;
  margin: 0 auto 80px;
}

.analysis-section {
  position: relative;
}

.analysis-heading {
  max-width: 980px;
}

.analysis-intro {
  max-width: 820px;
  margin: -12px 0 30px;
  padding-left: 18px;
  border-left: 3px solid var(--orange);
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.analysis-system {
  max-width: 1240px;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1fr);
  gap: 18px;
  margin: 0 auto 80px;
  align-items: stretch;
}

.report-mockup {
  min-height: 100%;
  padding: 26px;
  border: 1px solid rgba(9, 96, 54, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.84)),
    var(--white);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(9, 96, 54, 0.08);
}

.report-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(9, 96, 54, 0.12);
}

.report-header span,
.report-header strong,
.analysis-flow span {
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.report-header span {
  color: var(--green);
}

.report-header strong {
  color: var(--blue);
}

.report-score {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin: 22px 0 24px;
  padding: 18px;
  border: 1px solid rgba(11, 69, 189, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(9, 96, 54, 0.08), rgba(11, 69, 189, 0.07)),
    rgba(235, 230, 222, 0.32);
}

.report-score span {
  max-width: 180px;
  color: var(--green);
  font-weight: 800;
  line-height: 1.25;
}

.report-score strong {
  color: var(--green);
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  font-weight: 720;
  line-height: 0.82;
}

.report-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
}

.report-row span {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.25;
}

.report-row b {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.report-row b::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 253, 249, 0.12), transparent);
  content: "";
}

.report-row:nth-of-type(2n) b {
  background: linear-gradient(90deg, var(--orange), var(--green));
}

.report-note {
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(9, 96, 54, 0.12);
  border-radius: 6px;
  background: rgba(235, 230, 222, 0.48);
  color: var(--green);
  font-weight: 780;
  line-height: 1.5;
}

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

.analysis-flow article {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(9, 96, 54, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.72);
  overflow: visible;
}

.analysis-flow article:nth-child(odd)::before {
  position: absolute;
  top: 42px;
  right: -15px;
  z-index: 2;
  width: 16px;
  height: 2px;
  background: rgba(9, 96, 54, 0.28);
  content: "";
}

.analysis-flow article::after {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border: 12px solid rgba(9, 96, 54, 0.08);
  border-radius: 50%;
  content: "";
}

.analysis-flow article:nth-child(2)::after {
  border-color: rgba(11, 69, 189, 0.1);
}

.analysis-flow article:nth-child(3)::after {
  border-color: rgba(255, 107, 53, 0.12);
}

.analysis-flow article:nth-child(4)::after {
  border-color: rgba(9, 96, 54, 0.11);
}

.analysis-flow span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
}

.analysis-flow article:nth-child(2) span {
  background: var(--blue);
}

.analysis-flow article:nth-child(3) span {
  background: var(--orange);
}

.analysis-flow h3 {
  margin-top: 38px;
  color: var(--green);
  font-size: 1.22rem;
}

.analysis-flow p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.timeline {
  margin: 0;
  padding: 26px 26px 26px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline li {
  margin: 14px 0;
}

.effects-section {
  position: relative;
  overflow: hidden;
}

.effects-heading {
  position: relative;
  z-index: 2;
}

.effects-heading > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.motion-clouds {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cloud {
  position: absolute;
  width: 220px;
  height: 64px;
  border: 1px solid rgba(9, 96, 54, 0.08);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.62);
  opacity: 0.82;
  animation: cloudDrift 18s ease-in-out infinite;
}

.cloud::before,
.cloud::after {
  position: absolute;
  border: 1px solid rgba(9, 96, 54, 0.08);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.72);
  content: "";
}

.cloud::before {
  left: 34px;
  bottom: 24px;
  width: 86px;
  height: 62px;
}

.cloud::after {
  right: 34px;
  bottom: 18px;
  width: 72px;
  height: 52px;
}

.cloud-one {
  top: 120px;
  right: 8%;
}

.cloud-two {
  top: 310px;
  left: 2%;
  width: 180px;
  height: 54px;
  opacity: 0.58;
  animation-duration: 22s;
  animation-delay: -8s;
}

.cloud-three {
  right: 22%;
  bottom: 44px;
  width: 160px;
  height: 48px;
  opacity: 0.5;
  animation-duration: 25s;
  animation-delay: -14s;
}

.benefit-list.benefit-mosaic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(104px, auto);
  gap: 14px;
}

.benefit-card {
  position: relative;
  min-height: 218px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(9, 96, 54, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.88), rgba(255, 253, 249, 0.68)),
    var(--white);
  box-shadow: 0 18px 48px rgba(7, 17, 13, 0.06);
  overflow: hidden;
  transform: none;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.benefit-card::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 68px;
  height: 18px;
  border-top: 3px solid rgba(9, 96, 54, 0.15);
  border-bottom: 3px solid rgba(9, 96, 54, 0.12);
  content: "";
  transform: skewX(-18deg);
}

.benefit-card::after {
  position: absolute;
  inset: auto -28px -36px auto;
  width: 150px;
  height: 150px;
  border: 18px solid rgba(9, 96, 54, 0.07);
  border-radius: 50%;
  content: "";
  animation: slowSpin 16s linear infinite;
}

.benefit-card:hover {
  border-color: rgba(9, 96, 54, 0.28);
  box-shadow: 0 24px 60px rgba(7, 17, 13, 0.09);
  transform: translateY(-6px);
}

.benefit-card span {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
}

.benefit-card h3,
.benefit-card p,
.benefit-card div {
  position: relative;
  z-index: 1;
}

.benefit-card div {
  display: grid;
  gap: 14px;
  margin-top: auto;
}

.benefit-card h3 {
  max-width: 460px;
  margin: 0;
  color: var(--green);
  font-size: clamp(1.12rem, 1.7vw, 1.62rem);
}

.benefit-card p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.benefit-card-large {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 340px;
}

.benefit-card-large div,
.benefit-card-tall div {
  margin-top: clamp(74px, 7vw, 128px);
}

.benefit-card-blue {
  grid-column: span 3;
  border-color: rgba(11, 69, 189, 0.16);
}

.benefit-card-blue span {
  background: var(--blue);
}

.benefit-card-blue::before {
  border-color: rgba(11, 69, 189, 0.16);
}

.benefit-card-blue::after {
  border-color: rgba(11, 69, 189, 0.08);
}

.benefit-card-wide {
  grid-column: span 4;
  background:
    linear-gradient(135deg, rgba(9, 96, 54, 0.08), rgba(255, 253, 249, 0.8)),
    var(--white);
}

.benefit-card-orange {
  grid-column: span 4;
  border-color: rgba(255, 107, 53, 0.2);
}

.benefit-card-orange span {
  background: var(--orange);
}

.benefit-card-orange::before {
  border-color: rgba(255, 107, 53, 0.18);
}

.benefit-card-orange::after {
  border-color: rgba(255, 107, 53, 0.1);
}

.benefit-card-tall {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 330px;
}

.benefit-card-compact {
  grid-column: span 5;
  min-height: 210px;
}

.reveal.visible .benefit-card {
  animation: cardRise 720ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.reveal.visible .benefit-card:nth-child(2) {
  animation-delay: 80ms;
}

.reveal.visible .benefit-card:nth-child(3) {
  animation-delay: 160ms;
}

.reveal.visible .benefit-card:nth-child(4) {
  animation-delay: 240ms;
}

.reveal.visible .benefit-card:nth-child(5) {
  animation-delay: 320ms;
}

.reveal.visible .benefit-card:nth-child(6) {
  animation-delay: 400ms;
}

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

.audience-grid article,
.article-grid article,
.module-grid article,
.product-detail {
  min-height: 220px;
  padding: 22px;
}

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

.audience-grid.audience-expanded .audience-card {
  min-height: 220px;
  grid-column: span 3;
  padding: 24px;
}

.audience-grid.audience-expanded .audience-card-primary {
  grid-column: span 6;
  min-height: 220px;
}

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

.creator-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
}

.creator-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.creator-card > div {
  padding: 24px;
}

.creator-card a,
.article-grid p {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.article-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.article-grid span {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(7, 17, 13, 0.08);
}

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

.faq-item {
  width: 100%;
  min-height: 68px;
  padding: 20px;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green);
  text-align: left;
  font-weight: 850;
}

.faq-item span {
  display: none;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 520;
  line-height: 1.55;
}

.faq-item.open span {
  display: block;
}

.final-cta {
  max-width: 1240px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  margin: 0 auto 88px;
  padding: clamp(32px, 6vw, 58px);
  border-radius: var(--radius);
  border: 1px solid rgba(9, 96, 54, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 107, 53, 0.08), transparent 42%),
    rgba(255, 253, 249, 0.78);
  color: var(--ink);
  box-shadow: none;
}

.final-cta h2,
.final-cta .eyebrow {
  color: var(--green);
}

.contact-form,
.login-panel,
.checkout-form {
  display: grid;
  gap: 14px;
}

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

.contact-form label:nth-of-type(4),
.contact-form .check,
.contact-form button,
.contact-form .form-status {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.final-cta label,
.dashboard label {
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(7, 17, 13, 0.14);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

.final-cta input,
.final-cta select,
.final-cta textarea,
.dashboard input,
.dashboard textarea {
  border-color: rgba(9, 96, 54, 0.14);
  background: var(--white);
  color: var(--ink);
}

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

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(11, 69, 189, 0.28);
  outline-offset: 2px;
}

.check {
  grid-template-columns: auto 1fr;
  align-items: center;
  color: var(--muted);
  text-transform: none;
}

.check input {
  width: 18px;
  height: 18px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.final-cta .form-status {
  color: var(--green);
}

.subpage-hero {
  max-width: 1240px;
  margin: 0 auto 34px;
  padding: 132px 0 46px;
}

.subpage-hero h1,
.auth-layout h1,
.checkout-layout h1 {
  max-width: 980px;
  color: var(--green);
}

.subpage-hero p {
  max-width: 760px;
  font-size: 1.06rem;
}

.community-hero,
.product-hero {
  padding: clamp(32px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.community-hero h1,
.product-hero h1 {
  color: var(--green);
}

.module-grid {
  max-width: 1240px;
  margin: 0 auto 36px;
}

.schedule {
  max-width: 1240px;
  margin: 0 auto 80px;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(9, 96, 54, 0.14);
  background: rgba(255, 253, 249, 0.76);
  color: var(--ink);
}

.schedule h2 {
  color: var(--green);
  font-size: clamp(2rem, 3.8vw, 4rem);
}

.schedule ol {
  columns: 2;
  line-height: 1.9;
}

.product-detail.accent {
  border: 1px solid rgba(11, 69, 189, 0.14);
  background: rgba(11, 69, 189, 0.06);
  color: var(--ink);
}

.product-detail.accent h2,
.product-detail.accent li {
  color: var(--ink);
}

.auth-layout,
.checkout-layout {
  padding-top: 132px;
  align-items: start;
}

.login-panel,
.checkout-form,
.cart-panel {
  padding: 24px;
}

.cart-panel {
  max-width: 820px;
  display: grid;
  gap: 18px;
  margin: 0 auto 80px;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.floating-cart {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
}

.floating-cart a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 13px 16px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.floating-cart strong {
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
}

.dashboard {
  max-width: 1240px;
  min-height: 700px;
  display: grid;
  grid-template-columns: 260px 1fr;
  margin: 116px auto 80px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(9, 96, 54, 0.14);
  background: rgba(255, 253, 249, 0.78);
  box-shadow: none;
}

.dashboard-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border-right: 1px solid rgba(9, 96, 54, 0.12);
  background: rgba(9, 96, 54, 0.06);
  color: var(--ink);
}

.mini-logo {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--orange);
  font-weight: 950;
}

.dashboard-side a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.dashboard-side a:hover {
  background: rgba(9, 96, 54, 0.08);
  color: var(--green);
}

.dashboard-main {
  padding: clamp(24px, 4vw, 44px);
  color: var(--ink);
}

.dashboard-main h1,
.panel-section h2 {
  color: var(--green);
}

.status-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 28px 0;
}

.status-grid article,
.panel-section {
  padding: 22px;
  border-color: rgba(9, 96, 54, 0.12);
  background: var(--white);
  box-shadow: none;
}

.status-grid article {
  min-height: 136px;
}

.status-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.status-grid strong {
  color: var(--green);
  font-size: clamp(1.16rem, 1.8vw, 1.8rem);
  line-height: 1.05;
}

.panel-section {
  margin-top: 14px;
}

.progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(9, 96, 54, 0.12);
  margin: 16px 0;
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
  transition: width 700ms ease;
}

.admin-table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(9, 96, 54, 0.12);
  border-radius: var(--radius);
}

.admin-table > div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-top: 1px solid rgba(9, 96, 54, 0.12);
  color: var(--muted);
}

.admin-table .table-head {
  border-top: 0;
  background: rgba(9, 96, 54, 0.08);
  color: var(--green);
  font-weight: 850;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto minmax(220px, 0.4fr);
  gap: 32px;
  align-items: start;
  padding: 48px clamp(18px, 4vw, 56px) 28px;
  border-top: 1px solid rgba(9, 96, 54, 0.14);
  background: rgba(255, 253, 249, 0.7);
  color: var(--ink);
}

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

.legal-note {
  max-width: 320px;
}

@keyframes buttonSweep {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

@keyframes cloudDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(34px, -10px, 0);
  }
}

@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes metricEnter {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .desktop-nav,
  .ghost-link,
  .header-actions .button-small {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .hero,
  .two-column,
  .audience-layout,
  .analysis-layout,
  .analysis-system,
  .checkout-layout,
  .auth-layout,
  .final-cta,
  .community-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-heading h2 {
    max-width: 880px;
  }

  .problem-grid,
  .product-grid,
  .audience-grid,
  .article-grid,
  .module-grid,
  .status-grid,
  .benefit-list.benefit-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .audience-grid.audience-expanded .audience-card,
  .audience-grid.audience-expanded .audience-card-primary {
    grid-column: span 1;
    min-height: 230px;
  }

  .benefit-card-large,
  .benefit-card-blue,
  .benefit-card-wide,
  .benefit-card-orange,
  .benefit-card-tall,
  .benefit-card-compact {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 250px;
  }

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

  .trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

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

  .dashboard-side {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 249, 0.12);
  }
}

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

  .page {
    padding-inline: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 42px;
  }

  .brand-text {
    max-width: 136px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-content,
  .hero-media {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-media {
    min-height: 620px;
    order: -1;
  }

  .founder-visual {
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
    grid-template-rows: minmax(430px, 1fr) auto;
    gap: 10px;
    padding: 10px;
  }

  .founder-card {
    min-height: 0;
  }

  .founder-card-secondary {
    margin-top: 28px;
  }

  .founder-card div {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

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

  .founder-note {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }

  h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.3rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .hero-actions,
  .row-heading,
  .site-footer,
  .contact-form {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

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

  .hero-metrics,
  .trust-band,
  .problem-grid,
  .product-grid,
  .audience-grid,
  .article-grid,
  .module-grid,
  .status-grid,
  .process,
  .analysis-flow,
  .benefit-list.benefit-mosaic {
    grid-template-columns: 1fr;
  }

  .hero-metrics .metric-card {
    min-height: auto;
    grid-template-rows: auto;
    gap: 8px;
  }

  .hero-metrics strong {
    min-height: 48px;
  }

  .audience-section {
    padding-top: 42px;
  }

  .audience-section::before {
    opacity: 0.5;
    transform: scale(0.72);
  }

  .audience-grid.audience-expanded {
    grid-template-columns: 1fr;
  }

  .audience-grid.audience-expanded .audience-card,
  .audience-grid.audience-expanded .audience-card-primary {
    grid-column: auto;
    min-height: auto;
  }

  .audience-card,
  .audience-signal {
    padding: 20px;
  }

  .cloud {
    opacity: 0.42;
    transform: scale(0.78);
  }

  .benefit-card-large,
  .benefit-card-blue,
  .benefit-card-wide,
  .benefit-card-orange,
  .benefit-card-tall,
  .benefit-card-compact {
    grid-column: auto;
    min-height: auto;
  }

  .benefit-card-large div,
  .benefit-card-tall div {
    margin-top: 34px;
  }

  .analysis-system {
    margin-bottom: 52px;
  }

  .report-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .analysis-flow article::before {
    display: none;
  }

  .product-card,
  .problem-card,
  .article-grid article,
  .module-grid article,
  .audience-grid article {
    min-height: auto;
  }

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

  .creator-card img {
    min-height: 300px;
  }

  .community-hero,
  .product-hero,
  .final-cta {
    padding: 28px;
  }

  .about-heading h2 {
    font-size: clamp(2rem, 9vw, 3.25rem);
  }

  .about-visual,
  .about-visual img {
    min-height: 260px;
  }

  .schedule ol {
    columns: 1;
  }

  .dashboard {
    margin-top: 106px;
  }

  .admin-table {
    overflow-x: auto;
  }

  .admin-table > div {
    min-width: 680px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cloud,
  .audience-section::before,
  .audience-card,
  .audience-signal,
  .benefit-card,
  .benefit-card::after,
  .hero-metrics .metric-card,
  .button::after,
  .reveal.visible .audience-card,
  .reveal.visible .audience-signal,
  .reveal.visible .benefit-card {
    animation: none !important;
  }

  .audience-card,
  .audience-signal,
  .hero-metrics .metric-card,
  .benefit-card {
    transform: none;
  }
}
