:root {
  --ink: #101828;
  --muted: #667085;
  --paper: #fbfcf8;
  --white: #fff;
  --line: #dde5ea;
  --teal: #079782;
  --teal-dark: #066b5c;
  --gold: #f2b84b;
  --coral: #ec6c5b;
  --blue: #315fba;
  --dark: #111f25;
  --soft-green: #e9f6f3;
  --soft-yellow: #fff2d3;
  --soft-blue: #eef3ff;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(233, 246, 243, 0.58), rgba(251, 252, 248, 0) 420px),
    var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

.home-page {
  padding-bottom: 86px;
}

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

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

figure {
  margin: 0;
}

.topbar {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 16, 22, 0.84);
  backdrop-filter: blur(18px);
}

.topbar.solid {
  color: var(--ink);
  background: rgba(251, 252, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #182d63;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.solid .brand-mark {
  background: #182d63;
  border: 1px solid var(--line);
  box-shadow: none;
}

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

.nav {
  counter-reset: nav-item;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(223, 253, 244, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(223, 253, 244, 0.08), rgba(242, 184, 75, 0.035)),
    rgba(255, 255, 255, 0.055);
  font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.solid .nav {
  color: var(--muted);
  border-color: rgba(16, 24, 40, 0.08);
  background:
    linear-gradient(135deg, rgba(7, 151, 130, 0.06), rgba(242, 184, 75, 0.04)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.06);
}

.nav a {
  counter-increment: nav-item;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.solid .nav a {
  color: #52616b;
}

.nav a::before {
  content: "0" counter(nav-item);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  color: rgba(223, 253, 244, 0.88);
  background: rgba(223, 253, 244, 0.08);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(223, 253, 244, 0.16);
}

.solid .nav a::before {
  color: var(--teal-dark);
  background: rgba(7, 151, 130, 0.08);
  box-shadow: inset 0 0 0 1px rgba(7, 151, 130, 0.14);
}

.nav a::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 10px 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a:hover {
  color: var(--white);
  border-color: rgba(223, 253, 244, 0.2);
  background: rgba(223, 253, 244, 0.08);
  transform: translateY(-1px);
}

.solid .nav a:hover {
  color: var(--ink);
  border-color: rgba(7, 151, 130, 0.16);
  background: rgba(7, 151, 130, 0.07);
}

.nav a:hover::after,
.nav a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav a.is-current {
  color: #fff;
  border-color: rgba(223, 253, 244, 0.24);
  background:
    radial-gradient(circle at 50% 0, rgba(223, 253, 244, 0.18), transparent 70%),
    rgba(255, 255, 255, 0.09);
}

.solid .nav a.is-current {
  color: var(--teal-dark);
  border-color: rgba(7, 151, 130, 0.18);
  background:
    radial-gradient(circle at 50% 0, rgba(7, 151, 130, 0.14), transparent 72%),
    rgba(7, 151, 130, 0.08);
}

.nav-cta,
.nav-home,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav-cta {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.nav-home {
  min-height: 40px;
  padding: 0 15px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.solid .nav-cta {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.solid .nav-home {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

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

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 18, 24, 0.88), rgba(8, 18, 24, 0.58) 42%, rgba(8, 18, 24, 0.1)),
    url("assets/site/custom/hero-storefront-sign.jpg");
  background-size: cover;
  background-position: center 28%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(251, 252, 248, 0), var(--paper));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(210px, 280px);
  column-gap: clamp(24px, 5vw, 72px);
  align-items: end;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 108px 0 44px;
}

.hero-inner > :not(.hero-proof) {
  grid-column: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: #ddfff7;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(48px, 7.2vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(28px, 3.7vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button-primary {
  color: #17202a;
  background: var(--gold);
  box-shadow: 0 18px 48px rgba(242, 184, 75, 0.28);
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 56px rgba(242, 184, 75, 0.34);
}

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

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.arrow {
  width: 18px;
  height: 18px;
  position: relative;
}

.arrow::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 1px;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.arrow::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 1px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.hero-proof,
.stat-grid,
.card-grid,
.support-grid,
.loop-grid,
.policy-grid {
  display: grid;
  gap: 14px;
}

.hero-proof {
  grid-column: 2;
  grid-row: 1 / span 5;
  grid-template-columns: 1fr;
  max-width: 280px;
  margin-top: 0;
}

.proof-pill {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(9, 26, 31, 0.58);
  backdrop-filter: blur(16px);
}

.proof-pill strong {
  display: block;
  color: var(--gold);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.proof-pill span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

section {
  padding: 84px clamp(18px, 4vw, 56px);
}

.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.kicker {
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.lead {
  max-width: 800px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

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

.stat-card,
.info-card,
.feature-card,
.timeline-card,
.policy-card,
.loop-card,
.quote-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.stat-card {
  min-height: 178px;
  padding: 24px;
}

.stat-card:nth-child(1) {
  background: var(--soft-green);
}

.stat-card:nth-child(2) {
  background: var(--soft-yellow);
}

.stat-card:nth-child(3) {
  background: var(--soft-blue);
}

.stat-card:nth-child(4) {
  background: #ffece8;
}

.stat-card strong {
  display: block;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.stat-card b {
  display: block;
  margin-top: 12px;
  font-size: 18px;
}

.stat-card p,
.info-card p,
.feature-card p,
.timeline-card p,
.policy-card p,
.loop-card p,
.quote-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.home-credential-section {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
  padding-bottom: 92px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 20, 24, 0.96), rgba(18, 42, 50, 0.94)),
    url("assets/site/bigcamp/classroom-wide.jpg");
  background-position: center;
  background-size: cover;
}

.home-credential-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 184, 75, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 42%);
  pointer-events: none;
}

.home-credential-section .wrap {
  position: relative;
  z-index: 1;
}

.home-credential-section .kicker {
  color: #ddfff7;
}

.home-credential-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: end;
}

.home-credential-head h2 {
  max-width: 760px;
}

.home-credential-head .lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.authority-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.authority-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(221, 255, 247, 0.22);
  border-radius: 999px;
  color: #ddfff7;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.home-data-row,
.data-metrics {
  display: grid;
  gap: 12px;
}

.home-data-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.home-data-row article {
  min-height: 138px;
  padding: 22px;
  border: 1px solid rgba(221, 255, 247, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.home-data-row b {
  display: block;
  color: var(--gold);
  font-size: clamp(31px, 4.8vw, 58px);
  line-height: 1;
}

.home-data-row span {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 900;
}

.home-credential-grid {
  display: grid;
  grid-template-columns: 1.28fr repeat(2, minmax(0, 0.86fr));
  gap: 14px;
  margin-top: 16px;
}

.home-credential-card {
  display: grid;
  grid-template-rows: 178px 1fr;
  min-height: 318px;
  overflow: hidden;
  border: 1px solid rgba(221, 255, 247, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.home-credential-card.featured {
  grid-row: span 2;
  grid-template-rows: 430px 1fr;
  min-height: 648px;
}

.home-credential-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  background:
    linear-gradient(135deg, #f9fbf9, #eef5f2);
}

.home-credential-card.featured img {
  padding: 24px;
}

.home-credential-card div {
  padding: 20px;
}

.home-credential-card small,
.endorsement-card small,
.endorsement-story small {
  color: var(--coral);
  font-weight: 900;
}

.home-credential-card h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
}

.home-credential-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.home-trust-wall {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(238, 243, 255, 0.82), rgba(255, 242, 211, 0.62) 44%, rgba(233, 246, 243, 0.9));
}

.home-trust-wall::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.54), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(251, 252, 248, 0.72));
  pointer-events: none;
}

.home-trust-wall .wrap {
  position: relative;
  z-index: 1;
}

.home-trust-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) auto;
  gap: 28px;
  align-items: end;
}

.home-trust-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 0.82fr;
  gap: 14px;
  margin-top: 36px;
}

.home-trust-panel {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(7, 151, 130, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 58px rgba(16, 24, 40, 0.1);
}

.home-trust-panel small {
  color: var(--coral);
  font-weight: 900;
}

.home-trust-panel h3 {
  margin: 14px 0 0;
  font-size: clamp(27px, 3.1vw, 38px);
  line-height: 1.12;
}

.home-trust-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.home-school-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 12px;
  margin-top: 26px;
}

.home-school-logos span {
  display: grid;
  justify-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.home-school-logos img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.home-expert-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.home-expert-row figure {
  overflow: hidden;
  border-radius: 8px;
  background: #eef3ff;
}

.home-expert-row img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  object-position: center top;
}

.home-expert-row figcaption {
  padding: 9px 6px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.home-media-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.home-media-list span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(16, 24, 40, 0.1);
  color: var(--muted);
  line-height: 1.35;
}

.home-media-list b {
  color: var(--ink);
  font-size: 19px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;
  color: var(--teal-dark);
  font-weight: 900;
}

.inline-link:hover {
  color: var(--coral);
}

.data-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 12px;
}

.data-metrics article {
  padding: 18px 20px;
  border: 1px solid rgba(7, 151, 130, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.data-metrics b {
  display: block;
  color: var(--teal-dark);
  font-size: 28px;
  line-height: 1.1;
}

.data-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.authority-section {
  background:
    linear-gradient(135deg, rgba(17, 31, 37, 0.04), rgba(7, 151, 130, 0.08)),
    var(--white);
}

.endorsement-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 38px;
}

.endorsement-hero-card,
.endorsement-story,
.endorsement-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.08);
}

.endorsement-hero-card {
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 390px;
  padding: 22px;
  background: linear-gradient(135deg, #fbfcf8, #edf5f2);
}

.endorsement-hero-card img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.endorsement-text-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(7, 151, 130, 0.22), rgba(242, 184, 75, 0.12)),
    var(--dark);
}

.endorsement-text-card small {
  color: var(--gold);
}

.endorsement-text-card h3 {
  max-width: 620px;
  margin: 14px 0 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
}

