:root {
  color-scheme: light;
  --blue: #155eef;
  --blue-deep: #053fbd;
  --ink: #06080d;
  --text: #1b2230;
  --muted: #667085;
  --soft: #f6f8fc;
  --line: #e1e6ef;
  --green: #0e7a57;
  --gold: #c68619;
  --red: #bd3d36;
  --lavender: #7b61ff;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(16, 29, 56, 0.12);
  --soft-shadow: 0 18px 50px rgba(18, 35, 72, 0.08);
  --font-body: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --font-geist: 'Geist', ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(1500px 980px at 52% 5%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.76) 42%, rgba(255, 255, 255, 0) 78%),
    radial-gradient(1400px 1050px at 8% 30%, rgba(21, 94, 239, 0.11) 0%, rgba(21, 94, 239, 0.055) 38%, rgba(21, 94, 239, 0) 74%),
    radial-gradient(1280px 980px at 92% 42%, rgba(123, 97, 255, 0.12) 0%, rgba(123, 97, 255, 0.054) 42%, rgba(123, 97, 255, 0) 78%),
    radial-gradient(1180px 920px at 20% 70%, rgba(120, 190, 255, 0.105) 0%, rgba(120, 190, 255, 0.045) 44%, rgba(120, 190, 255, 0) 80%),
    radial-gradient(1200px 940px at 86% 84%, rgba(14, 122, 87, 0.055) 0%, rgba(14, 122, 87, 0.026) 45%, rgba(14, 122, 87, 0) 82%),
    linear-gradient(180deg,
      #ffffff 0%,
      #fbfdff 18%,
      #f3f7ff 34%,
      #f2f0ff 52%,
      #eef7ff 70%,
      #f9fbff 86%,
      #ffffff 100%
    );
  background-attachment: scroll;
  background-repeat: no-repeat;
  font-family: var(--font-body);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 999;
  content: "";
  background-image: url("assets/grain.svg");
  background-size: 256px 256px;
  opacity: 0.032;
  mix-blend-mode: multiply;
  pointer-events: none;
}

body::selection {
  background: rgba(21, 94, 239, 0.18);
}

main {
  display: flex;
  flex-direction: column;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: absolute;
  top: 32px;
  left: 50%;
  z-index: 20;
  display: grid;
  width: min(1600px, calc(100% - 224px));
  min-height: 64px;
  grid-template-columns: auto auto;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  padding: 4px 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 112px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(6, 8, 13, 0.58);
  font-size: 14px;
  font-weight: 760;
}