.endorsement-text-card .endorsement-tags span {
  color: #ddfff7;
}

.endorsement-story {
  padding: 32px;
  background: var(--dark);
  color: var(--white);
}

.endorsement-story h3 {
  margin: 12px 0 0;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.12;
}

.endorsement-story p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.78;
}

.endorsement-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.endorsement-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(221, 255, 247, 0.2);
  border-radius: 999px;
  color: #ddfff7;
  font-size: 13px;
  font-weight: 900;
}

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

.endorsement-card {
  overflow: hidden;
  min-height: 260px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.endorsement-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 151, 130, 0.32);
  box-shadow: 0 22px 56px rgba(16, 24, 40, 0.13);
}

.endorsement-card img {
  width: 100%;
  height: 188px;
  object-fit: contain;
  padding: 16px;
  background: #f4f8f5;
}

.endorsement-card div {
  padding: 20px;
}

.endorsement-card h3 {
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.28;
}

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

.section-head-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 32px;
  align-items: end;
}

.section-head-row .lead {
  margin: 0;
}

.school-wall-section {
  background: var(--white);
}

.school-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.school-card {
  min-height: 142px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf8;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.school-card:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 151, 130, 0.32);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.1);
}

.school-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.school-card b {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
}

.expert-section {
  background:
    linear-gradient(135deg, rgba(233, 246, 243, 0.86), rgba(238, 243, 255, 0.82));
}

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

.expert-card {
  overflow: hidden;
  border: 1px solid rgba(7, 151, 130, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.08);
}

.expert-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center top;
  background: #eef3ff;
}

.expert-card div {
  padding: 22px;
}

.expert-card small {
  color: var(--coral);
  font-weight: 900;
}

.expert-card h3 {
  margin: 10px 0 0;
  font-size: 24px;
}

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

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  margin-top: 42px;
  align-items: stretch;
}

.media-card {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(16, 24, 40, 0.08);
}

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

.stack {
  display: grid;
  gap: 14px;
}

.info-card,
.feature-card {
  padding: 24px;
}

.info-card b,
.feature-card b {
  display: block;
  font-size: 20px;
}

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

.dark-band .kicker {
  color: #ddfff7;
}

.dark-band .lead,
.dark-band .info-card p,
.dark-band .feature-card p,
.dark-band .loop-card p,
.dark-band .policy-card p {
  color: rgba(255, 255, 255, 0.7);
}

.dark-band .info-card,
.dark-band .feature-card,
.dark-band .loop-card,
.dark-band .policy-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

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

.feature-card {
  min-height: 220px;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

a.feature-card {
  cursor: pointer;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(7, 151, 130, 0.08);
  transition: transform 180ms ease, background 180ms ease;
}

a.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 151, 130, 0.38);
  box-shadow: 0 22px 54px rgba(16, 24, 40, 0.13);
}

a.feature-card:hover::after {
  transform: scale(1.18);
  background: rgba(242, 184, 75, 0.16);
}

.feature-card small,
.timeline-card small,
.policy-card small {
  color: var(--coral);
  font-weight: 900;
}

.feature-card h3,
.timeline-card h3,
.policy-card h3,
.loop-card h3 {
  margin: 16px 0 0;
  font-size: 24px;
  line-height: 1.22;
}

.card-action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--teal-dark);
  font-weight: 900;
}

.card-action .arrow {
  width: 16px;
  height: 16px;
}

.product-system-grid {
  display: grid;
  grid-template-columns: 1.18fr repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.system-card {
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(16, 24, 40, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.system-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.system-card:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 151, 130, 0.32);
  box-shadow: 0 24px 64px rgba(16, 24, 40, 0.13);
}

.system-card small {
  color: var(--coral);
  font-weight: 900;
}

.system-card h3 {
  margin: 18px 0 0;
  font-size: 28px;
  line-height: 1.16;
}

.system-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.system-card > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--teal-dark);
  font-weight: 900;
}

.system-card-dark {
  min-height: 330px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(17, 31, 37, 0.9), rgba(17, 31, 37, 0.72)),
    url("assets/site/bigcamp/storefront-night.jpg");
  background-position: center;
  background-size: cover;
}

.system-card-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.system-card-dark > span {
  color: #ddfff7;
}

.candidate-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(242, 184, 75, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(238, 243, 255, 0.92), rgba(233, 246, 243, 0.72));
}

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

.candidate-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(7, 151, 130, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.09);
}

.candidate-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.candidate-card h3 {
  margin: 22px 0 0;
  font-size: 26px;
}

.candidate-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.candidate-card a,
.delivery-grid article,
.fit-grid article,
.toolkit-list article {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.candidate-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--teal-dark);
  font-weight: 900;
}

.candidate-card a:hover {
  color: var(--coral);
}

.brand-console {
  padding-bottom: 26px;
}

.decision-panel {
  position: relative;
  z-index: 3;
  margin-top: -42px;
  padding-top: 0;
  padding-bottom: 52px;
}

.decision-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 64px rgba(16, 24, 40, 0.13);
}

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

.decision-grid article {
  min-height: 138px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.decision-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 151, 130, 0.32);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.1);
}

.decision-grid strong {
  display: block;
  color: var(--teal-dark);
  font-size: 26px;
  line-height: 1.1;
}

.decision-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.homepage-brand-strip {
  padding-top: 0;
  padding-bottom: 26px;
}

.brand-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(7, 151, 130, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 42px rgba(16, 24, 40, 0.07);
}

.brand-strip-inner span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(17, 31, 37, 0.08);
  border-radius: 999px;
  color: var(--ink);
  background: #fbfcf8;
  font-size: 14px;
  font-weight: 900;
}

.evidence-strip {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 44px;
}

.evidence-strip h2 {
  font-size: clamp(30px, 3vw, 40px);
}

.evidence-wrap {
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  gap: 28px;
  align-items: end;
}

.evidence-cards,
.mini-photo-grid,
.proof-photo-row {
  display: grid;
  gap: 14px;
}

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

.evidence-editorial {
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.82fr);
  grid-auto-rows: 220px;
}

.evidence-editorial .evidence-main {
  grid-row: span 2;
}

.evidence-card,
.mini-photo-grid figure,
.proof-photo-row figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(16, 24, 40, 0.11);
}

.evidence-card img,
.mini-photo-grid img,
.proof-photo-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evidence-card {
  min-height: 260px;
}

.evidence-editorial .evidence-card {
  min-height: 0;
}

.evidence-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, rgba(8, 18, 24, 0), rgba(8, 18, 24, 0.84));
}

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

.evidence-card b,
.mini-photo-grid figcaption,
.proof-photo-row figcaption {
  display: block;
  font-weight: 900;
}

.evidence-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.55;
}

.compact-evidence {
  padding-bottom: 28px;
}

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

.mini-photo-grid figure,
.proof-photo-row figure {
  aspect-ratio: 16 / 10;
}

.mini-photo-grid figcaption,
.proof-photo-row figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(8, 18, 24, 0.72);
  backdrop-filter: blur(10px);
  font-size: 13px;
}

.proof-photo-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.shop-card {
  padding: 0;
}

.shop-card img {
  width: 100%;
  height: 176px;
  object-fit: cover;
}

.shop-card small,
.shop-card h3,
.shop-card p {
  display: block;
  margin-left: 24px;
  margin-right: 24px;
}

.shop-card small {
  margin-top: 22px;
}

.shop-card p {
  margin-bottom: 24px;
}

.compare-table,
.data-table {
  display: grid;
  gap: 0;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.08);
}

.compare-row,
.table-row {
  display: grid;
  border-top: 1px solid var(--line);
}

.compare-row:first-child,
.table-row:first-child {
  border-top: 0;
}

.compare-row {
  grid-template-columns: 0.75fr 1.15fr 1.35fr;
}

.table-row {
  grid-template-columns: 0.75fr 0.85fr 1.15fr 1.25fr;
}

.compare-row span,
.table-row span {
  padding: 18px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.65;
}

.compare-row span:first-child,
.table-row span:first-child {
  border-left: 0;
  color: var(--ink);
  font-weight: 900;
}

.compare-head,
.table-head {
  background: #f3f8f7;
}

.compare-head span,
.table-head span {
  color: var(--ink);
  font-weight: 900;
}

.compare-row span:nth-child(3) {
  color: var(--teal-dark);
  background: rgba(233, 246, 243, 0.38);
}

.table-row b {
  color: var(--teal-dark);
  font-size: 18px;
}

.policy-note {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(7, 151, 130, 0.22);
  border-radius: 8px;
  background: var(--soft-green);
}

.policy-note b {
  color: var(--teal-dark);
  font-size: 22px;
}

.policy-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.delivery-wrap,
.toolkit-wrap {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 34px;
  align-items: start;
}

.delivery-grid,
.toolkit-list,
.fit-grid {
  display: grid;
  gap: 14px;
}

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

.delivery-grid article,
.toolkit-list article,
.fit-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

.delivery-grid article:hover,
.toolkit-list article:hover,
.fit-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 151, 130, 0.28);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.1);
}

.delivery-grid b,
.toolkit-list b,
.fit-grid b {
  display: block;
  font-size: 20px;
}

.delivery-grid span,
.toolkit-list span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.7;
}

.fit-section {
  background: linear-gradient(135deg, rgba(255, 242, 211, 0.74), rgba(255, 255, 255, 0.88));
}

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

.fit-grid article {
  min-height: 172px;
  background: rgba(255, 255, 255, 0.84);
}

.fit-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.sop-section {
  background:
    linear-gradient(135deg, rgba(238, 243, 255, 0.82), rgba(255, 242, 211, 0.7));
}

.sop-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.sop-board article,
.ops-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 42px rgba(16, 24, 40, 0.08);
}

.sop-board article {
  padding: 22px;
}