.nav-links a {
  padding: 12px 0;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta,
.login-cta,
.ambassador-login,
.primary-button,
.ghost-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 820;
  line-height: 1;
  appearance: none;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-cta {
  min-height: 64px;
  gap: 22px;
  padding: 0 8px 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  background: #1b1b1e;
  color: var(--white);
  box-shadow:
    0 18px 44px rgba(6, 8, 13, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 18px;
  transform-style: preserve-3d;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.ambassador-login {
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid rgba(6, 8, 13, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  font-family: var(--font-geist);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
  backdrop-filter: blur(14px);
}

.ambassador-login:hover {
  border-color: rgba(6, 8, 13, 0.3);
  color: var(--blue);
  transform: translateY(-1px);
}

.login-cta {
  min-height: 50px;
  gap: 14px;
  padding: 0 7px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(6, 8, 13, 0.92);
  color: var(--white);
  box-shadow:
    0 18px 44px rgba(6, 8, 13, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-family: var(--font-geist);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
  backdrop-filter: blur(14px);
}

.login-cta::after {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  content: "→";
  font-family: var(--font-geist);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-cta::after {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  content: "→";
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
  transform: translateZ(10px);
}

.primary-button {
  border: 0;
  padding: 0 22px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(6, 8, 13, 0.16);
}

.meet-cta {
  gap: 10px;
  padding-left: 18px;
}

.meet-cta img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.primary-button:hover,
.nav-cta:hover,
.login-cta:hover {
  transform: translateY(-1px);
}

.login-cta:hover {
  background: #df494d;
  box-shadow:
    0 22px 48px rgba(194, 48, 54, 0.24),
    0 8px 0 rgba(102, 19, 24, 0.14);
  transform: perspective(800px) rotateX(3deg) translateY(-3px);
}

.login-cta:hover::after {
  box-shadow: 0 10px 20px rgba(65, 13, 18, 0.2);
  transform: translateX(2px);
}

.nav-cta:hover {
  background: #df494d;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 22px 50px rgba(194, 48, 54, 0.3),
    0 8px 0 rgba(102, 19, 24, 0.18);
  transform: perspective(800px) rotateX(3deg) translateY(-3px);
}

.nav-cta:hover::after {
  box-shadow: 0 10px 20px rgba(65, 13, 18, 0.22);
  transform: translateZ(18px) translateX(2px);
}

.ghost-button {
  padding: 0 18px;
  border: 1px solid rgba(6, 13, 28, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.hero {
  position: relative;
  order: 1;
  min-height: 748px;
  overflow: hidden;
  padding: 206px 24px 46px;
  background: transparent;
}

.hero::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 560px;
  content: "";
  background:
    radial-gradient(ellipse 74% 60% at 50% 0%, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.44) 42%, rgba(255, 255, 255, 0) 82%),
    radial-gradient(ellipse 68% 54% at 50% 14%, rgba(21, 94, 239, 0.052) 0%, rgba(21, 94, 239, 0.022) 46%, rgba(21, 94, 239, 0) 78%);
  opacity: 1;
  pointer-events: none;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-scene::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 380px;
  content: "";
  background:
    radial-gradient(ellipse 54% 56% at 50% 0%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.04) 40%, rgba(255, 255, 255, 0.72) 72%, rgba(255, 255, 255, 0.2) 100%),
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.94) 7%, rgba(255, 255, 255, 0.12) 21%, rgba(255, 255, 255, 0.12) 79%, rgba(255, 255, 255, 0.94) 93%, #fff 100%);
  pointer-events: none;
}

.hero-scene::after {
  position: absolute;
  inset: 0 0 auto;
  z-index: 4;
  height: 390px;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 34%, rgba(255, 255, 255, 0.66) 67%, rgba(255, 255, 255, 0.9) 88%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: min(1560px, calc(100% - 112px));
  height: 330px;
  overflow: hidden;
  clip-path: polygon(2% 0, 98% 0, 92% 30%, 78% 62%, 60% 86%, 50% 100%, 40% 86%, 22% 62%, 8% 30%);
  filter: saturate(1.24) contrast(1.08) brightness(1.04);
  transform: translateX(-50%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 7%, #000 18%, #000 82%, rgba(0, 0, 0, 0.55) 93%, transparent 100%);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-photo::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background-image: url("assets/grain.svg");
  background-size: 256px 256px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.8) 52%, transparent 96%);
  opacity: 0.22;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    radial-gradient(ellipse 54% 72% at 50% 0%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 47%, rgba(255, 255, 255, 0.62) 76%, #fff 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.08) 80%, rgba(255, 255, 255, 0.86) 100%);
}

.campus-strip {
  position: absolute;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 40px));
  gap: 10px;
  justify-content: center;
  transform: translateX(-50%);
  opacity: 0.72;
}

.campus-strip span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(21, 94, 239, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #3a4356;
  font-size: 13px;
  font-weight: 760;
  box-shadow: 0 14px 35px rgba(15, 35, 73, 0.08);
}

.strip-one {
  top: 76px;
  animation: drift-left 22s linear infinite;
}

.strip-two {
  top: 116px;
  animation: drift-right 24s linear infinite;
}

.glass-frame,
.dashboard-panel {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.creator-frame {
  display: grid;
  width: 172px;
  gap: 8px;
  padding: 12px;
}

.creator-a {
  top: 292px;
  left: max(20px, calc(50% - 650px));
  transform: rotate(-4deg);
}

.creator-b {
  top: 322px;
  right: max(20px, calc(50% - 650px));
  transform: rotate(5deg);
}

.video-thumb {
  position: relative;
  display: grid;
  height: 166px;
  overflow: hidden;
  align-items: end;
  padding: 10px;
  border-radius: 8px;
}

.blue-shot {
  background:
    linear-gradient(160deg, rgba(5, 6, 7, 0) 35%, rgba(5, 6, 7, 0.6)),
    linear-gradient(135deg, #dbe7ff, #155eef 58%, #091c50);
}

.amber-shot {
  background:
    linear-gradient(160deg, rgba(5, 6, 7, 0) 35%, rgba(5, 6, 7, 0.6)),
    linear-gradient(135deg, #fff2cf, #f0a72e 48%, #135e4a);
}

.video-thumb::before {
  position: absolute;
  top: 26px;
  left: 50%;
  width: 74px;
  height: 74px;
  border: 8px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.video-thumb::after {
  position: absolute;
  right: 34px;
  bottom: 58px;
  width: 52px;
  height: 86px;
  border-radius: 26px 26px 8px 8px;
  background: rgba(255, 255, 255, 0.38);
  content: "";
}

.video-label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.creator-frame strong {
  color: var(--ink);
  font-size: 16px;
}

.creator-frame small,
.pulse-card small,
.metric-row {
  color: var(--muted);
  font-size: 12px;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.pulse-card {
  display: none;
  top: 218px;
  left: 50%;
  width: 260px;
  gap: 4px;
  padding: 16px 18px 16px 42px;
  transform: translateX(-50%);
}

.status-dot {
  position: absolute;
  top: 19px;
  left: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(14, 122, 87, 0.12);
}

.dashboard-panel {
  display: none;
  left: 50%;
  top: 500px;
  width: min(670px, calc(100% - 44px));
  padding: 16px;
  transform: translateX(-50%);
}

.panel-top,
.metric-row,
.mission-line,
.proof-band {
  display: flex;
  align-items: center;
}

.panel-top {
  justify-content: space-between;
  margin-bottom: 14px;
  color: #293144;
  font-size: 13px;
  font-weight: 850;
}

.panel-top span:last-child {
  min-height: 26px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(14, 122, 87, 0.1);
  color: var(--green);
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.score-grid div {
  min-height: 84px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.score-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.score-grid small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 680;
}

.mission-line {
  min-height: 48px;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(21, 94, 239, 0.14);
  border-radius: 8px;
  background: rgba(239, 244, 255, 0.88);
}

.mission-line + .mission-line {
  margin-top: 8px;
}

.mission-line span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.mission-line p {
  flex: 1;
  margin: 0;
  font-size: 14px;
  font-weight: 760;
}

.mission-line b {
  color: var(--blue);
  font-size: 12px;
}

.muted-line {
  background: rgba(255, 255, 255, 0.72);
}

.muted-line span {
  background: var(--gold);
}

.muted-line b {
  color: var(--gold);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-proof {
  display: flex;
  width: fit-content;
  max-width: calc(100% - 48px);
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 12px;
  padding: 3px 14px 3px 5px;
  border: 1px solid rgba(209, 218, 233, 0.84);
  border-radius: 30px;
  background: rgb(255, 255, 255);
  color: #101522;
  box-shadow:
    0 0.6px 0.6px -1.25px rgba(42, 40, 46, 0.36),
    0 2.3px 2.3px -2.5px rgba(42, 40, 46, 0.32),
    0 10px 10px -3.75px rgba(42, 40, 46, 0.13);
}

.proof-avatars {
  display: flex;
  align-items: center;
}

.proof-avatars img {
  display: block;
  width: 34px;
  height: 34px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 10px rgba(5, 6, 7, 0.16);
}

.proof-avatars img + img {
  margin-left: -9px;
}

.hero-proof strong {
  color: #0c1220;
  font-size: 14px;
  line-height: 15.4px;
  font-weight: 400;
  white-space: nowrap;
}

.news-pill {
  display: flex;
  width: fit-content;
  max-width: calc(100% - 48px);
  min-height: 30px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0 auto 44px;
  padding: 3px 12px 3px 3px;
  border: 1px solid rgba(209, 218, 233, 0.72);
  border-radius: 30px;
  background: rgb(255, 255, 255);
  color: #1c2331;
  font-size: 14px;
  font-weight: 400;
  line-height: 15.4px;
  white-space: nowrap;
  box-shadow:
    0 0.6px 0.6px -1.25px rgba(42, 40, 46, 0.36),
    0 2.3px 2.3px -2.5px rgba(42, 40, 46, 0.32),
    0 10px 10px -3.75px rgba(42, 40, 46, 0.13);
}

.news-pill span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 4px 8px 5px;
  border-radius: 20px;
  background: #155eef;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 15.4px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 1180px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 96px;
  line-height: 0.98;
  font-weight: 300;
  font-family: var(--font-display);
  font-optical-sizing: auto;
}

h1 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.hero-copy {
  max-width: 710px;
  margin: 30px auto 0;
  color: rgba(27, 34, 48, 0.78);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

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

.platform-orbit {
  position: relative;
  z-index: 2;
  display: block;
  width: min(760px, calc(100% - 140px));
  align-items: stretch;
  margin: 0 auto 54px;
  padding: 14px;
  border: 1px solid rgba(214, 220, 231, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 249, 252, 0.9)),
    #f8f9f7;
  box-shadow: 0 30px 90px rgba(14, 28, 62, 0.15);
  backdrop-filter: blur(18px);
}

.hero-support-section {
  order: 3;
  overflow: hidden;
  padding-top: 82px;
  padding-bottom: 76px;
  background: transparent;
}

.orbit-label {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sync-document,
.integration-row {
  border: 1px solid rgba(215, 220, 229, 0.96);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(13, 18, 35, 0.08);
}

.sync-document {
  display: grid;
  min-height: 418px;
  padding: 24px;
}

.sync-document-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.sync-document-top img {
  display: block;
  width: 104px;
  height: auto;
}

.share-control {
  display: grid;
  min-width: 184px;
  min-height: 46px;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(5, 6, 7, 0.13);
  border-radius: 999px;
  background: #fafaf8;
  color: #596174;
  font-size: 14px;
  font-weight: 780;
}

.share-control span {
  display: grid;
  place-items: center;
}

.share-control span + span {
  border-left: 1px solid rgba(5, 6, 7, 0.12);
  color: var(--blue);
}

.sync-document h3 {
  max-width: 550px;
  margin: 12px 0 22px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  font-optical-sizing: auto;
  line-height: 1.05;
}

.sync-brief {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.sync-brief div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(5, 6, 7, 0.08);
}

.sync-brief span,
.sync-metrics span,
.integration-row span {
  color: #737a86;
  font-size: 13px;
  font-weight: 690;
  line-height: 1.3;
}

.sync-brief strong {
  color: #252a35;
  font-size: 18px;
  font-weight: 760;
  line-height: 1.25;
}

.sync-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-self: end;
}

.sync-metrics div {
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(222, 226, 235, 0.94);
  border-radius: 8px;
  background: #fbfcff;
}

.sync-metrics strong {
  display: grid;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
}

.floating-social-cloud {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.floating-app {
  position: absolute;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(218, 225, 236, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 54px rgba(13, 18, 35, 0.15);
  animation: float-icon 7s ease-in-out infinite;
  backdrop-filter: blur(16px);
}

.floating-app img {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: contain;
}

.app-discord {
  top: 34px;
  left: -84px;
}

.app-tiktok {
  top: 164px;
  left: -122px;
  animation-delay: -1.4s;
}

.app-instagram {
  bottom: 78px;
  left: -70px;
  animation-delay: -2.8s;
}

.app-snapchat {
  top: -28px;
  right: 86px;
  animation-delay: -0.7s;
}

.app-youtube {
  top: 74px;
  right: -92px;
  animation-delay: -2s;
}

.app-notion {
  right: -116px;
  bottom: 122px;
  animation-delay: -3.2s;
}

.app-slack {
  right: 112px;
  bottom: -30px;
  animation-delay: -4s;
}

.app-drive {
  right: -66px;
  bottom: 18px;
  animation-delay: -5s;
}

.integration-stack {
  display: grid;
  gap: 10px;
  align-content: start;
}

.integration-row {
  display: grid;
  min-height: 62px;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
}

.integration-row strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 820;
  line-height: 1.1;
}

.integration-row div {
  display: block;
  min-width: 0;
}

.integration-icon {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(221, 226, 235, 0.78);
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 10px 22px rgba(13, 18, 35, 0.08);
}

.integration-icon img {
  position: relative;
  z-index: 2;
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: contain;
}

.hero-media-board {
  position: relative;
  z-index: 2;
  width: min(1010px, 100%);
  height: 400px;
  margin: 0 auto 48px;
}

.photo-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(11, 16, 28, 0.18);
}

.photo-card img,
.editorial-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card-qr img,
.editorial-wide img {
  object-position: center 68%;
}

.photo-card-wide img {
  object-position: center 44%;
}

.photo-card::after,
.editorial-shot::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image: url("assets/grain.svg");
  background-size: 256px 256px;
  opacity: 0.065;
  pointer-events: none;
}

.photo-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  gap: 3px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: #171a21;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
  backdrop-filter: blur(14px);
}

.photo-card figcaption span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-card-large {
  top: 16px;
  left: 50%;
  width: 390px;
  height: 310px;
  transform: translateX(-50%) rotate(1deg);
}

.photo-card-qr {
  top: 76px;
  left: 0;
  width: 260px;
  height: 326px;
  transform: rotate(-5deg);
}

.photo-card-wide {
  top: 104px;
  right: 0;
  width: 330px;
  height: 220px;
  transform: rotate(4deg);
}

.proof-band {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 40px));
  min-height: 108px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(221, 227, 239, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.proof-band div {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.proof-band strong {
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.proof-band span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 690;
}

.loop-section {
  position: relative;
  order: 4;
  overflow: hidden;
  background: transparent;
}

.loop-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: url("assets/grain.svg");
  background-size: 256px 256px;
  opacity: 0.075;
  mix-blend-mode: multiply;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 88%);
  pointer-events: none;
}

.loop-layout {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: 0.82fr 1.18fr;
  gap: 38px;
  align-items: center;
  margin: 0 auto;
}

.community-poster {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(5, 6, 7, 0.08);
  border-radius: 8px;
  background: #050607;
  box-shadow: 0 28px 80px rgba(14, 30, 70, 0.16);
}

.community-poster > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.community-poster::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background-image: url("assets/grain.svg");
  background-size: 256px 256px;
  opacity: 0.18;
  mix-blend-mode: soft-light;
}

.community-poster::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.02) 0%, rgba(5, 6, 7, 0.18) 42%, rgba(5, 6, 7, 0.82) 100%),
    linear-gradient(90deg, rgba(21, 94, 239, 0.36), transparent 62%);
}

.community-poster figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 3;
  display: grid;
  gap: 12px;
  color: #fff;
}

.community-poster span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(21, 94, 239, 0.92);
  font-size: 12px;
  font-weight: 880;
  text-transform: uppercase;
}

.community-poster strong {
  max-width: 370px;
  font-size: 52px;
  line-height: 0.96;
  font-family: var(--font-display);
  font-weight: 300;
  font-optical-sizing: auto;
}

.community-poster small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 760;
}

.loop-copy h2 {
  max-width: 700px;
}

.loop-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: #4a5366;
  font-size: 18px;
  line-height: 1.55;
}

.loop-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.loop-map::before {
  position: absolute;
  top: 50%;
  left: 30px;
  right: 30px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(21, 94, 239, 0), rgba(21, 94, 239, 0.45), rgba(21, 94, 239, 0));
}

.loop-map::after {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 50%;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, rgba(21, 94, 239, 0), rgba(21, 94, 239, 0.42), rgba(21, 94, 239, 0));
}

.loop-node {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 198px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(219, 226, 238, 0.98);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(14, 30, 70, 0.095);
}

.loop-node span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  background: rgba(21, 94, 239, 0.1);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.loop-node strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.05;
}

.loop-node p {
  margin: 10px 0 0;
  color: #596174;
  font-size: 14px;
  line-height: 1.45;
}

.mini-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
}

.mini-logo-row img {
  display: block;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(225, 231, 242, 0.95);
  border-radius: 10px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 10px 22px rgba(11, 16, 28, 0.11);
}