.sop-board small {
  color: var(--coral);
  font-weight: 900;
}

.sop-board h3 {
  margin: 14px 0 0;
  font-size: 22px;
}

.sop-board p,
.ops-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.sop-board b {
  display: block;
  margin-top: 16px;
  color: var(--teal-dark);
}

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

.ops-grid article {
  padding: 22px;
}

.ops-grid b {
  font-size: 20px;
}

.toolkit-section {
  background: var(--soft-green);
}

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

.loop-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 38px;
}

.loop-card {
  min-height: 210px;
  padding: 22px;
}

.loop-card strong {
  display: block;
  color: var(--coral);
  font-size: 14px;
}

.score-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.score-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: #f4f8f5;
}

.score-row strong {
  color: var(--teal-dark);
  font-size: 28px;
}

.score-row span {
  color: var(--muted);
  line-height: 1.55;
}

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

.policy-card {
  min-height: 220px;
  padding: 24px;
}

.policy-card strong {
  display: block;
  font-size: 34px;
  line-height: 1.12;
}

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

.timeline-card {
  padding: 24px;
}

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

.growth-path {
  background:
    linear-gradient(135deg, rgba(255, 242, 211, 0.72), rgba(233, 246, 243, 0.84));
}

.growth-path .timeline-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 42px rgba(16, 24, 40, 0.08);
}

.photo {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  aspect-ratio: 4 / 3;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 230px;
  gap: 14px;
  margin-top: 38px;
}

.showcase-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(16, 24, 40, 0.1);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.showcase-card:hover img {
  transform: scale(1.035);
}

.showcase-card figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(8, 18, 24, 0.72);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 900;
}

.showcase-large {
  grid-row: span 2;
}

.showcase-wide {
  grid-column: span 2;
}

.platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.platform {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}

.platform img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
}

.page-hero {
  padding-top: 132px;
  padding-bottom: 64px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 18, 24, 0.92), rgba(8, 18, 24, 0.72)),
    url("assets/site/bigcamp/classroom-wide.jpg");
  background-size: cover;
  background-position: center;
}

.brand-hero {
  background:
    linear-gradient(90deg, rgba(8, 18, 24, 0.92), rgba(8, 18, 24, 0.68)),
    url("assets/site/bigcamp/storefront-night.jpg");
  background-size: cover;
  background-position: center;
}

.proof-hero {
  background:
    linear-gradient(90deg, rgba(8, 18, 24, 0.9), rgba(8, 18, 24, 0.66)),
    url("assets/site/bigcamp/students-back.jpg");
  background-size: cover;
  background-position: center;
}

.policy-hero {
  background:
    linear-gradient(90deg, rgba(8, 18, 24, 0.9), rgba(8, 18, 24, 0.66)),
    url("assets/site/custom/hero-storefront-sign.jpg");
  background-size: cover;
  background-position: center top;
}

.support-hero {
  background:
    linear-gradient(90deg, rgba(8, 18, 24, 0.9), rgba(8, 18, 24, 0.66)),
    url("assets/site/bigcamp/classroom-session.jpg");
  background-size: cover;
  background-position: center;
}

.apply-hero {
  background:
    linear-gradient(90deg, rgba(8, 18, 24, 0.9), rgba(8, 18, 24, 0.62)),
    url("assets/site/custom/hero-storefront-sign.jpg");
  background-size: cover;
  background-position: center 28%;
}

.privacy-hero {
  background:
    linear-gradient(90deg, rgba(8, 18, 24, 0.92), rgba(8, 18, 24, 0.68)),
    url("assets/site/bigcamp/study-wall.jpg");
  background-size: cover;
  background-position: center;
}

.apply-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.form-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.08);
}

.form-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.form-intro b {
  color: var(--ink);
  font-size: 17px;
}

.form-intro span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.form-card i {
  color: #c84036;
  font-style: normal;
}

.form-card label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.form-card span {
  color: var(--ink);
}

.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcf8;
  font: inherit;
  outline: none;
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(7, 151, 130, 0.11);
}

.form-card input:user-invalid,
.form-card textarea:user-invalid {
  border-color: rgba(200, 64, 54, 0.72);
}

.form-card textarea {
  min-height: 126px;
  resize: vertical;
}

.form-wide,
.form-submit {
  grid-column: 1 / -1;
}

.form-submit {
  justify-self: start;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  padding: 4px 0;
}

.form-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--teal);
}

.form-consent span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.form-consent a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  display: none;
  margin: 0;
  padding: 13px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-success {
  color: #0d624f;
  border: 1px solid rgba(7, 151, 130, 0.22);
  background: rgba(7, 151, 130, 0.09);
}

.form-status.is-error {
  color: #a3322a;
  border: 1px solid rgba(200, 64, 54, 0.22);
  background: rgba(200, 64, 54, 0.08);
}

.submit-spinner {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(23, 32, 42, 0.28);
  border-top-color: #17202a;
  border-radius: 50%;
  animation: submit-spin 720ms linear infinite;
}

@keyframes submit-spin {
  to {
    transform: rotate(360deg);
  }
}

.apply-side {
  display: grid;
  gap: 14px;
}

.apply-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.1);
}

.apply-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.checklist-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.privacy-section {
  background: #f7f9f6;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.privacy-summary {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}

.privacy-summary b {
  color: var(--ink);
}

.privacy-summary span {
  color: var(--muted);
}

.privacy-summary .button {
  width: fit-content;
  margin-top: 14px;
}

.privacy-content {
  max-width: 820px;
}

.privacy-content h2 {
  margin-bottom: 22px;
}

.privacy-block {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.privacy-block h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
}

.privacy-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.checklist-card.accent {
  border-color: rgba(236, 108, 91, 0.28);
  background: #fff4f1;
}

.checklist-card b {
  display: block;
  font-size: 20px;
}

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

.process-section {
  background: var(--dark);
  color: var(--white);
}

.process-section .kicker {
  color: #ddfff7;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.process-rail article {
  min-height: 204px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.process-rail span {
  color: var(--gold);
  font-weight: 900;
}

.process-rail b {
  display: block;
  margin-top: 24px;
  font-size: 22px;
}

.process-rail p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.78);
}

.cta {
  padding-bottom: 96px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 19, 24, 0.92), rgba(8, 19, 24, 0.62)),
    url("assets/site/bigcamp/storefront-night.jpg");
  background-position: center;
  background-size: cover;
}

.cta-panel .kicker {
  color: #ddfff7;
}

.cta-panel h2 {
  color: var(--white);
}

.cta-panel .lead {
  color: rgba(255, 255, 255, 0.76);
}

footer {
  padding: 26px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.error-page {
  min-height: 100vh;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(8, 18, 24, 0.96), rgba(8, 18, 24, 0.66)),
    url("assets/site/custom/hero-storefront-sign.jpg") center / cover;
}