.section {
  padding: 116px 20px;
}

.section-heading {
  width: min(1000px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

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

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 4.3vw, 54px);
  line-height: 1.08;
  font-weight: 560;
  font-family: var(--font-geist);
  text-wrap: balance;
}

.section-heading p,
.ops-main p,
.results-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.section-heading p {
  margin: 20px auto 0;
  max-width: 690px;
}

.moodboard-section {
  position: relative;
  order: 5;
  overflow: hidden;
  background: transparent;
  color: var(--text);
}

.moodboard-section::before {
  position: absolute;
  inset: -180px 0;
  content: "";
  background:
    radial-gradient(1100px 780px at 12% 20%, rgba(21, 94, 239, 0.12) 0%, rgba(21, 94, 239, 0.05) 42%, rgba(21, 94, 239, 0) 78%),
    radial-gradient(980px 720px at 86% 24%, rgba(123, 97, 255, 0.12) 0%, rgba(123, 97, 255, 0.046) 45%, rgba(123, 97, 255, 0) 80%),
    linear-gradient(180deg, rgba(236, 243, 255, 0) 0%, rgba(236, 243, 255, 0.48) 32%, rgba(243, 240, 255, 0.36) 68%, rgba(248, 251, 255, 0) 100%);
  filter: blur(28px);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 20%, #000 48%, rgba(0, 0, 0, 0.42) 78%, transparent 100%);
  pointer-events: none;
}

.editorial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1220px, 100%);
  grid-template-columns: 0.74fr 1.26fr;
  gap: 18px;
  align-items: stretch;
  margin: 0 auto;
}

.editorial-copy {
  display: grid;
  align-content: center;
  min-height: 332px;
  padding: 26px 10px 26px 26px;
}

.editorial-copy h2 {
  max-width: 740px;
  color: var(--ink);
}

.editorial-copy p:last-child {
  max-width: 520px;
  color: rgba(53, 63, 82, 0.76);
  font-size: 18px;
  line-height: 1.55;
}

.editorial-shot {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 26px 70px rgba(14, 30, 70, 0.16);
}

.editorial-wide {
  min-height: 690px;
  grid-row: span 2;
}

.editorial-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.editorial-stack .editorial-shot {
  min-height: 340px;
}

.system-section {
  position: relative;
  order: 2;
  overflow: hidden;
  margin-top: -1px;
  padding-top: 52px;
  background: transparent;
}

.system-section::before {
  position: absolute;
  inset: -140px 0 -180px;
  content: "";
  background:
    radial-gradient(1240px 820px at 50% 20%, rgba(21, 94, 239, 0.082) 0%, rgba(21, 94, 239, 0.034) 42%, rgba(21, 94, 239, 0) 78%),
    radial-gradient(980px 720px at 78% 64%, rgba(123, 97, 255, 0.052) 0%, rgba(123, 97, 255, 0.024) 44%, rgba(123, 97, 255, 0) 80%);
  filter: blur(24px);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.36) 24%, #000 52%, rgba(0, 0, 0, 0.42) 78%, transparent 100%);
  pointer-events: none;
}

.system-section .section-heading h2 {
  max-width: 1040px;
  margin: 0 auto;
}

.system-section .section-heading {
  width: min(1040px, 100%);
}

.system-section .section-heading,
.system-showcase {
  position: relative;
  z-index: 2;
}

.system-social-cloud {
  z-index: 1;
}

.system-social-cloud .floating-app {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  opacity: 0.96;
  box-shadow: 0 28px 70px rgba(13, 18, 35, 0.17);
}

.system-social-cloud .floating-app img {
  width: 60px;
  height: 60px;
  border-radius: 18px;
}

.system-social-cloud .app-discord {
  top: 300px;
  left: max(30px, calc(50% - 720px));
}

.system-social-cloud .app-tiktok {
  top: 526px;
  left: max(20px, calc(50% - 760px));
}

.system-social-cloud .app-instagram {
  bottom: 210px;
  left: max(54px, calc(50% - 650px));
}

.system-social-cloud .app-snapchat {
  top: 266px;
  right: max(40px, calc(50% - 650px));
}

.system-social-cloud .app-youtube {
  top: 506px;
  right: max(18px, calc(50% - 756px));
}

.system-social-cloud .app-notion {
  right: max(46px, calc(50% - 650px));
  bottom: 230px;
}

.system-social-cloud .app-slack {
  right: max(292px, calc(50% - 188px));
  bottom: 94px;
}

.system-social-cloud .app-drive {
  right: max(188px, calc(50% - 320px));
  bottom: 96px;
}

.system-social-cloud .app-snapchat img {
  object-fit: cover;
}

.system-social-cloud .app-drive img {
  width: 58px;
  height: 58px;
}

.system-showcase {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin: 0 auto;
}