.error-shell {
  width: min(1120px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-content: space-between;
  padding: 26px 0 clamp(64px, 10vh, 120px);
}

.error-shell .brand {
  width: fit-content;
  color: var(--white);
}

.error-content {
  max-width: 720px;
}

.error-content h1 {
  margin-bottom: 22px;
}

.error-content .lead {
  color: rgba(255, 255, 255, 0.78);
}

.floating-cta {
  position: fixed;
  z-index: 30;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(720px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 12px 12px 20px;
  border: 1px solid rgba(221, 255, 247, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(17, 31, 37, 0.92);
  box-shadow: 0 20px 60px rgba(16, 24, 40, 0.24);
  backdrop-filter: blur(18px);
}

.floating-cta span {
  font-weight: 900;
  line-height: 1.3;
}

.floating-cta .button {
  min-height: 42px;
  padding: 0 16px;
}

@media (max-width: 1040px) {
  .hero-inner {
    display: block;
  }

  .hero-proof {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 940px;
    margin-top: 28px;
  }

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

  .evidence-wrap {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .decision-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .card-grid,
  .product-system-grid,
  .gallery-grid,
  .evidence-cards,
  .mini-photo-grid,
  .proof-photo-row,
  .decision-grid,
  .candidate-grid,
  .delivery-grid,
  .expert-grid,
  .sop-board,
  .ops-grid,
  .toolkit-list,
  .fit-grid,
  .process-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-wrap,
  .toolkit-wrap,
  .apply-layout,
  .privacy-layout,
  .home-trust-head,
  .home-credential-head,
  .endorsement-spotlight,
  .section-head-row {
    grid-template-columns: 1fr;
  }

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

  .trust-schools {
    grid-column: span 2;
  }

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

  .evidence-editorial {
    grid-template-columns: 1fr 1fr;
  }

  .evidence-editorial .evidence-main {
    grid-column: span 2;
    grid-row: auto;
  }

  .home-credential-card.featured {
    grid-column: span 2;
    grid-row: auto;
    min-height: 0;
  }

  .home-credential-card.featured img {
    max-height: 420px;
  }

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

  .policy-grid,
  .support-grid,
  .endorsement-grid,
  .loop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .hero-proof,
  .stat-grid,
  .product-system-grid,
  .home-trust-grid,
  .home-data-row,
  .data-metrics,
  .platforms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-schools {
    grid-column: auto;
  }

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

@media (max-width: 560px) {
  .topbar {
    padding: 14px 16px;
  }

  .home-page {
    padding-bottom: 76px;
  }

  .brand span:last-child {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-cta {
    display: none;
  }

  .nav-home {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding: 86px 0 30px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
    line-height: 1.16;
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-actions {
    width: 100%;
    margin-top: 20px;
  }

  .button {
    width: 100%;
  }

  .hero-proof,
  .stat-grid,
  .card-grid,
  .product-system-grid,
  .home-trust-grid,
  .home-data-row,
  .home-credential-grid,
  .data-metrics,
  .endorsement-grid,
  .gallery-grid,
  .evidence-cards,
  .mini-photo-grid,
  .proof-photo-row,
  .decision-grid,
  .candidate-grid,
  .delivery-grid,
  .expert-grid,
  .sop-board,
  .ops-grid,
  .toolkit-list,
  .fit-grid,
  .process-rail,
  .showcase-grid,
  .policy-grid,
  .support-grid,
  .loop-grid,
  .platforms {
    grid-template-columns: 1fr;
  }

  .home-trust-panel {
    min-height: 0;
    padding: 22px;
  }

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

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

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

  .hero-proof {
    display: none;
  }

  .home-credential-section {
    padding-top: 62px;
    padding-bottom: 66px;
  }

  .home-credential-card,
  .home-credential-card.featured {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 210px 1fr;
    min-height: 0;
  }

  .home-credential-card.featured img {
    max-height: none;
  }

  .authority-ribbon {
    gap: 8px;
  }

  .authority-ribbon span {
    width: 100%;
  }

  .endorsement-hero-card {
    min-height: 260px;
    padding: 16px;
  }

  .endorsement-story {
    padding: 24px;
  }

  .decision-head {
    padding: 22px;
  }

  .form-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .form-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .form-submit {
    justify-self: stretch;
  }

  .privacy-summary {
    position: static;
  }

  .compare-row,
  .table-row {
    grid-template-columns: 1fr;
  }

  .compare-row span,
  .table-row span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .compare-row span:first-child,
  .table-row span:first-child {
    border-top: 0;
  }

  .policy-note {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-auto-rows: 220px;
  }

  .showcase-large,
  .showcase-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .proof-pill,
  .stat-card,
  .info-card,
  .feature-card,
  .timeline-card,
  .policy-card,
  .loop-card {
    padding: 20px;
  }

  section {
    padding: 62px 16px;
  }

  .page-hero {
    padding-top: 110px;
  }

  .media-card img {
    min-height: 220px;
  }

  .score-row {
    grid-template-columns: 78px 1fr;
  }

  .evidence-editorial .evidence-main {
    grid-column: auto;
  }

  .floating-cta {
    width: calc(100% - 24px);
    bottom: 12px;
    align-items: stretch;
    border-radius: 8px;
    padding: 12px;
  }

  .floating-cta span {
    display: none;
  }

  .floating-cta .button {
    width: 100%;
  }
}

/* Home 2.0 */
.home-v2 {
  color: #101828;
  background:
    linear-gradient(180deg, #061013 0, #061013 620px, #f6f8f1 620px, #f6f8f1 100%);
}

.home-v2 .topbar {
  background: rgba(5, 14, 17, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.home-v2 .brand-mark {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.v2-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 0 clamp(18px, 4vw, 56px);
  color: #fff;
  background: #061013;
}

.v2-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 13, 16, 0.94) 0, rgba(4, 13, 16, 0.82) 36%, rgba(4, 13, 16, 0.34) 72%),
    linear-gradient(180deg, rgba(4, 13, 16, 0.16) 0, rgba(4, 13, 16, 0.4) 100%),
    url("assets/site/custom/hero-storefront-sign.jpg");
  background-size: cover;
  background-position: center 24%;
  transform: scale(1.01);
}

.v2-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(6, 16, 19, 0), #061013);
}

.v2-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 42px;
  align-items: end;
  margin: 0 auto;
  padding: 132px 0 54px;
}

.v2-hero-copy {
  max-width: 760px;
}

.v2-chip,
.v2-kicker {
  margin: 0 0 16px;
  color: #dffdf4;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.v2-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(223, 253, 244, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.v2-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: 92px;
  line-height: 0.96;
  letter-spacing: 0;
}

.v2-hero-copy p:not(.v2-chip) {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.75;
}

.v2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.v2-invest-card {
  overflow: hidden;
  border: 1px solid rgba(223, 253, 244, 0.18);
  border-radius: 8px;
  background: rgba(8, 25, 29, 0.72);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.v2-invest-card-head {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-bottom: 1px solid rgba(223, 253, 244, 0.14);
}

.v2-invest-card-head span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.v2-invest-card-head b {
  font-size: 28px;
  line-height: 1.15;
}

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

.v2-invest-grid article {
  min-height: 138px;
  padding: 22px;
  border-right: 1px solid rgba(223, 253, 244, 0.12);
  border-bottom: 1px solid rgba(223, 253, 244, 0.12);
}

.v2-invest-grid article:nth-child(2n) {
  border-right: 0;
}

.v2-invest-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.v2-invest-grid strong {
  display: block;
  color: var(--gold);
  font-size: 42px;
  line-height: 1;
}

.v2-invest-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
}

.v2-panel-link,
.v2-proof-link,
.v2-decision-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--teal-dark);
  font-weight: 900;
}

.v2-panel-link {
  margin: 0 24px 24px;
  color: #dffdf4;
}

.v2-signal-strip {
  padding: 0 clamp(18px, 4vw, 56px) 34px;
  color: #fff;
  background: #061013;
}

.v2-signal-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 16px;
  border: 1px solid rgba(223, 253, 244, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.v2-signal-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 900;
}

.v2-section {
  padding: 96px clamp(18px, 4vw, 56px);
}

.v2-section-head {
  max-width: 980px;
}

.v2-section-head h2,
.v2-gallery-copy h2,
.v2-operation-layout h2,
.v2-final-panel h2 {
  max-width: 880px;
  margin: 0;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: 0;
}

.v2-section-head p:not(.v2-kicker),
.v2-gallery-copy p,
.v2-operation-layout p,
.v2-final-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.v2-investment {
  background: #f6f8f1;
}

.v2-decision-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.v2-decision-card {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(16, 24, 40, 0.08);
}

.v2-decision-card small {
  color: var(--coral);
  font-weight: 900;
}

.v2-decision-card h3 {
  margin: 22px 0 0;
  font-size: 31px;
  line-height: 1.14;
}

.v2-decision-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.v2-decision-card a {
  margin-top: auto;
  padding-top: 24px;
}

.v2-decision-card-dark {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(12, 29, 35, 0.92), rgba(12, 29, 35, 0.74)),
    url("assets/site/bigcamp/storefront-night.jpg");
  background-size: cover;
  background-position: center;
}

.v2-decision-card-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.v2-decision-card-dark a {
  color: #dffdf4;
}

.v2-gallery-hero {
  padding: 104px clamp(18px, 4vw, 56px);
  color: #fff;
  background: #071014;
}

.v2-gallery-layout {
  display: grid;
  grid-template-columns: 0.48fr 1.52fr;
  gap: 38px;
  align-items: end;
}

.v2-gallery-copy {
  padding-bottom: 10px;
}

.v2-gallery-copy p:not(.v2-kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.v2-gallery-board {
  display: grid;
  grid-template-columns: 1.36fr 0.84fr;
  grid-auto-rows: 250px;
  gap: 14px;
}

.v2-gallery-board figure {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #122229;
}

.v2-gallery-board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-gallery-board figure::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(180deg, rgba(4, 13, 16, 0), rgba(4, 13, 16, 0.86));
}

.v2-gallery-main {
  grid-row: span 2;
}

.v2-gallery-board figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  font-weight: 900;
}

.v2-gallery-board figcaption span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.v2-proof-museum {
  color: #fff;
  background:
    linear-gradient(135deg, #071014 0, #10272b 58%, #0b171b 100%);
}

.v2-section-head-invert p:not(.v2-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.v2-proof-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
}

.v2-proof-intro {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 34px;
  border: 1px solid rgba(223, 253, 244, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.05);
}

.v2-proof-intro h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.v2-proof-intro p:not(.v2-kicker) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.78;
}

.v2-credential-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.v2-credential-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(223, 253, 244, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 900;
}

.v2-certificate-stage {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.v2-certificate-carousel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(223, 253, 244, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(223, 253, 244, 0.13), rgba(242, 184, 75, 0.08)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.24);
}

.v2-certificate-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  opacity: 0;
  animation: certificateFade 24s infinite;
}

.v2-certificate-slide:nth-child(2) {
  animation-delay: 6s;
}

.v2-certificate-slide:nth-child(3) {
  animation-delay: 12s;
}

.v2-certificate-slide:nth-child(4) {
  animation-delay: 18s;
}

.v2-certificate-slide figure {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 28px;
  background: #f7f7f2;
}

.v2-certificate-slide img {
  width: 100%;
  height: 100%;
  max-height: 374px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(7, 16, 20, 0.18));
}

.v2-certificate-slide div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(9, 28, 33, 0.38), rgba(9, 28, 33, 0.88)),
    rgba(9, 28, 33, 0.72);
}

.v2-certificate-slide small {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.v2-certificate-slide b {
  display: block;
  max-width: 520px;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
}

.v2-certificate-slide span {
  display: block;
  max-width: 520px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.v2-certificate-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.v2-certificate-thumbs figure {
  overflow: hidden;
  border: 1px solid rgba(223, 253, 244, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.v2-certificate-thumbs img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  background: #f7f7f2;
}

.v2-certificate-thumbs figcaption {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.v2-proof-bottom {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

@keyframes certificateFade {
  0%,
  21% {
    opacity: 1;
  }

  26%,
  100% {
    opacity: 0;
  }
}

.v2-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 18px;
  margin-top: 42px;
}

.v2-certificate {
  overflow: hidden;
  border: 1px solid rgba(223, 253, 244, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.28);
}

.v2-certificate img {
  width: 100%;
  height: 430px;
  object-fit: contain;
  padding: 26px;
  background: #f6f8f1;
}

.v2-certificate figcaption {
  padding: 26px;
  color: var(--ink);
}

.v2-certificate small {
  color: var(--coral);
  font-weight: 900;
}

.v2-certificate b {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.18;
}

.v2-certificate span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.v2-proof-stack {
  display: grid;
  gap: 16px;
  align-content: start;
}

.v2-proof-numbers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(223, 253, 244, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.v2-proof-numbers article {
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid rgba(223, 253, 244, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.v2-proof-numbers article:last-child {
  border-right: 0;
}

.v2-proof-numbers strong {
  display: block;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}

.v2-proof-numbers span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.v2-school-wall {
  display: grid;
  grid-template-columns: minmax(220px, 0.66fr) minmax(0, 1.34fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(223, 253, 244, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.v2-school-wall small {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.v2-school-wall b {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 24px;
  line-height: 1.18;
}

.v2-school-wall p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
}

.v2-school-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.v2-school-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(223, 253, 244, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 900;
}

.v2-proof-link {
  color: #dffdf4;
  padding: 18px 0 0;
}

.v2-learning-system {
  background: #f6f8f1;
}

.v2-system-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 40px;
  align-items: start;
}

.v2-system-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(16, 24, 40, 0.08);
}

.v2-system-steps article {
  min-height: 310px;
  padding: 24px 18px;
  border-right: 1px solid rgba(16, 24, 40, 0.1);
}

.v2-system-steps article:last-child {
  border-right: 0;
}

.v2-system-steps span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.v2-system-steps b {
  display: block;
  margin-top: 58px;
  color: var(--teal-dark);
  font-size: 48px;
  line-height: 1;
}

.v2-system-steps p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.v2-operation {
  background: #fff;
}

.v2-operation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: stretch;
}

.v2-operation-photo {
  overflow: hidden;
  border-radius: 8px;
  background: #101828;
}

.v2-operation-photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.v2-operation-rail {
  display: grid;
  gap: 0;
  overflow: hidden;
  margin: 30px 0;
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 8px;
  background: #fbfcf8;
}

.v2-operation-rail article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(16, 24, 40, 0.1);
}

.v2-operation-rail article:last-child {
  border-bottom: 0;
}

.v2-operation-rail span {
  color: var(--teal-dark);
  font-weight: 900;
}

.v2-operation-rail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.v2-compare {
  background: #071014;
  color: #fff;
}

.v2-compare .v2-section-head p:not(.v2-kicker) {
  color: rgba(255, 255, 255, 0.7);
}

.v2-compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 16px;
  margin-top: 40px;
}

.v2-compare-grid article {
  min-height: 300px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.v2-compare-grid small {
  color: var(--gold);
  font-weight: 900;
}

.v2-compare-grid h3 {
  margin: 22px 0 0;
  font-size: 34px;
}

.v2-compare-grid p {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.78;
}

.v2-compare-strong {
  background:
    linear-gradient(135deg, rgba(7, 151, 130, 0.22), rgba(242, 184, 75, 0.12)),
    rgba(255, 255, 255, 0.08) !important;
}

.v2-join-path {
  background:
    linear-gradient(180deg, #f6f8f1 0, #eef7f4 100%);
}

.v2-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  margin-top: 40px;
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(16, 24, 40, 0.08);
}

.v2-path-grid article {
  min-height: 250px;
  padding: 26px;
  border-right: 1px solid rgba(16, 24, 40, 0.1);
}

.v2-path-grid article:last-child {
  border-right: 0;
}

.v2-path-grid span {
  color: var(--coral);
  font-weight: 900;
}

.v2-path-grid b {
  display: block;
  margin-top: 56px;
  font-size: 24px;
  line-height: 1.25;
}

.v2-path-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.v2-final-cta {
  padding: 96px clamp(18px, 4vw, 56px) 108px;
  color: #fff;
  background: #071014;
}

.v2-final-panel {
  overflow: hidden;
  padding: 54px;
  border: 1px solid rgba(223, 253, 244, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(5, 14, 17, 0.94), rgba(5, 14, 17, 0.58)),
    url("assets/site/bigcamp/storefront-night.jpg");
  background-size: cover;
  background-position: center;
}

.v2-final-panel p:not(.v2-kicker) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1120px) {
  .v2-hero-inner,
  .v2-gallery-layout,
  .v2-proof-showcase,
  .v2-proof-layout,
  .v2-system-layout,
  .v2-operation-layout {
    grid-template-columns: 1fr;
  }

  .v2-invest-card {
    max-width: none;
  }

  .v2-decision-grid,
  .v2-compare-grid {
    grid-template-columns: 1fr;
  }

  .v2-system-steps,
  .v2-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-system-steps article,
  .v2-path-grid article {
    border-bottom: 1px solid rgba(16, 24, 40, 0.1);
  }

  .v2-system-steps article:nth-child(2n),
  .v2-path-grid article:nth-child(2n) {
    border-right: 0;
  }

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

  .v2-proof-numbers article:nth-child(2n) {
    border-right: 0;
  }

  .v2-proof-numbers article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(223, 253, 244, 0.12);
  }

  .v2-school-wall {
    grid-template-columns: 1fr;
  }

  .v2-school-badges {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .home-v2 {
    padding-bottom: 76px;
  }

  .v2-hero {
    min-height: auto;
    padding: 0 16px;
  }

  .v2-hero-bg {
    background-position: center top;
  }

  .v2-hero-inner {
    padding: 104px 0 34px;
    gap: 28px;
  }

  .v2-hero h1 {
    font-size: 46px;
  }

  .v2-hero-copy p:not(.v2-chip) {
    font-size: 16px;
  }

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

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

  .v2-invest-grid,
  .v2-proof-numbers,
  .v2-system-steps,
  .v2-path-grid,
  .v2-gallery-board,
  .v2-certificate-thumbs {
    grid-template-columns: 1fr;
  }

  .v2-invest-grid article,
  .v2-proof-numbers article,
  .v2-system-steps article,
  .v2-path-grid article {
    border-right: 0;
  }

  .v2-invest-grid article:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(223, 253, 244, 0.12);
  }

  .v2-invest-grid article:last-child,
  .v2-proof-numbers article:last-child,
  .v2-system-steps article:last-child,
  .v2-path-grid article:last-child {
    border-bottom: 0;
  }

  .v2-invest-grid strong {
    font-size: 34px;
  }

  .v2-section,
  .v2-gallery-hero,
  .v2-final-cta {
    padding: 66px 16px;
  }

  .v2-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .v2-section-head h2,
  .v2-gallery-copy h2,
  .v2-operation-layout h2,
  .v2-final-panel h2 {
    font-size: 30px;
    line-height: 1.18;
  }

  .v2-decision-card,
  .v2-compare-grid article {
    min-height: 0;
    padding: 24px;
  }

  .v2-decision-card h3,
  .v2-compare-grid h3 {
    font-size: 26px;
  }

  .v2-gallery-board {
    grid-auto-rows: 230px;
  }

  .v2-gallery-main {
    grid-row: auto;
  }

  .v2-certificate img {
    height: 260px;
    padding: 18px;
  }

  .v2-certificate figcaption,
  .v2-final-panel {
    padding: 24px;
  }

  .v2-proof-intro,
  .v2-certificate-carousel {
    min-height: 360px;
  }

  .v2-proof-intro {
    padding: 24px;
  }

  .v2-certificate-slide {
    grid-template-columns: 1fr;
  }

  .v2-certificate-slide figure {
    min-height: 220px;
    padding: 18px;
  }

  .v2-certificate-slide img {
    max-height: 220px;
  }

  .v2-certificate-slide div {
    min-height: 140px;
    padding: 22px;
  }

  .v2-certificate-slide b {
    font-size: 24px;
  }

  .v2-school-wall {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .v2-school-badges {
    justify-content: flex-start;
  }

  .v2-system-steps b {
    margin-top: 26px;
    font-size: 42px;
  }

  .v2-operation-photo img {
    min-height: 300px;
  }

  .v2-operation-rail article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .v2-path-grid b {
    margin-top: 26px;
  }
}

/* Motion layer for the 2.0 franchise homepage */
.home-v2 .topbar {
  animation: navReveal 680ms ease both;
}

.home-v2 .v2-hero-bg {
  transform-origin: 56% 32%;
  animation: heroSlowCinema 18s ease-in-out infinite alternate;
}

.home-v2 .v2-chip,
.home-v2 .v2-hero h1,
.home-v2 .v2-hero-copy p:not(.v2-chip),
.home-v2 .v2-hero-actions,
.home-v2 .v2-invest-card {
  animation: heroRise 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.home-v2 .v2-hero h1 {
  animation-delay: 80ms;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.home-v2 .v2-hero-copy p:not(.v2-chip) {
  animation-delay: 160ms;
}

.home-v2 .v2-hero-actions {
  animation-delay: 240ms;
}

.home-v2 .v2-invest-card {
  position: relative;
  animation-delay: 340ms;
}

.home-v2 .v2-invest-card::before,
.home-v2 .v2-decision-card::before,
.home-v2 .v2-final-panel::before {
  content: "";
  position: absolute;
  inset: -80px auto -80px -42%;
  width: 34%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(223, 253, 244, 0.2), rgba(255, 255, 255, 0));
  transform: skewX(-18deg);
  animation: lightSweep 7s ease-in-out infinite;
}

.home-v2 .v2-invest-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(223, 253, 244, 0.16), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(242, 184, 75, 0.13), transparent 26%);
  mix-blend-mode: screen;
}

.home-v2 .v2-invest-card-head,
.home-v2 .v2-invest-grid,
.home-v2 .v2-panel-link {
  position: relative;
  z-index: 1;
}

.home-v2 .v2-invest-grid article {
  transition: background 240ms ease, transform 240ms ease;
}

.home-v2 .v2-invest-grid article:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.home-v2 .v2-signal-strip .wrap {
  position: relative;
  overflow: hidden;
}

.home-v2 .v2-signal-strip .wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(223, 253, 244, 0.14), transparent);
  transform: translateX(-100%);
  animation: stripGlow 6s ease-in-out infinite;
}

.home-v2 .v2-signal-strip span {
  position: relative;
  z-index: 1;
  transition: transform 220ms ease, border-color 220ms ease, color 220ms ease;
}

.home-v2 .v2-signal-strip span:hover {
  transform: translateY(-2px);
  border-color: rgba(223, 253, 244, 0.36);
  color: #fff;
}

.home-v2 .v2-decision-card,
.home-v2 .v2-gallery-board figure,
.home-v2 .v2-certificate-carousel,
.home-v2 .v2-certificate-thumbs figure,
.home-v2 .v2-system-steps article,
.home-v2 .v2-operation-rail article,
.home-v2 .v2-path-grid article,
.home-v2 .v2-compare-grid article,
.home-v2 .v2-final-panel {
  position: relative;
  overflow: hidden;
}

.home-v2 .v2-decision-card {
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.home-v2 .v2-decision-card:hover {
  transform: translateY(-6px);
  border-color: rgba(7, 151, 130, 0.26);
  box-shadow: 0 30px 82px rgba(16, 24, 40, 0.13);
}

.home-v2 .v2-decision-card::before {
  animation-duration: 8s;
  opacity: 0.8;
}

.home-v2 .v2-gallery-board img {
  transform-origin: center;
  animation: photoBreath 12s ease-in-out infinite alternate;
}

.home-v2 .v2-gallery-board figure:nth-child(2) img {
  animation-delay: -2.4s;
}

.home-v2 .v2-gallery-board figure:nth-child(3) img {
  animation-delay: -4.8s;
}

.home-v2 .v2-gallery-board figure {
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.home-v2 .v2-gallery-board figure:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.25);
}

.home-v2 .v2-proof-museum {
  position: relative;
  overflow: hidden;
}

.home-v2 .v2-proof-museum::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 18%, rgba(223, 253, 244, 0.14), transparent 26%),
    radial-gradient(circle at 18% 74%, rgba(242, 184, 75, 0.1), transparent 28%);
  animation: proofAura 12s ease-in-out infinite alternate;
}