.system-window {
  overflow: hidden;
  border: 1px solid rgba(219, 226, 238, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 72px rgba(18, 34, 70, 0.11);
}

.system-window header {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(229, 233, 241, 0.96);
}

.system-window h3 {
  margin: 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.05;
}

.window-body {
  padding: 22px;
}

.window-status {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-style: normal;
  font-weight: 820;
  white-space: nowrap;
}

.window-status.active,
.window-status.approved {
  background: rgba(88, 190, 116, 0.18);
  color: #268044;
}

.window-status.files,
.files-row span {
  background: rgba(80, 150, 226, 0.18);
  color: #2874c5;
}

.system-field {
  display: grid;
  gap: 8px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(5, 6, 7, 0.08);
}

.system-field + .system-field {
  padding-top: 20px;
}

.system-field span,
.proof-row span,
.files-row strong {
  color: #6d7480;
  font-size: 14px;
  font-weight: 820;
}

.system-field strong {
  color: #141821;
  font-size: 17px;
  line-height: 1.25;
}

.split-field,
.school-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.split-field > div,
.school-field > div {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.split-field em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(88, 190, 116, 0.18);
  color: #268044;
  font-size: 13px;
  font-style: normal;
  font-weight: 820;
}

.school-field b {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid rgba(80, 150, 226, 0.28);
  border-radius: 50%;
  color: #3572bc;
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
}

.school-logo-img {
  display: block;
  width: 86px;
  height: auto;
  flex: 0 0 auto;
  padding: 4px;
  border: 1px solid rgba(255, 183, 27, 0.36);
  border-radius: 8px;
  background: #fff;
}

.progress-track {
  display: grid;
  height: 9px;
  grid-template-columns: 2.2fr 0.9fr 0.35fr;
  overflow: hidden;
  margin-top: 20px;
  border-radius: 999px;
  background: #edf3fb;
}

.progress-track span:nth-child(1) {
  background: #6fc684;
}

.progress-track span:nth-child(2) {
  background: #3f78bd;
}

.progress-track span:nth-child(3) {
  background: #86bef6;
}

.program-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-top: 18px;
}

.program-steps span {
  display: grid;
  min-height: 31px;
  place-items: center;
  border: 1px solid rgba(21, 94, 239, 0.13);
  border-radius: 8px;
  background: rgba(21, 94, 239, 0.055);
  color: var(--blue);
  font-size: 12px;
  font-weight: 860;
}

.program-flow-list {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.program-flow-list div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid rgba(221, 227, 238, 0.96);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(18, 34, 70, 0.05);
}

.program-flow-list span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: #050607;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.program-flow-list strong {
  color: #202632;
  font-size: 13px;
  line-height: 1.25;
}

.campaign-window,
.verify-window {
  transform: translateY(34px);
}

.review-window {
  transform: translateY(76px);
}

.files-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.files-row span {
  display: inline-flex;
  min-width: 42px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
}

.student-file-list {
  display: grid;
  gap: 10px;
}

.student-file {
  display: grid;
  min-height: 82px;
  grid-template-columns: 62px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(221, 227, 238, 0.96);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(18, 34, 70, 0.055);
}

.student-file.active-student {
  border-color: rgba(21, 94, 239, 0.22);
  background: linear-gradient(180deg, #ffffff, #f7faff);
}

.student-file img {
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.student-file:nth-child(1) img {
  object-position: center 38%;
}

.student-file:nth-child(2) img {
  object-position: center 28%;
}

.student-file:nth-child(3) img {
  object-position: center 34%;
}

.student-file div {
  min-width: 0;
}

.student-file strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.1;
}

.student-file span,
.student-file p,
.student-summary span,
.proof-chip span {
  color: #707887;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.student-file p {
  margin: 4px 0 0;
  font-weight: 640;
}

.student-file em {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(21, 94, 239, 0.1);
  color: var(--blue);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.student-summary {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(21, 94, 239, 0.14);
  border-radius: 8px;
  background: rgba(21, 94, 239, 0.05);
}

.student-summary strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.bench-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.bench-strip img {
  display: block;
  width: 28px;
  height: 28px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 14px rgba(18, 34, 70, 0.12);
}

.bench-strip img + img {
  margin-left: -10px;
}

.bench-strip span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 830;
}

.creative-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(5, 6, 7, 0.08);
}

.creative-strip figure {
  position: relative;
  height: 116px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(5, 6, 7, 0.12);
  border-radius: 8px;
  background: #050607;
}

.creative-strip img,
.proof-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creative-strip figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(5, 6, 7, 0.05), rgba(5, 6, 7, 0.64));
}

.creative-strip figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  z-index: 1;
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}

.review-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.review-actions button,
.upload-control,
.submit-proof,
.proof-thumbs button {
  border: 1px solid rgba(205, 213, 227, 0.98);
  border-radius: 8px;
  background: #fff;
  color: #222833;
  font-weight: 820;
}

.review-actions button {
  min-width: 104px;
  min-height: 46px;
}

.review-actions button:last-child {
  border-color: transparent;
  background: #eff3f9;
}

.upload-control {
  width: 100%;
  min-height: 46px;
  margin-bottom: 22px;
}

.proof-row {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(5, 6, 7, 0.08);
}

.proof-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 50px;
  gap: 10px;
  align-items: stretch;
}

.proof-thumbs img,
.proof-thumbs button {
  height: 54px;
  border-radius: 8px;
}

.proof-thumbs img {
  border: 1px solid rgba(5, 6, 7, 0.1);
}

.proof-thumbs button {
  display: grid;
  place-items: center;
  background: #eef3fb;
  color: #4a8ed8;
  font-size: 30px;
  font-weight: 300;
}

.submit-proof {
  width: 100%;
  min-height: 50px;
  margin-top: 22px;
  border: none;
  background: linear-gradient(90deg, #2167d8, #6aa8ea);
  color: #fff;
  box-shadow: 0 14px 28px rgba(21, 94, 239, 0.18);
}

.creator-chat {
  display: grid;
  gap: 10px;
}

.ops-channel {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid rgba(21, 94, 239, 0.14);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(21, 94, 239, 0.065), rgba(123, 97, 255, 0.045)), #fff;
}

.ops-channel span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 860;
}

.ops-channel strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.chat-message {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
}

.chat-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  object-fit: cover;
}

.circuit-avatar {
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.chat-message p {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(221, 227, 238, 0.96);
  border-radius: 8px;
  background: #fff;
  color: #4f5868;
  font-size: 13px;
  font-weight: 640;
  line-height: 1.35;
}

.chat-message strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 13px;
}

.student-message p {
  border-color: rgba(21, 94, 239, 0.14);
  background: rgba(21, 94, 239, 0.06);
}

.proof-stack {
  display: grid;
  gap: 9px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(5, 6, 7, 0.08);
}

.proof-chip {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(221, 227, 238, 0.96);
  border-radius: 8px;
  background: #fff;
}

.proof-chip img {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
}

.proof-chip strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.15;
}

.mission-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 14px;
}

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

.mission-card {
  border: 1px solid rgba(225, 230, 239, 0.96);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(15, 35, 73, 0.065);
}