.home-v2 .v2-proof-museum .wrap {
  position: relative;
  z-index: 1;
}

.home-v2 .v2-certificate-slide {
  transform: translateY(14px) scale(0.986);
  filter: saturate(0.9);
}

.home-v2 .v2-certificate-slide img {
  animation: certificateFloat 6s ease-in-out infinite;
}

.home-v2 .v2-certificate-thumbs figure {
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.home-v2 .v2-certificate-thumbs figure::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  animation: thumbProgress 24s linear infinite;
}

.home-v2 .v2-certificate-thumbs figure:nth-child(2)::after {
  animation-delay: 6s;
}

.home-v2 .v2-certificate-thumbs figure:nth-child(3)::after {
  animation-delay: 12s;
}

.home-v2 .v2-certificate-thumbs figure:nth-child(4)::after {
  animation-delay: 18s;
}

.home-v2 .v2-certificate-thumbs figure:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 184, 75, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.home-v2 .v2-proof-numbers article {
  position: relative;
  overflow: hidden;
}

.home-v2 .v2-proof-numbers article::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-120%);
  animation: numberScan 5.6s ease-in-out infinite;
}

.home-v2 .v2-proof-numbers article:nth-child(2)::after {
  animation-delay: 0.7s;
}

.home-v2 .v2-proof-numbers article:nth-child(3)::after {
  animation-delay: 1.4s;
}

.home-v2 .v2-proof-numbers article:nth-child(4)::after {
  animation-delay: 2.1s;
}

.home-v2 .v2-system-steps article::before,
.home-v2 .v2-operation-rail article::before,
.home-v2 .v2-path-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(7, 151, 130, 0.13), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.home-v2 .v2-system-steps article::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  animation: stepPulse 7.5s ease-in-out infinite;
}

.home-v2 .v2-system-steps article:nth-child(2)::after {
  animation-delay: 0.8s;
}

.home-v2 .v2-system-steps article:nth-child(3)::after {
  animation-delay: 1.6s;
}

.home-v2 .v2-system-steps article:nth-child(4)::after {
  animation-delay: 2.4s;
}

.home-v2 .v2-system-steps article:nth-child(5)::after {
  animation-delay: 3.2s;
}

.home-v2 .v2-system-steps article:hover::before,
.home-v2 .v2-operation-rail article:hover::before,
.home-v2 .v2-path-grid article:hover::before {
  opacity: 1;
}

.home-v2 .v2-system-steps article > *,
.home-v2 .v2-operation-rail article > *,
.home-v2 .v2-path-grid article > * {
  position: relative;
  z-index: 1;
}

.home-v2 .v2-operation-photo img {
  animation: photoBreath 14s ease-in-out infinite alternate;
}

.home-v2 .v2-final-panel::before {
  animation-duration: 9s;
}

.home-v2 .button:hover .arrow,
.home-v2 a:hover .arrow {
  transform: translateX(4px);
}

@keyframes navReveal {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

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

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes heroSlowCinema {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes lightSweep {
  0%,
  18% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }

  34% {
    opacity: 1;
  }

  52%,
  100% {
    transform: translateX(430%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes stripGlow {
  0%,
  22% {
    transform: translateX(-110%);
  }

  55%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes photoBreath {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

@keyframes proofAura {
  from {
    opacity: 0.64;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(-18px);
  }
}

@keyframes certificateFade {
  0%,
  20% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: saturate(1);
  }

  24%,
  100% {
    opacity: 0;
    transform: translateY(14px) scale(0.986);
    filter: saturate(0.9);
  }
}

@keyframes certificateFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.2deg);
  }

  50% {
    transform: translateY(-7px) rotate(0.2deg);
  }
}

@keyframes thumbProgress {
  0%,
  20% {
    transform: scaleX(1);
  }

  24%,
  100% {
    transform: scaleX(0);
  }
}

@keyframes numberScan {
  0%,
  35% {
    transform: translateX(-120%);
  }

  58% {
    transform: translateX(0);
  }

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

@keyframes stepPulse {
  0%,
  12% {
    transform: scaleX(0);
    opacity: 0;
  }

  26% {
    transform: scaleX(1);
    opacity: 1;
  }

  44%,
  100% {
    transform: scaleX(0);
    opacity: 0;
    transform-origin: right center;
  }
}

/* Tablet product page */
.tablet-page {
  background:
    radial-gradient(circle at 12% 4%, rgba(7, 151, 130, 0.16), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(49, 95, 186, 0.15), transparent 30%),
    linear-gradient(180deg, #f7fbfb 0, #fbfcf8 520px, #f5f8f6 100%);
}

.tablet-page .topbar,
.home-v2 .topbar {
  box-shadow: 0 18px 70px rgba(5, 17, 26, 0.2);
}

.v2-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(7, 151, 130, 0.18);
  border-radius: 8px;
  color: var(--teal-dark);
  background: rgba(223, 253, 244, 0.76);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.v2-tablet-launch {
  position: relative;
  overflow: hidden;
  color: #f8fbff;
  background:
    linear-gradient(120deg, rgba(5, 17, 26, 0.94), rgba(8, 52, 68, 0.93)),
    radial-gradient(circle at 78% 20%, rgba(242, 184, 75, 0.22), transparent 36%);
}

.v2-tablet-launch::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.09) 38%, transparent 54%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 86px);
  opacity: 0.72;
}

.v2-tablet-launch-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.v2-tablet-copy h2 {
  max-width: 680px;
  margin: 10px 0 14px;
  color: #fff;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.04;
}

.v2-tablet-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(248, 251, 255, 0.76);
  font-size: 17px;
  line-height: 1.8;
}

.v2-tablet-copy .v2-kicker,
.tablet-page .v2-kicker {
  color: var(--teal);
}

.v2-terminal-tags,
.tablet-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 26px;
}

.v2-terminal-tags span,
.tablet-mini-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(223, 253, 244, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.v2-terminal-stage {
  position: relative;
  min-height: 520px;
}

.v2-terminal-product-render {
  position: absolute;
  inset: 14px 70px auto 0;
  z-index: 1;
  transform: rotate(-3deg);
}

.v2-terminal-video-card {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: min(78%, 560px);
  padding: 8px;
  border: 1px solid rgba(223, 253, 244, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.v2-terminal-video-card video,
.tablet-video-frame video {
  display: block;
  width: 100%;
  border-radius: 8px;
  background: #081018;
}

.terminal-device-mini,
.terminal-device,
.tablet-device-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(223, 253, 244, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    #101820;
  box-shadow:
    inset 0 0 0 8px #111a21,
    0 36px 90px rgba(0, 0, 0, 0.28);
}

.terminal-device-mini {
  width: min(100%, 560px);
  aspect-ratio: 1.55;
  padding: 18px;
}

.terminal-device-mini::after,
.tablet-device-frame::after,
.terminal-device::after {
  content: "";
  position: absolute;
  inset: -25% -35%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.22) 48%, transparent 58%);
  transform: translateX(-35%) rotate(8deg);
  animation: tabletSheen 5.8s ease-in-out infinite;
}

.terminal-device-bar,
.terminal-toolbar,
.tablet-statusbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
}

.terminal-device-bar span,
.terminal-toolbar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.terminal-device-bar span:nth-child(2),
.terminal-toolbar span:nth-child(2) {
  background: var(--teal);
}

.terminal-device-bar span:nth-child(3),
.terminal-toolbar span:nth-child(3) {
  background: #79a8ff;
}

.terminal-device-bar b,
.terminal-toolbar b {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.terminal-device-grid,
.terminal-screen-grid,
.tablet-home-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
}

.terminal-device-grid article,
.terminal-course-card,
.tablet-home-card {
  min-height: 104px;
  padding: 14px;
  border: 1px solid rgba(223, 253, 244, 0.1);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
}

.terminal-device-grid .is-primary,
.terminal-course-card.main,
.tablet-home-card.hero-card {
  grid-row: span 2;
  min-height: 218px;
  background:
    radial-gradient(circle at 24% 20%, rgba(242, 184, 75, 0.32), transparent 34%),
    linear-gradient(145deg, rgba(7, 151, 130, 0.34), rgba(49, 95, 186, 0.22));
}

.terminal-device-grid small,
.terminal-course-card small,
.tablet-home-card small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 900;
}

.terminal-device-grid b,
.terminal-course-card b,
.tablet-home-card b {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}

.terminal-device-grid em {
  display: block;
  width: 74%;
  height: 8px;
  margin-top: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  box-shadow: 0 0 22px rgba(242, 184, 75, 0.36);
}

.terminal-float-pill {
  position: absolute;
  z-index: 3;
  right: 12px;
  top: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(223, 253, 244, 0.28);
  border-radius: 8px;
  color: #fff;
  background: rgba(7, 151, 130, 0.78);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  animation: floatBadge 4s ease-in-out infinite;
}

.terminal-float-pill.second {
  top: auto;
  right: auto;
  left: 18px;
  bottom: 32px;
  background: rgba(49, 95, 186, 0.8);
  animation-delay: -1.8s;
}

.tablet-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: clamp(128px, 14vw, 164px) 0 clamp(72px, 9vw, 116px);
  color: #f8fbff;
  background:
    linear-gradient(130deg, rgba(6, 15, 22, 0.95), rgba(8, 41, 54, 0.9)),
    radial-gradient(circle at 78% 18%, rgba(242, 184, 75, 0.18), transparent 32%);
}

.tablet-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.07) 42%, transparent 55%),
    repeating-linear-gradient(0deg, rgba(223, 253, 244, 0.05) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(90deg, rgba(223, 253, 244, 0.045) 0 1px, transparent 1px 92px);
  mask-image: linear-gradient(180deg, #000 0, #000 76%, transparent 100%);
}

.tablet-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.tablet-hero-copy h1 {
  max-width: 700px;
  margin: 18px 0;
  color: #fff;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
}

.tablet-hero-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(248, 251, 255, 0.75);
  font-size: 17px;
  line-height: 1.85;
}

.tablet-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.tablet-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.tablet-hero-stats article {
  min-height: 104px;
  padding: 14px;
  border: 1px solid rgba(223, 253, 244, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.tablet-hero-stats b {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 16px;
}

.tablet-hero-stats span {
  color: rgba(248, 251, 255, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

.tablet-product-stage {
  position: relative;
  min-height: 560px;
  perspective: 1300px;
}

.tablet-product-orbit {
  position: absolute;
  inset: 8% 7% 4%;
  border: 1px solid rgba(223, 253, 244, 0.16);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.tablet-product-orbit::before,
.tablet-product-orbit::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 26px rgba(242, 184, 75, 0.55);
  animation: orbitDot 6.5s linear infinite;
}

.tablet-product-orbit::after {
  background: var(--teal);
  animation-delay: -3.2s;
}

.tablet-device-showcase {
  position: absolute;
  inset: 54px 28px 44px;
  transform: rotateY(-11deg) rotateX(5deg);
  transform-style: preserve-3d;
}

.tablet-device-frame {
  width: 100%;
  height: 100%;
  padding: 22px;
}

.tablet-statusbar {
  justify-content: space-between;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.tablet-statusbar b {
  color: #fff;
  font-size: 13px;
}

.tablet-home-card p,
.terminal-course-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.tablet-wave {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 70px;
  margin-top: 28px;
}

.tablet-wave span {
  width: 32%;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #fff, rgba(223, 253, 244, 0.2));
  animation: waveBar 2.8s ease-in-out infinite;
}

.tablet-wave span:nth-child(1) {
  height: 54%;
}

.tablet-wave span:nth-child(2) {
  height: 88%;
  animation-delay: -0.8s;
}

.tablet-wave span:nth-child(3) {
  height: 66%;
  animation-delay: -1.6s;
}

.tablet-signal-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 4px;
  min-width: 132px;
  padding: 12px;
  border: 1px solid rgba(223, 253, 244, 0.18);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.tablet-signal-card span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.tablet-signal-card b {
  font-size: 15px;
}

.tablet-signal-card.card-a {
  top: 42px;
  left: 0;
}

.tablet-signal-card.card-b {
  right: 0;
  top: 42%;
}

.tablet-signal-card.card-c {
  left: 48px;
  bottom: 20px;
}

.tablet-video-section,
.tablet-material-section,
.tablet-orbit-section,
.tablet-interface-section,
.tablet-capability-section,
.tablet-delivery-section {
  padding: clamp(72px, 9vw, 124px) 0;
}

.tablet-video-section {
  background: #f8fbff;
}

.tablet-video-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.tablet-video-copy h2,
.tablet-section-head h2,
.tablet-interface-copy h2,
.tablet-delivery-layout h2 {
  margin: 10px 0 14px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
}

.tablet-video-copy p,
.tablet-interface-copy p,
.tablet-delivery-layout p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.tablet-video-frame {
  padding: 10px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(16, 24, 40, 0.12);
}

.tablet-video-copy .tablet-mini-proof span {
  color: var(--teal-dark);
  border-color: rgba(7, 151, 130, 0.14);
  background: rgba(7, 151, 130, 0.07);
}

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

.tablet-section-head h2 {
  margin-bottom: 0;
}

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

.tablet-material-section {
  background:
    linear-gradient(180deg, rgba(233, 246, 243, 0.72), rgba(255, 255, 255, 0.96));
}

.material-card,
.tablet-orbit-grid article,
.tablet-capability-grid article,
.tablet-delivery-steps article {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 18px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(16, 24, 40, 0.08);
}

.material-card::after,
.tablet-capability-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--blue));
  transform: scaleX(0.28);
  transform-origin: left center;
  transition: transform 240ms ease;
}

.material-card:hover::after,
.tablet-capability-grid article:hover::after {
  transform: scaleX(1);
}

.material-visual {
  height: 150px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 18%, rgba(242, 184, 75, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(7, 151, 130, 0.1), rgba(49, 95, 186, 0.08));
}

.material-screen,
.material-doc {
  width: 76%;
  min-height: 104px;
  padding: 14px;
  border-radius: 8px;
  background: #101820;
  color: #fff;
  box-shadow: 0 20px 52px rgba(16, 24, 40, 0.2);
}

.material-screen {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.material-screen span {
  display: grid;
  place-items: center;
  min-height: 28px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 800;
}

.material-screen b {
  grid-column: 1 / -1;
  color: var(--gold);
}

.material-radar {
  position: relative;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 151, 130, 0.11);
  box-shadow: inset 0 0 0 1px rgba(7, 151, 130, 0.18);
}

.material-radar span {
  position: absolute;
  inset: calc(var(--ring, 0) * 18px);
  border: 1px solid rgba(7, 151, 130, 0.22);
  border-radius: 50%;
}

.material-radar span:nth-child(1) {
  --ring: 1;
}

.material-radar span:nth-child(2) {
  --ring: 2;
}

.material-radar span:nth-child(3) {
  --ring: 3;
}

.material-radar b {
  position: relative;
  z-index: 1;
  color: var(--teal-dark);
  font-size: 30px;
}

.material-radar::after {
  content: "";
  position: absolute;
  inset: 50% 50% 0;
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  transform-origin: left center;
  animation: radarSweep 3.2s linear infinite;
}

.material-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  width: 138px;
  height: 104px;
}

.material-bars span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--blue), var(--teal));
  animation: waveBar 3s ease-in-out infinite;
}

.material-bars span:nth-child(1) { height: 42%; }
.material-bars span:nth-child(2) { height: 78%; animation-delay: -0.7s; }
.material-bars span:nth-child(3) { height: 58%; animation-delay: -1.4s; }
.material-bars span:nth-child(4) { height: 92%; animation-delay: -2.1s; }

.material-doc span {
  display: block;
  height: 8px;
  margin: 0 0 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.material-doc span:nth-child(2) {
  width: 82%;
}

.material-doc span:nth-child(3) {
  width: 62%;
}

.material-doc b {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 8px;
  color: #101820;
  background: var(--gold);
}

.material-card small,
.tablet-capability-grid small {
  display: block;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.material-card h3,
.tablet-capability-grid h3 {
  margin: 8px 0;
  font-size: 20px;
  line-height: 1.25;
}

.material-card p,
.tablet-capability-grid p,
.tablet-orbit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.tablet-orbit-section {
  background: #fff;
}

.tablet-orbit-grid article {
  min-height: 230px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.96));
}

.tablet-orbit-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.tablet-orbit-grid b {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
}

.tablet-interface-section {
  overflow: hidden;
  color: #f8fbff;
  background:
    radial-gradient(circle at 22% 22%, rgba(7, 151, 130, 0.24), transparent 32%),
    linear-gradient(135deg, #071016, #112634 58%, #0c171d);
}

.tablet-interface-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1.28fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.tablet-interface-copy h2,
.tablet-delivery-section h2 {
  color: #fff;
}

.tablet-interface-copy p,
.tablet-delivery-section p {
  color: rgba(248, 251, 255, 0.7);
}

.terminal-ui-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 14px;
  align-items: stretch;
}

.terminal-device {
  min-height: 430px;
  padding: 24px;
}