.mission-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.05;
}

.mission-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.ops-section {
  position: relative;
  order: 6;
  overflow: hidden;
  background: transparent;
  color: var(--text);
}

.ops-section::before {
  position: absolute;
  inset: -170px 0;
  content: "";
  background:
    radial-gradient(1160px 760px at 80% 8%, rgba(21, 94, 239, 0.12) 0%, rgba(21, 94, 239, 0.044) 45%, rgba(21, 94, 239, 0) 80%),
    radial-gradient(900px 680px at 12% 82%, rgba(14, 122, 87, 0.06) 0%, rgba(14, 122, 87, 0.024) 46%, rgba(14, 122, 87, 0) 80%),
    linear-gradient(180deg, rgba(248, 251, 255, 0) 0%, rgba(235, 243, 255, 0.5) 42%, rgba(246, 250, 255, 0) 100%);
  filter: blur(30px);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.44) 22%, #000 52%, rgba(0, 0, 0, 0.44) 80%, transparent 100%);
  pointer-events: none;
}

.ops-board {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 38px;
  align-items: center;
}

.ops-main h2 {
  max-width: 680px;
  color: var(--ink);
}

.ops-main .eyebrow {
  color: var(--blue);
}

.ops-main p {
  max-width: 480px;
}

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

.workflow-item {
  display: grid;
  min-height: 86px;
  grid-template-columns: 94px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(221, 227, 238, 0.96);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(14, 30, 70, 0.08);
  backdrop-filter: blur(18px);
}

.workflow-item span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 880;
  text-transform: uppercase;
}

.workflow-item strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.missions-section {
  order: 7;
  background: transparent;
}

.mission-card {
  min-height: 250px;
  padding: 18px;
}

.mission-tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(21, 94, 239, 0.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.mission-tag.green {
  background: rgba(14, 122, 87, 0.1);
  color: var(--green);
}

.mission-tag.gold {
  background: rgba(198, 134, 25, 0.12);
  color: var(--gold);
}

.mission-tag.red {
  background: rgba(189, 61, 54, 0.1);
  color: var(--red);
}

.results-section {
  order: 8;
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: 1.32fr 0.88fr;
  gap: 38px;
  align-items: center;
  margin: 0 auto;
}

.results-section.section {
  padding-left: 20px;
  padding-right: 20px;
}

.results-copy p {
  margin-top: 20px;
}

.results-copy h2 {
  max-width: 740px;
}

.deliverables {
  display: grid;
  gap: 12px;
}

.deliverable-row {
  display: grid;
  min-height: 72px;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(225, 230, 239, 0.96);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 35, 73, 0.055);
}

.deliverable-row span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blue);
}

.deliverable-row:nth-child(2) span {
  background: var(--green);
}

.deliverable-row:nth-child(3) span {
  background: var(--lavender);
}

.deliverable-row:nth-child(4) span {
  background: var(--gold);
}

.deliverable-row:nth-child(5) span {
  background: var(--red);
}

.deliverable-row p {
  margin: 0;
  color: #2b3344;
  font-weight: 760;
}

body.modal-open {
  overflow: hidden;
}

.onboarding-shell[hidden] {
  display: none;
}

.onboarding-shell {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 28px;
  color: #fff;
}

.onboarding-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(21, 94, 239, 0.22), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(255, 183, 27, 0.16), transparent 26%),
    rgba(3, 4, 9, 0.78);
  backdrop-filter: blur(18px);
}

.onboarding-modal {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 36px));
  max-height: min(820px, calc(100vh - 42px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 76% 42%, rgba(21, 94, 239, 0.16), transparent 36%),
    radial-gradient(circle at 28% 78%, rgba(123, 97, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(21, 17, 34, 0.98), rgba(17, 25, 40, 0.98) 58%, rgba(19, 13, 32, 0.98));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
}

.onboarding-header {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
}

.step-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.step-kicker span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #7b61ff;
  box-shadow: 0 0 0 6px rgba(123, 97, 255, 0.13);
}

.onboarding-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.onboarding-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.onboarding-form {
  display: grid;
  max-height: calc(min(820px, calc(100vh - 42px)) - 78px);
  overflow-y: auto;
  padding: 34px 42px 34px;
}

.onboarding-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 34px;
}

.onboarding-progress span {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.onboarding-progress span.is-active {
  background: linear-gradient(90deg, #155eef, #7b61ff);
}

.onboarding-step {
  display: none;
  min-height: 390px;
  gap: 18px;
}

.onboarding-step.is-active {
  display: grid;
}

.modal-eyebrow {
  margin: 0 0 -4px;
  color: #78a5ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.onboarding-step h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: 44px;
  line-height: 1.02;
  font-weight: 760;
}

.onboarding-step p {
  max-width: 680px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 560;
}

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

.two-column {
  grid-template-columns: 1fr 1fr;
}

.onboarding-form label {
  display: grid;
  gap: 10px;
}

.onboarding-form label > span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.onboarding-form input,
.onboarding-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.onboarding-form input {
  height: 58px;
  padding: 0 18px;
}

.onboarding-form textarea {
  min-height: 118px;
  resize: vertical;
  padding: 16px 18px;
}

.onboarding-form input::placeholder,
.onboarding-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.onboarding-form input:focus,
.onboarding-form textarea:focus {
  border-color: rgba(120, 165, 255, 0.82);
  box-shadow:
    0 0 0 4px rgba(21, 94, 239, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.choice-row {
  position: relative;
  display: grid;
  min-height: 88px;
  grid-template-columns: 1fr 32px;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.052);
  cursor: pointer;
}

.compact-choice {
  min-height: 74px;
}

.choice-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-row > span {
  display: grid;
  gap: 6px;
}

.choice-row strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.1;
}

.choice-row small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  line-height: 1.35;
}

.choice-row::after {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  content: "";
}

.choice-row:has(input:checked) {
  border-color: rgba(120, 165, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(21, 94, 239, 0.2), rgba(123, 97, 255, 0.16)),
    rgba(255, 255, 255, 0.06);
}

.choice-row:has(input:checked)::after {
  border-color: #fff;
  box-shadow: inset 0 0 0 5px #155eef;
}

.confirm-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.052);
}

.confirm-card div {
  display: grid;
  min-height: 58px;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
}

.confirm-card div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.confirm-card span {
  color: rgba(255, 255, 255, 0.46);
  font-weight: 720;
}

.confirm-card strong {
  color: #fff;
  font-weight: 820;
  overflow-wrap: anywhere;
  text-align: right;
}