.terminal-report-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.terminal-report-panel div {
  min-height: 84px;
  padding: 12px;
  border: 1px solid rgba(223, 253, 244, 0.1);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.terminal-report-panel b {
  display: block;
  color: var(--gold);
  font-size: 26px;
}

.terminal-report-panel span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.terminal-progress {
  height: 8px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.terminal-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.terminal-side-stack {
  display: grid;
  gap: 14px;
}

.terminal-side-stack article {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 180px;
  padding: 16px;
  border: 1px solid rgba(223, 253, 244, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.terminal-side-stack span {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.terminal-side-stack b {
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}

.tablet-capability-section {
  background: #f8fbff;
}

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

.tablet-capability-grid article {
  min-height: 210px;
}

.tablet-delivery-section {
  background:
    radial-gradient(circle at 72% 18%, rgba(242, 184, 75, 0.16), transparent 28%),
    linear-gradient(135deg, #071016, #0f262e);
}

.tablet-delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.tablet-delivery-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.tablet-delivery-steps article {
  min-height: 150px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(223, 253, 244, 0.14);
  box-shadow: none;
}

.tablet-delivery-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.tablet-delivery-steps b {
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
}

.tablet-final-cta {
  background: #fbfcf8;
}

.terminal-policy-card {
  display: grid;
  place-items: center;
  min-height: 350px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(7, 151, 130, 0.08), rgba(49, 95, 186, 0.07)),
    #fff;
}

.terminal-policy-card .terminal-device-mini {
  width: 100%;
  max-width: 520px;
}

@keyframes tabletSheen {
  0%,
  32% {
    transform: translateX(-42%) rotate(8deg);
    opacity: 0;
  }

  45% {
    opacity: 1;
  }

  68%,
  100% {
    transform: translateX(42%) rotate(8deg);
    opacity: 0;
  }
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes orbitDot {
  0% {
    transform: rotate(0deg) translateX(250px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(250px) rotate(-360deg);
  }
}

@keyframes waveBar {
  0%,
  100% {
    transform: scaleY(0.72);
  }

  50% {
    transform: scaleY(1);
  }
}

@keyframes radarSweep {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 1120px) {
  .v2-tablet-launch-layout,
  .tablet-hero-layout,
  .tablet-video-layout,
  .tablet-interface-layout,
  .tablet-delivery-layout {
    grid-template-columns: 1fr;
  }

  .v2-terminal-stage,
  .tablet-product-stage {
    min-height: 520px;
  }

  .v2-terminal-product-render {
    inset: 0 auto auto 0;
    width: min(86vw, 560px);
  }

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

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

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

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

@media (max-width: 760px) {
  .tablet-hero {
    min-height: auto;
    padding: 112px 16px 64px;
  }

  .tablet-hero-copy h1 {
    font-size: 44px;
    line-height: 1.04;
  }

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

  .tablet-hero-stats,
  .tablet-material-grid,
  .tablet-orbit-grid,
  .tablet-capability-grid,
  .tablet-delivery-steps,
  .terminal-report-panel,
  .terminal-side-stack {
    grid-template-columns: 1fr;
  }

  .tablet-video-section,
  .tablet-material-section,
  .tablet-orbit-section,
  .tablet-interface-section,
  .tablet-capability-section,
  .tablet-delivery-section {
    padding: 64px 16px;
  }

  .v2-tablet-launch-layout {
    gap: 26px;
  }

  .v2-terminal-stage,
  .tablet-product-stage {
    min-height: 560px;
  }

  .v2-terminal-product-render {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .v2-terminal-video-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .tablet-device-showcase {
    inset: 54px 0 70px;
    transform: none;
  }

  .tablet-signal-card {
    min-width: 112px;
  }

  .tablet-signal-card.card-a {
    top: 12px;
  }

  .tablet-signal-card.card-b {
    right: 8px;
    top: auto;
    bottom: 24px;
  }

  .tablet-signal-card.card-c {
    left: 8px;
    bottom: 92px;
  }

  .terminal-device-mini,
  .terminal-device,
  .tablet-device-frame {
    border-radius: 14px;
    box-shadow:
      inset 0 0 0 6px #111a21,
      0 24px 60px rgba(0, 0, 0, 0.22);
  }

  .tablet-home-grid,
  .terminal-screen-grid,
  .terminal-device-grid {
    grid-template-columns: 1fr;
  }

  .terminal-device-grid .is-primary,
  .terminal-course-card.main,
  .tablet-home-card.hero-card {
    grid-row: auto;
    min-height: 170px;
  }

  .material-card,
  .tablet-orbit-grid article,
  .tablet-capability-grid article {
    min-height: 0;
  }
}

/* Scroll-synced cinematic layer */
.motion-ready body.home-v2::before {
  content: "";
  position: fixed;
  z-index: 30;
  top: 72px;
  right: 14px;
  bottom: 72px;
  width: 2px;
  pointer-events: none;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(223, 253, 244, 0), rgba(223, 253, 244, 0.9), rgba(242, 184, 75, 0.72));
  box-shadow: 0 0 18px rgba(223, 253, 244, 0.36);
  transform: scaleY(var(--page-progress, 0));
  transform-origin: top center;
}

.motion-ready .v2-hero-bg {
  transform:
    scale(var(--hero-bg-scale, 1.01))
    translate3d(var(--hero-bg-x, 0px), var(--hero-bg-y, 0px), 0);
  filter: saturate(var(--hero-saturate, 1)) brightness(var(--hero-brightness, 1));
  animation: none;
}

.motion-ready .v2-hero-copy {
  transform: translate3d(0, var(--hero-copy-y, 0px), 0) scale(var(--hero-copy-scale, 1));
  opacity: var(--hero-copy-opacity, 1);
  will-change: transform, opacity;
}

.motion-ready .v2-invest-card {
  transform:
    translate3d(0, var(--hero-card-y, 0px), 0)
    rotateX(var(--hero-card-rotate, 0deg));
  will-change: transform;
}

.motion-ready .scroll-scene {
  --scene-entry: 0;
  --scene-opacity: 1;
  --scene-y: 0px;
  --scene-scale: 1;
  position: relative;
}

.motion-ready .scroll-scene > .wrap {
  opacity: var(--scene-opacity, 1);
  transform: translate3d(0, var(--scene-y, 0px), 0) scale(var(--scene-scale, 1));
  transform-origin: center top;
  will-change: transform, opacity;
}

.motion-ready .scroll-scene::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: var(--scene-glow-opacity, 0);
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 34%, transparent 54%),
    radial-gradient(circle at 82% 12%, rgba(223, 253, 244, 0.12), transparent 28%);
  transform: translate3d(0, var(--scene-sheen-y, 0px), 0);
  transition: opacity 120ms linear;
}

.motion-ready .scroll-scene > .wrap {
  position: relative;
  z-index: 1;
}

.motion-ready .motion-stagger {
  opacity: 0;
  transform:
    translate3d(0, var(--stagger-y, 34px), 0)
    scale(0.982);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 260ms ease,
    border-color 260ms ease;
  transition-delay: var(--stagger-delay, 0ms);
  will-change: transform, opacity;
}

.motion-ready .motion-stagger.is-visible {
  opacity: 1;
  transform:
    translate3d(0, var(--motion-staged-y, 0px), 0)
    scale(var(--motion-scale, 1));
}

.motion-ready .motion-parallax {
  transform:
    translate3d(0, var(--motion-y, 0px), 0)
    rotateX(var(--motion-tilt, 0deg))
    scale(var(--motion-scale, 1));
  transform-style: preserve-3d;
  will-change: transform;
}

.motion-ready .v2-terminal-product-render.motion-parallax {
  transform:
    translate3d(0, var(--motion-y, 0px), 0)
    rotate(-3deg)
    rotateX(var(--motion-tilt, 0deg))
    scale(var(--motion-scale, 1));
}

.motion-ready .tablet-device-showcase.motion-parallax {
  transform:
    translate3d(0, var(--motion-y, 0px), 0)
    rotateY(-11deg)
    rotateX(calc(5deg + var(--motion-tilt, 0deg)))
    scale(var(--motion-scale, 1));
}

.motion-ready .v2-gallery-layout,
.motion-ready .v2-operation-layout,
.motion-ready .v2-proof-showcase {
  perspective: 1200px;
}

.motion-ready .v2-gallery-copy,
.motion-ready .v2-section-head,
.motion-ready .v2-operation-layout > div {
  transform: translate3d(0, var(--scene-copy-y, 0px), 0);
}

.motion-ready .v2-decision-grid,
.motion-ready .v2-system-steps,
.motion-ready .v2-path-grid,
.motion-ready .v2-compare-grid {
  transform: translate3d(0, var(--scene-grid-y, 0px), 0);
}

.motion-ready .v2-proof-intro.motion-parallax,
.motion-ready .v2-certificate-carousel.motion-parallax {
  transform:
    translate3d(0, var(--proof-y, 0px), 0)
    rotateX(var(--motion-soft-tilt, 0deg))
    scale(var(--motion-scale, 1));
}

.motion-ready .v2-certificate-slide figure {
  position: relative;
  overflow: hidden;
}

.motion-ready .v2-certificate-slide figure::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 24%, rgba(255, 255, 255, 0.5) 44%, transparent 58%);
  transform: translateX(var(--certificate-sheen-x, -60%)) rotate(10deg);
  opacity: var(--certificate-sheen-opacity, 0);
}

.motion-ready .v2-certificate-slide img {
  transform:
    translate3d(0, var(--certificate-img-y, 0px), 0)
    rotate(var(--certificate-img-rotate, 0deg));
}

.motion-ready .v2-proof-numbers strong {
  display: inline-block;
  transform:
    translate3d(0, var(--number-y, 0px), 0)
    scale(var(--number-scale, 1));
  text-shadow: 0 0 var(--number-glow, 0px) rgba(242, 184, 75, 0.42);
}

.motion-ready .v2-system-steps article.is-visible b {
  animation: glyphIgnite 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--glyph-delay, 0ms);
}

.motion-ready .v2-operation-rail article.is-visible,
.motion-ready .v2-path-grid article.is-visible {
  border-color: rgba(7, 151, 130, var(--border-alpha, 0.18));
}

.motion-ready .v2-final-panel.motion-parallax {
  transform:
    translate3d(0, var(--final-y, 0px), 0)
    scale(var(--final-scale, 1));
}

@keyframes glyphIgnite {
  0% {
    opacity: 0.4;
    transform: translateY(18px) scale(0.92);
  }

  60% {
    opacity: 1;
    transform: translateY(-3px) scale(1.04);
  }

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

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