.form-error {
  min-height: 24px;
  margin: 6px 0 0;
  color: #ff7b7b;
  font-size: 15px;
  font-weight: 780;
}

.onboarding-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.onboarding-back,
.onboarding-next,
.onboarding-submit {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
}

.onboarding-back {
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  font-size: 18px;
}

.onboarding-back:not(:disabled):hover {
  color: #fff;
}

.onboarding-back:disabled {
  cursor: default;
  opacity: 0.42;
}

.onboarding-next,
.onboarding-submit {
  min-width: 196px;
  padding: 0 26px;
  background: #fff;
  color: #050607;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  font-size: 18px;
}

.onboarding-next:hover,
.onboarding-submit:hover {
  transform: translateY(-1px);
}

.meet-logo {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.site-footer {
  position: relative;
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 40px;
  border-top: 1px solid rgba(209, 218, 233, 0.78);
  background:
    radial-gradient(900px 500px at 84% 0%, rgba(21, 94, 239, 0.085) 0%, rgba(21, 94, 239, 0.03) 44%, rgba(21, 94, 239, 0) 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(239, 245, 255, 0.36));
  color: rgba(27, 34, 48, 0.72);
}

.footer-brand {
  color: var(--blue);
}

.site-footer p {
  margin: 0;
  color: rgba(60, 70, 89, 0.7);
  font-size: 14px;
  font-weight: 690;
}

@keyframes drift-left {
  from {
    transform: translateX(-48%);
  }
  to {
    transform: translateX(-54%);
  }
}

@keyframes drift-right {
  from {
    transform: translateX(-54%);
  }
  to {
    transform: translateX(-48%);
  }
}

@keyframes float-icon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@media (max-width: 980px) {
  .site-header {
    top: 20px;
    width: calc(100% - 48px);
    grid-template-columns: auto auto;
  }

  .brand-logo {
    width: 106px;
  }

  .header-actions {
    gap: 14px;
  }

  .ambassador-login {
    min-height: 46px;
    padding: 0 16px;
    font-size: 13px;
  }

  .login-cta {
    min-height: 46px;
    padding-left: 16px;
    font-size: 13px;
  }

  .login-cta::after {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 698px;
    padding: 182px 20px 50px;
  }

  .hero-photo {
    width: min(920px, calc(100% - 48px));
    height: 262px;
    clip-path: polygon(0 0, 100% 0, 93% 30%, 78% 62%, 60% 86%, 50% 100%, 40% 86%, 22% 62%, 7% 30%);
  }

  h1 {
    font-size: 72px;
  }

  h2 {
    font-size: 52px;
  }

  .hero-content {
    margin-bottom: 0;
  }

  .platform-orbit {
    width: min(680px, 100%);
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
    margin-bottom: 38px;
  }

  .floating-app {
    width: 60px;
    height: 60px;
    border-radius: 17px;
  }

  .floating-app img {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  .app-discord {
    left: -28px;
  }

  .app-tiktok {
    left: -38px;
  }

  .app-instagram {
    left: -22px;
  }

  .app-youtube {
    right: -32px;
  }

  .app-notion {
    right: -42px;
  }

  .app-drive {
    right: -22px;
  }

  .sync-document {
    min-height: auto;
  }

  .integration-stack {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media-board {
    display: grid;
    height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 34px;
  }

  .photo-card,
  .photo-card-large,
  .photo-card-qr,
  .photo-card-wide {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: auto;
    height: 260px;
    transform: none;
  }

  .photo-card-large {
    grid-column: span 2;
    height: 310px;
  }

  .proof-band,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .proof-band {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .loop-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .community-poster {
    min-height: 520px;
  }

  .system-showcase,
  .mission-grid,
  .ops-board,
  .results-section {
    grid-template-columns: 1fr 1fr;
  }

  .system-showcase {
    align-items: stretch;
  }

  .system-social-cloud .floating-app {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .system-social-cloud .floating-app img {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .system-social-cloud .app-discord {
    top: 346px;
    left: 16px;
  }

  .system-social-cloud .app-tiktok {
    top: 560px;
    left: 10px;
  }

  .system-social-cloud .app-instagram {
    top: 770px;
    bottom: auto;
    left: 18px;
  }

  .system-social-cloud .app-snapchat {
    top: 342px;
    right: 18px;
  }

  .system-social-cloud .app-youtube {
    top: 552px;
    right: 10px;
  }

  .system-social-cloud .app-notion {
    top: 768px;
    right: 20px;
    bottom: auto;
  }

  .system-social-cloud .app-slack {
    right: 48px;
    bottom: 32px;
  }

  .system-social-cloud .app-drive {
    right: auto;
    bottom: 34px;
    left: 48px;
  }

  .campaign-window,
  .review-window,
  .verify-window {
    transform: none;
  }

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

  .editorial-wide {
    min-height: 460px;
    grid-row: auto;
  }

  .editorial-copy {
    min-height: auto;
    padding: 18px 0;
  }

  .results-section,
  .ops-board {
    gap: 28px;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 50px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    padding: 2px 0;
  }

  .brand-logo {
    width: 94px;
  }

  .login-cta {
    min-height: 42px;
    gap: 9px;
    padding: 0 6px 0 12px;
    border-radius: 9px;
    font-size: 12px;
  }

  .login-cta::after {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-size: 15px;
  }

  .nav-cta {
    width: 42px;
    min-height: 42px;
    gap: 0;
    padding: 0;
    font-size: 0;
  }

  .nav-cta::after {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .hero {
    min-height: 652px;
    padding: 148px 16px 40px;
  }

  .campus-strip {
    display: none;
  }

  .hero-photo {
    top: 0;
    width: calc(100% - 8px);
    height: 202px;
    clip-path: polygon(0 0, 100% 0, 96% 31%, 82% 61%, 62% 85%, 50% 100%, 38% 85%, 18% 61%, 4% 31%);
  }

  .hero-photo img:first-child {
    object-position: center top;
  }

  .hero-content {
    width: calc(100vw - 90px);
    max-width: 300px;
    margin-bottom: 0;
  }

  .platform-orbit {
    width: 100%;
    margin-bottom: 30px;
  }

  .floating-app {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .floating-app img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .app-discord {
    top: -18px;
    left: 12px;
  }

  .app-tiktok {
    top: -18px;
    right: 18px;
    left: auto;
  }

  .app-instagram {
    bottom: -18px;
    left: 22px;
  }

  .app-snapchat {
    top: auto;
    right: 24px;
    bottom: -18px;
  }

  .app-youtube,
  .app-notion {
    display: none;
  }

  .system-social-cloud .floating-app {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    opacity: 0.9;
  }

  .system-social-cloud .floating-app img {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .system-social-cloud .app-slack,
  .system-social-cloud .app-drive {
    display: grid;
  }

  .system-social-cloud .app-discord {
    top: 426px;
    left: 16px;
  }

  .system-social-cloud .app-tiktok {
    top: 426px;
    right: auto;
    left: 92px;
  }

  .system-social-cloud .app-instagram {
    top: 426px;
    bottom: auto;
    left: 168px;
  }

  .system-social-cloud .app-snapchat {
    top: 426px;
    right: 16px;
    bottom: auto;
  }

  .system-social-cloud .app-slack {
    top: 486px;
    right: auto;
    bottom: auto;
    left: 110px;
  }

  .system-social-cloud .app-drive {
    top: 486px;
    right: 110px;
    bottom: auto;
    left: auto;
  }

  .sync-document {
    padding: 16px;
  }

  .sync-document-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
  }

  .sync-document-top img {
    width: 94px;
  }

  .share-control {
    width: 100%;
    min-width: 0;
  }

  .sync-document h3 {
    font-size: 30px;
  }

  .sync-metrics,
  .integration-stack {
    grid-template-columns: 1fr;
  }

  .sync-metrics div {
    min-height: 72px;
  }

  .integration-row {
    min-height: 64px;
    grid-template-columns: 42px 1fr;
  }

  .integration-icon {
    width: 42px;
    height: 42px;
  }

  .integration-icon img {
    width: 42px;
    height: 42px;
  }

  .news-pill {
    width: fit-content;
    max-width: calc(100% - 22px);
    min-height: 30px;
    gap: 5px;
    margin-bottom: 38px;
    padding: 3px 10px 3px 3px;
    font-size: 12px;
    white-space: nowrap;
  }

  .news-pill span {
    min-height: 24px;
    padding: 4px 8px 5px;
    font-size: 12px;
  }

  .hero-proof {
    width: fit-content;
    max-width: calc(100% - 22px);
    min-height: 38px;
    gap: 8px;
    margin-bottom: 10px;
    padding: 3px 12px 3px 5px;
    justify-content: center;
  }

  .proof-avatars img {
    width: 32px;
    height: 32px;
  }

  .proof-avatars img + img {
    margin-left: -9px;
  }

  .hero-proof strong {
    font-size: 12px;
    font-weight: 400;
  }

  h1 {
    width: 100%;
    max-width: 300px;
    font-size: 38px;
    line-height: 1;
    overflow-wrap: break-word;
  }

  .hero-copy,
  .section-heading p,
  .ops-main p,
  .results-copy p {
    font-size: 16px;
  }

  .hero-copy {
    max-width: 292px;
  }

  .hero-actions {
    width: min(100%, 292px);
    gap: 10px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions .primary-button,
  .hero-actions .ghost-button {
    width: 100%;
    min-width: 0;
    flex: 0 0 100%;
  }

  .meet-cta {
    gap: 8px;
    padding: 0 16px;
  }

  .meet-cta img {
    width: 20px;
    height: 20px;
  }

  .pulse-card {
    display: none;
  }

  .score-grid,
  .system-showcase,
  .mission-grid,
  .ops-board,
  .results-section,
  .editorial-grid,
  .editorial-stack,
  .loop-map {
    grid-template-columns: 1fr;
  }

  .system-showcase {
    gap: 14px;
  }

  .system-window header {
    min-height: 64px;
    padding: 16px;
  }

  .system-window h3 {
    font-size: 20px;
  }

  .window-body {
    padding: 16px;
  }

  .creative-strip {
    gap: 8px;
  }

  .creative-strip figure {
    height: 94px;
  }

  .proof-thumbs {
    grid-template-columns: repeat(4, 1fr) 44px;
    gap: 7px;
  }

  .community-poster {
    min-height: 470px;
  }

  .community-poster figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .community-poster strong {
    font-size: 40px;
  }

  .loop-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .loop-map::before,
  .loop-map::after {
    display: none;
  }

  .loop-node {
    min-height: auto;
  }

  .loop-node span {
    margin-bottom: 22px;
  }

  .hero-media-board {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 26px;
  }

  .photo-card-large {
    grid-column: auto;
  }

  .photo-card,
  .photo-card-large,
  .photo-card-qr,
  .photo-card-wide {
    height: 244px;
  }

  .photo-card figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .proof-band strong {
    font-size: 28px;
  }

  .section {
    padding: 76px 16px;
  }

  h2 {
    font-size: 38px;
  }

  .editorial-wide,
  .editorial-stack .editorial-shot {
    min-height: 270px;
  }

  .mission-tag {
    margin-bottom: 32px;
  }

  .workflow-item {
    grid-template-columns: 1fr;
  }

  .results-section.section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .site-footer {
    padding: 24px 20px;
  }
}

@media (max-width: 680px) {
  .onboarding-shell {
    align-items: stretch;
    padding: 10px;
  }

  .onboarding-modal {
    width: 100%;
    max-height: calc(100vh - 20px);
    border-radius: 24px;
  }

  .onboarding-header {
    min-height: 64px;
    padding: 0 18px;
  }

  .step-kicker {
    gap: 10px;
    font-size: 13px;
  }

  .onboarding-form {
    max-height: calc(100vh - 84px);
    padding: 22px 18px 20px;
  }

  .onboarding-progress {
    margin-bottom: 24px;
  }

  .onboarding-step {
    min-height: auto;
    gap: 14px;
  }

  .onboarding-step h2 {
    font-size: 32px;
  }

  .onboarding-step p {
    font-size: 15px;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .onboarding-form input {
    height: 54px;
  }

  .choice-row {
    min-height: 78px;
    grid-template-columns: 1fr 28px;
    padding: 15px;
  }

  .choice-row strong {
    font-size: 17px;
  }

  .choice-row small {
    font-size: 13px;
  }

  .confirm-card div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .confirm-card strong {
    text-align: left;
  }

  .onboarding-footer {
    align-items: stretch;
    flex-direction: column-reverse;
    gap: 12px;
  }

  .onboarding-next,
  .onboarding-submit {
    width: 100%;
    min-width: 0;
  }

  .onboarding-back {
    min-height: 38px;
    justify-content: flex-start;
  }
}

/* ─── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-i, 0) * 90ms);
}

.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
