/* Voltr landing-page redesign prototype.
   This layer intentionally sits after the current marketing styles so the
   existing pricing, FAQ, and conversion behavior remain intact. */

:root {
  --redesign-paper: var(--bg);
  --redesign-paper-2: var(--s3);
  --redesign-card: var(--s1);
  --redesign-ink: var(--text);
  --redesign-muted: var(--text2);
  --redesign-line: var(--border);
  --redesign-green: var(--volt);
  --redesign-green-dark: var(--volt-on, #111111);
  --redesign-green-soft: var(--volt-dim);
  --redesign-radius: 30px;
  --maxw: 1240px;
}

body {
  background: var(--redesign-paper);
  color: var(--redesign-ink);
}

.container {
  max-width: var(--maxw);
  padding-inline: 32px;
}

/* Navigation: fewer choices, more breathing room, less toolbar chrome. */
.nav {
  top: 20px;
  width: calc(100% - 48px);
  max-width: 1180px;
  min-height: 64px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(16, 17, 15, 0.08);
  border-radius: 18px;
  background: rgba(255, 254, 250, 0.82);
  box-shadow: 0 18px 55px -38px rgba(16, 17, 15, 0.42), 0 2px 8px rgba(16, 17, 15, 0.04);
}

.nav-brand {
  gap: 10px;
}

.nav-brand img {
  width: 30px;
  height: 30px;
}

.nav-brand span {
  font-family: var(--ui);
  font-size: 20px;
  font-weight: 700;
}

.nav-links {
  gap: 8px;
}

.nav-links a {
  padding: 9px 14px;
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #5f615a;
}

.nav-links a:hover {
  color: var(--redesign-ink);
  background: rgba(16, 17, 15, 0.045);
}

.nav-login {
  padding-inline: 16px;
  color: #5f615a;
}

.nav-cta {
  min-height: 42px;
  padding: 10px 19px;
  color: var(--volt-on, #111111);
  box-shadow: none;
}

.mobile-menu {
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.35s;
}

.mobile-menu.open {
  overflow-y: auto;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

#features,
#creators,
#community,
#results,
#field-proof,
#pricing,
#faq {
  scroll-margin-top: 96px;
}

/* Hero: a clear copy hierarchy followed by a single dominant product object. */
.hero {
  position: relative;
  padding: 138px 0 118px;
  overflow: hidden;
  background: var(--redesign-paper);
}

.hero::after {
  display: none;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
}

.hero-ambient::after {
  content: "";
  position: absolute;
  top: 88px;
  left: 50%;
  width: min(88vw, 1120px);
  height: 1px;
  transform: translateX(-50%);
  background: rgba(16, 17, 15, 0.08);
}

.hero-shell {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 1050px;
  margin-inline: auto;
  text-align: center;
}

.hero .tts-partner-badge {
  display: inline-flex;
  flex-direction: row;
  gap: 7px;
  min-height: 36px;
  margin: 0 auto 28px;
  padding: 7px 13px 7px 9px;
  border: 1px solid rgba(16, 17, 15, 0.09);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.86);
  box-shadow: 0 9px 28px -22px rgba(16, 17, 15, 0.45);
}

.hero .ttspb-top {
  gap: 7px;
}

.hero .ttspb-top svg {
  width: 19px;
  height: 19px;
}

.hero .ttspb-word {
  font-size: 13px;
  font-weight: 700;
}

.hero .ttspb-sub {
  padding: 0 0 0 8px;
  border-left: 1px solid var(--redesign-line);
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
  color: #6f7169;
}

.hero-h1 {
  max-width: 1030px;
  margin-inline: auto;
  font-size: clamp(68px, 8.4vw, 112px);
  line-height: 0.86;
  letter-spacing: 0;
  text-shadow: none;
}

.hero-h1 .disp-italic {
  display: inline-block;
  padding-right: 0.08em;
  color: var(--redesign-green);
}

.hero .lead {
  max-width: 650px;
  margin-top: 24px;
  color: #5f615a;
  font-family: var(--ui);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
}

.hero-ctas {
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.hero-ctas .btn-primary {
  min-height: 52px;
  padding-inline: 26px;
  color: var(--volt-on, #111111);
  box-shadow: 0 16px 30px -20px rgba(84, 215, 77, 0.72);
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: 15px;
  font-weight: 650;
}

.hero-text-link span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--redesign-line);
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-text-link:hover span {
  transform: translateY(3px);
  background: #fff;
}

.hero-trustedby {
  display: none;
}

.product-stage {
  position: relative;
  max-width: 1120px;
  margin: 62px auto 0;
  padding-inline: 24px;
  animation: productStageIn 0.8s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.product-stage::before {
  content: "";
  position: absolute;
  right: 4%;
  bottom: -48px;
  left: 4%;
  height: 120px;
  border-radius: 50%;
  background: rgba(84, 215, 77, 0.23);
  filter: blur(55px);
}

.product-browser {
  position: relative;
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, 0.84);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 44px 90px -38px rgba(16, 17, 15, 0.42), 0 7px 18px rgba(16, 17, 15, 0.07), inset 0 0 0 1px rgba(16, 17, 15, 0.08);
}

.product-browser-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--redesign-line);
  background: #f7f7f2;
  color: #8b8c85;
  font-family: var(--ui);
  font-size: 12px;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots i,
.results-browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d3d3cc;
}

.browser-dots i:first-child,
.results-browser-bar i:first-child {
  background: #ff6d62;
}

.browser-dots i:nth-child(2),
.results-browser-bar i:nth-child(2) {
  background: #ffbd3d;
}

.browser-dots i:nth-child(3),
.results-browser-bar i:nth-child(3) {
  background: #2ecb55;
}

.browser-address {
  padding: 6px 18px;
  border: 1px solid rgba(16, 17, 15, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.browser-live {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 6px;
  color: var(--volt-on, #111111);
  font-weight: 650;
}

.browser-live i,
.live-status i,
.agent-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--redesign-green);
  box-shadow: 0 0 0 4px rgba(87, 223, 79, 0.13);
}

.product-browser > img {
  width: 100%;
  height: auto;
  filter: saturate(0.82) contrast(1.02);
}

.stage-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 206px;
  padding: 13px 15px;
  border: 1px solid rgba(16, 17, 15, 0.08);
  border-radius: 16px;
  background: rgba(255, 254, 250, 0.93);
  box-shadow: 0 24px 55px -28px rgba(16, 17, 15, 0.5);
  backdrop-filter: blur(14px);
  animation: stageNoteFloat 5s ease-in-out infinite;
}

.stage-note-left {
  top: 27%;
  left: -8px;
}

.stage-note-right {
  right: -5px;
  bottom: 17%;
  animation-delay: -2.2s;
}

.stage-note-icon,
.stage-pulse {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--redesign-green-soft);
  color: var(--redesign-green-dark);
  font-size: 18px;
  font-weight: 800;
}

.stage-pulse::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--redesign-green);
  box-shadow: 0 0 0 6px rgba(87, 223, 79, 0.15);
}

.stage-note small,
.stage-note strong {
  display: block;
  font-family: var(--ui);
}

.stage-note small {
  margin-bottom: 2px;
  color: #868880;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.stage-note strong {
  color: var(--redesign-ink);
  font-size: 13px;
}

/* A quiet, static proof band replaces the moving logo marquee. */
.trust-band {
  border-block: 1px solid var(--redesign-line);
  background: rgba(255, 254, 250, 0.62);
}

.trust-band-inner {
  display: grid;
  grid-template-columns: 0.9fr auto 1.25fr;
  align-items: center;
  gap: 32px;
  min-height: 108px;
}

.trust-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.trust-label {
  color: #909188;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #363832;
  font-family: var(--ui);
  font-size: 13px;
}

.trust-logo img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.trust-logo-emm img {
  width: auto;
  height: 35px;
}

.trust-divider {
  width: 1px;
  height: 38px;
  background: var(--redesign-line);
}

/* Product story: fewer chapters, each with a distinct visual object. */
.features {
  padding: 150px 0;
  background: var(--redesign-paper);
}

.features > .container > .features-head,
.features > .container > .rows {
  display: none;
}

.story-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 66px;
}

.story-intro h2 {
  max-width: 720px;
  margin-top: 18px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: clamp(52px, 6.6vw, 82px);
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.story-intro > p {
  max-width: 520px;
  padding-bottom: 5px;
  color: var(--redesign-muted);
  font-family: var(--ui);
  font-size: 18px;
  line-height: 1.65;
}

.story-stack {
  display: grid;
  gap: 28px;
}

.story-card {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  min-height: 580px;
  overflow: hidden;
  border: 1px solid var(--redesign-line);
  border-radius: var(--redesign-radius);
  background: var(--redesign-card);
  box-shadow: 0 30px 80px -64px rgba(16, 17, 15, 0.52);
}

.story-card:nth-child(2) .story-copy {
  order: 2;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
}

.story-index {
  color: var(--redesign-green-dark);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.story-copy h3 {
  margin-top: 24px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.05em;
}

.story-copy p {
  margin-top: 24px;
  color: var(--redesign-muted);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.65;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.story-tags span {
  padding: 7px 10px;
  border: 1px solid var(--redesign-line);
  border-radius: 999px;
  color: #65675f;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 650;
}

.story-visual {
  position: relative;
  min-width: 0;
  margin: 16px;
  overflow: hidden;
  border-radius: 22px;
}

/* Discover illustration */
.signal-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  background: #e9ebe3;
}

.visual-toolbar,
.workflow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 17px;
  border: 1px solid rgba(16, 17, 15, 0.08);
  border-radius: 15px;
  background: rgba(255, 254, 250, 0.82);
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.live-status,
.agent-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #62735f;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.signal-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 13px;
}

.signal-summary > span {
  padding: 16px;
  border: 1px solid rgba(16, 17, 15, 0.07);
  border-radius: 13px;
  background: rgba(255, 254, 250, 0.66);
}

.signal-summary small,
.signal-summary strong,
.creator-result small,
.creator-result strong,
.workflow-row small,
.workflow-row strong,
.workflow-guardrail small,
.workflow-guardrail strong,
.content-card small,
.content-card strong,
.attribution-strip small,
.attribution-strip strong {
  display: block;
  font-family: var(--ui);
}

.signal-summary small {
  color: #8a8c83;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-summary strong {
  margin-top: 6px;
  color: #353731;
  font-size: 12px;
}

.creator-stack {
  display: grid;
  gap: 9px;
  margin-top: 13px;
}

.creator-result {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(16, 17, 15, 0.08);
  border-radius: 14px;
  background: rgba(255, 254, 250, 0.9);
  box-shadow: 0 12px 32px -26px rgba(16, 17, 15, 0.5);
}

.creator-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  color: var(--volt-on, #111111);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
}

.avatar-green {
  background: #a7e99f;
}

.avatar-warm {
  background: #e8c99f;
}

.avatar-dark {
  background: #a9aaa4;
}

.creator-result strong {
  color: #252721;
  font-size: 13px;
}

.creator-result small {
  margin-top: 4px;
  color: #898b82;
  font-size: 10px;
}

.creator-result > b {
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--redesign-green-soft);
  color: var(--redesign-green-dark);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

/* Recruit illustration */
.story-card-dark {
  border-color: rgba(255, 255, 255, 0.08);
  background: var(--volt-on, #111111);
}

.story-card-dark .story-index {
  color: var(--redesign-green);
}

.story-card-dark .story-copy h3 {
  color: #f6f6f0;
}

.story-card-dark .story-copy p {
  color: #a3a59c;
}

.story-card-dark .story-tags span {
  border-color: rgba(255, 255, 255, 0.11);
  color: #b7b9b0;
}

.workflow-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  background: #171a16;
}

.workflow-header {
  justify-content: flex-start;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #f5f5ef;
}

.volt-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 12px;
  background: rgba(87, 223, 79, 0.12);
}

.volt-mark img {
  width: 28px;
  height: 28px;
}

.workflow-header > span:nth-child(2) {
  min-width: 0;
  flex: 1;
}

.workflow-header small,
.workflow-header strong {
  display: block;
  font-family: var(--ui);
}

.workflow-header small {
  color: #8f9288;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.workflow-header strong {
  margin-top: 3px;
  font-size: 13px;
}

.agent-live {
  color: #aeb5a8;
}

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

.workflow-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.workflow-row > span:first-child {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.07);
  color: #b8bbb2;
  font-weight: 800;
}

.workflow-row strong,
.workflow-guardrail strong {
  color: #f0f1ea;
  font-size: 12px;
}

.workflow-row small,
.workflow-guardrail small {
  margin-top: 4px;
  color: #85887f;
  font-size: 10px;
}

.workflow-row > b {
  color: #7d8177;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.workflow-row.is-running {
  border-color: rgba(87, 223, 79, 0.34);
  background: rgba(87, 223, 79, 0.08);
}

.workflow-row.is-running > span:first-child {
  background: rgba(87, 223, 79, 0.14);
  color: var(--redesign-green);
}

.workflow-row.is-running > b {
  color: var(--redesign-green);
}

.workflow-guardrail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--redesign-green);
}

.workflow-guardrail > span:first-child {
  color: var(--volt-on, #111111);
  font-size: 18px;
}

.workflow-guardrail strong,
.workflow-guardrail small {
  color: var(--volt-on, #111111);
}

/* Scale illustration */
.scale-visual {
  display: grid;
  grid-template-columns: minmax(145px, 0.84fr) auto minmax(190px, 1.05fr);
  align-content: center;
  align-items: center;
  gap: 20px;
  padding: 34px;
  background: #eaebe5;
}

.content-card {
  padding: 10px;
  border: 1px solid rgba(16, 17, 15, 0.08);
  border-radius: 18px;
  background: rgba(255, 254, 250, 0.9);
  box-shadow: 0 20px 45px -34px rgba(16, 17, 15, 0.55);
}

.content-thumb {
  position: relative;
  display: flex;
  min-height: 190px;
  align-items: flex-end;
  overflow: hidden;
  padding: 13px;
  border-radius: 12px;
  background: #a8dda2;
}

.content-thumb::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.08);
}

.content-thumb span {
  position: relative;
  z-index: 1;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #34362f;
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.content-card > div:last-child {
  padding: 13px 7px 7px;
}

.content-card strong {
  color: #292b25;
  font-size: 12px;
}

.content-card small {
  margin-top: 4px;
  color: #898b83;
  font-size: 10px;
}

.flow-arrow {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--redesign-green);
  color: var(--volt-on, #111111);
  font-size: 18px;
  font-weight: 850;
}

.channel-stack {
  display: grid;
  gap: 9px;
}

.channel-stack > span {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(16, 17, 15, 0.08);
  border-radius: 13px;
  background: rgba(255, 254, 250, 0.86);
}

.channel-stack img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.channel-stack b {
  color: #30322c;
  font-family: var(--ui);
  font-size: 11px;
}

.channel-stack small {
  color: var(--redesign-green-dark);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.attribution-strip {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(16, 17, 15, 0.08);
  border-radius: 15px;
  background: rgba(255, 254, 250, 0.9);
}

.attribution-strip small {
  color: #8b8d85;
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.attribution-strip strong {
  margin-top: 4px;
  color: #2f312b;
  font-size: 12px;
}

.attribution-strip svg {
  width: 150px;
  color: var(--redesign-green-dark);
}

/* Creators: an editorial content rail backed by the real demo media used in-app. */
.creator-universe {
  position: relative;
  padding: 154px 0 142px;
  overflow: hidden;
  border-top: 1px solid var(--redesign-line);
  background: #f8f7f2;
}

.creator-universe::before {
  content: "CREATORS";
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(16, 17, 15, 0.025);
  font-family: var(--ui);
  font-size: clamp(150px, 22vw, 340px);
  font-weight: 760;
  letter-spacing: -0.085em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.creator-universe-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.68fr);
  align-items: end;
  gap: 86px;
}

.creator-universe-head h2 {
  margin-top: 20px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: clamp(60px, 7.5vw, 94px);
  font-weight: 680;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.creator-universe-head h2 span {
  color: var(--redesign-green-dark);
}

.creator-universe-summary > p {
  color: var(--redesign-muted);
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.68;
}

.creator-coverage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--redesign-line);
}

.creator-coverage span {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-height: 53px;
  padding: 15px 10px 13px 0;
  border-bottom: 1px solid var(--redesign-line);
  color: #53554e;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 620;
}

.creator-coverage span:nth-child(odd) {
  border-right: 1px solid var(--redesign-line);
}

.creator-coverage span:nth-child(even) {
  padding-left: 14px;
}

.creator-coverage b {
  color: var(--redesign-green-dark);
  font-family: var(--mono);
  font-size: 9px;
}

.creator-carousel-shell {
  position: relative;
  z-index: 2;
  margin-top: 72px;
}

.creator-carousel-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.creator-carousel-tools p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #73756d;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.creator-carousel-tools p span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--redesign-green);
  box-shadow: 0 0 0 5px rgba(87, 223, 79, 0.14);
}

.creator-carousel-buttons {
  display: flex;
  gap: 8px;
}

.creator-carousel-buttons button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--redesign-line);
  border-radius: 50%;
  background: rgba(255, 254, 250, 0.8);
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.creator-carousel-buttons button:hover {
  border-color: rgba(84, 215, 77, 0.45);
  background: var(--redesign-green-soft);
  transform: translateY(-2px);
}

.creator-carousel-buttons button:focus-visible,
.creator-carousel-track:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.creator-carousel-frame {
  padding-left: max(32px, calc((100vw - var(--maxw)) / 2 + 32px));
}

.creator-carousel-track {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 4px max(32px, calc((100vw - var(--maxw)) / 2 + 32px)) 34px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.creator-carousel-track::-webkit-scrollbar {
  display: none;
}

.creator-media-card {
  position: relative;
  flex: 0 0 clamp(270px, 24.5vw, 354px);
  height: 560px;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 15, 0.1);
  border-radius: 28px;
  background: #d9dbd3;
  box-shadow: 0 30px 70px -48px rgba(16, 17, 15, 0.65);
  scroll-snap-align: start;
}

.creator-media-card-tall {
  height: 610px;
  margin-top: 34px;
}

.creator-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.28);
  pointer-events: none;
}

.creator-media-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.creator-media-card:hover > img {
  transform: scale(1.035);
}

.creator-platform {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #242620;
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.creator-platform img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.creator-card-copy {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 25px;
  left: 24px;
}

.creator-card-copy small,
.creator-card-copy strong,
.creator-card-copy span {
  display: block;
  font-family: var(--ui);
}

.creator-card-copy small {
  color: var(--redesign-green);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.creator-card-copy strong {
  margin-top: 10px;
  color: #fff;
  font-size: clamp(24px, 2.4vw, 31px);
  font-weight: 630;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.creator-card-copy span {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.creator-product-card {
  display: grid;
  place-items: center;
  padding: 36px 34px 0;
  background: #151814;
}

.creator-product-card::after {
  display: none;
}

.creator-product-card > img {
  width: 82%;
  height: auto;
  max-height: 100%;
  align-self: end;
  object-fit: contain;
  object-position: top;
  border: 7px solid #292c27;
  border-bottom: 0;
  border-radius: 39px 39px 0 0;
  box-shadow: 0 35px 60px -24px rgba(0, 0, 0, 0.72);
}

.creator-product-card:hover > img {
  transform: translateY(-7px);
}

.creator-product-label {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(17, 17, 17, 0.82);
  backdrop-filter: blur(12px);
}

.creator-product-label > img {
  width: 27px;
  height: 29px;
  object-fit: contain;
}

.creator-product-label small,
.creator-product-label strong {
  display: block;
  font-family: var(--ui);
}

.creator-product-label small {
  color: #7e8379;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creator-product-label strong {
  margin-top: 2px;
  color: #f5f6ef;
  font-size: 11px;
}

/* Results: one strong proof moment, with the disclosure kept in context. */
.results-story {
  padding: 148px 0;
  background: var(--volt-on, #111111);
  color: #f7f7f1;
}

.results-story > .container:not(.results-grid) {
  display: none;
}

.results-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 82px;
}

.results-copy .eyebrow {
  color: #8f9489;
}

.results-stat {
  display: block;
  margin-top: 30px;
  color: var(--redesign-green);
  font-family: var(--display);
  font-size: clamp(104px, 13vw, 172px);
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: -0.02em;
}

.results-copy h2 {
  margin-top: 28px;
  color: #f6f6f0;
  font-family: var(--ui);
  font-size: clamp(32px, 4vw, 49px);
  font-weight: 620;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.results-copy p {
  margin-top: 23px;
  color: #a6aaa0;
  font-family: var(--ui);
  font-size: 14px;
  line-height: 1.65;
}

.results-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: #f4f4ee;
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 650;
}

.results-link span {
  color: var(--redesign-green);
}

.results-product {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: #171916;
  box-shadow: 0 48px 100px -48px rgba(0, 0, 0, 0.85);
}

.results-browser-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 48px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #858980;
  font-family: var(--ui);
  font-size: 10px;
}

.results-browser-bar > span {
  display: flex;
  gap: 6px;
}

.results-browser-bar b {
  color: #bdc0b7;
  font-size: 11px;
}

.results-browser-bar small {
  justify-self: end;
  color: var(--redesign-green);
  font-family: var(--mono);
  text-transform: uppercase;
}

.results-product img {
  width: 100%;
  height: auto;
  filter: saturate(0.72) brightness(0.92);
}

.results-product figcaption {
  padding: 15px 18px;
  color: #7f8379;
  font-family: var(--ui);
  font-size: 11px;
}

/* Community and Coaching: distinct product pillars with current Simulator UI. */
.creator-program {
  padding: 154px 0;
  background: var(--redesign-paper);
}

.creator-program-head {
  max-width: 910px;
}

.creator-program-head h2 {
  margin-top: 20px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: clamp(58px, 7vw, 88px);
  font-weight: 670;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.creator-program-head h2 span {
  color: var(--redesign-green-dark);
}

.creator-program-head > p {
  max-width: 670px;
  margin-top: 28px;
  color: var(--redesign-muted);
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.68;
}

.creator-program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 72px;
}

.program-card {
  overflow: hidden;
  border: 1px solid var(--redesign-line);
  border-radius: 30px;
  background: var(--redesign-card);
  box-shadow: 0 32px 80px -66px rgba(16, 17, 15, 0.58);
}

.program-card-copy {
  min-height: 372px;
  padding: 50px 48px 42px;
}

.program-number {
  color: var(--redesign-green-dark);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-card h3 {
  max-width: 460px;
  margin-top: 24px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: clamp(37px, 4vw, 52px);
  font-weight: 650;
  line-height: 0.99;
  letter-spacing: -0.052em;
}

.program-card-copy > p {
  max-width: 490px;
  margin-top: 22px;
  color: var(--redesign-muted);
  font-family: var(--ui);
  font-size: 15px;
  line-height: 1.65;
}

.program-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 25px;
}

.program-pills span {
  padding: 7px 10px;
  border: 1px solid var(--redesign-line);
  border-radius: 999px;
  color: #686a62;
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 650;
}

.program-screen-wrap {
  position: relative;
  display: flex;
  height: 530px;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding-top: 42px;
}

.program-card-community .program-screen-wrap {
  background: #dff3da;
}

.program-card-coaching .program-screen-wrap {
  background: var(--s3);
}

.program-screen-wrap > img {
  width: min(64%, 352px);
  height: auto;
  border: 7px solid #242722;
  border-bottom: 0;
  border-radius: 46px 46px 0 0;
  background: #fff;
  box-shadow: 0 40px 75px -28px rgba(16, 17, 15, 0.5);
  transform: translateY(10px);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.program-card:hover .program-screen-wrap > img {
  transform: translateY(0);
}

.program-screen-note {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 39px;
  padding: 9px 12px;
  border: 1px solid rgba(16, 17, 15, 0.08);
  border-radius: 13px;
  background: rgba(255, 254, 250, 0.9);
  color: #4e5049;
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 18px 38px -25px rgba(16, 17, 15, 0.55);
  backdrop-filter: blur(12px);
}

.program-screen-note i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--redesign-green);
  box-shadow: 0 0 0 4px rgba(87, 223, 79, 0.14);
}

.note-community {
  top: 84px;
  left: 34px;
}

.note-coaching {
  top: 112px;
  right: 31px;
}

/* Carry the calmer system through the existing lower-funnel sections. */
#mobile {
  padding: 150px 0 !important;
  background: var(--redesign-paper-2);
}

#mobile .mobile-inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(350px, 1.1fr) !important;
  gap: 110px !important;
}

#mobile .mobile-inner h2 {
  margin-top: 20px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: clamp(48px, 5.4vw, 68px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.055em;
  text-transform: none;
}

#mobile .mobile-inner h2 .disp-italic {
  color: var(--redesign-green-dark);
  font-family: inherit;
  font-style: normal;
}

#mobile .mobile-inner .lead {
  margin-top: 22px;
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.65;
}

#mobile .mobile-device {
  position: relative;
}

#mobile .mobile-device::before {
  content: "";
  position: absolute;
  top: 8%;
  right: 5%;
  bottom: 8%;
  left: 5%;
  border-radius: 50%;
  background: rgba(87, 223, 79, 0.2);
  filter: blur(50px);
}

.pricing {
  padding: 148px 0;
  background: #f8f7f2;
}

.pricing-head {
  max-width: 760px;
  margin-bottom: 58px;
}

.pricing-head h2 {
  margin-top: 18px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.055em;
  text-transform: none;
}

.pricing-head h2 .disp-italic {
  color: var(--redesign-green-dark);
  font-family: inherit;
  font-style: normal;
}

.pricing-builder {
  margin-top: 0;
  border: 1px solid var(--redesign-line);
  border-radius: 28px;
  box-shadow: 0 35px 90px -68px rgba(16, 17, 15, 0.58);
}

.pricing-builder-controls {
  padding: 46px;
}

.pricing-builder-result {
  background: #eeefe9;
}

.faq {
  padding: 140px 0;
  background: var(--redesign-card);
}

.faq-layout {
  gap: 96px;
}

.faq-sticky h2 {
  margin-top: 20px;
  font-family: var(--ui);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: none;
}

.faq-sticky h2 .disp-italic {
  color: var(--redesign-green-dark);
  font-family: inherit;
  font-style: normal;
}

.faq-q {
  padding-block: 25px;
  font-size: 16px;
}

.final-cta {
  padding: 132px 0;
  background: var(--volt-on, #111111);
}

.final-cta h2 {
  font-size: clamp(62px, 9vw, 112px);
}

.footer.marketing-footer {
  position: relative;
  padding: 100px 0 32px;
  overflow: hidden;
  border-top: 1px solid var(--redesign-line);
  background: #f7f6f0;
  color: var(--redesign-ink);
}

.footer.marketing-footer::before,
.footer.marketing-footer::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 470px;
  background: url("/voltr-bolt.png") center / contain no-repeat;
  opacity: 0.022;
  pointer-events: none;
}

.footer.marketing-footer::before {
  bottom: -240px;
  left: -115px;
  transform: rotate(-12deg);
}

.footer.marketing-footer::after {
  top: -235px;
  right: -120px;
  transform: rotate(18deg);
}

.marketing-footer .footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.8fr);
  align-items: start;
  gap: 86px;
}

.footer-brand-block {
  max-width: 280px;
}

.marketing-footer .footer-brand {
  display: inline-flex;
  gap: 11px;
  color: var(--redesign-ink);
}

.marketing-footer .footer-brand img {
  width: 37px;
  height: 40px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.marketing-footer .footer-brand span {
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.footer-brand-block > p {
  margin-top: 23px;
  color: #696b64;
  font-family: var(--ui);
  font-size: 14px;
  line-height: 1.62;
}

.footer-demo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 26px;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--redesign-green);
  color: var(--volt-on, #111111);
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 750;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-demo-link:hover {
  transform: translateY(-2px);
  background: #65e95e;
}

.footer-directory {
  display: grid;
  grid-template-columns: 1.08fr 1.08fr 1.08fr 0.8fr 0.9fr;
  gap: 34px;
}

.marketing-footer .footer-links,
.marketing-footer .footer-legal {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  margin: 0;
}

.marketing-footer .footer-links strong {
  margin-bottom: 18px;
  color: #22231f;
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.marketing-footer .footer-links a,
.marketing-footer .footer-legal a {
  display: flex;
  min-height: 34px;
  align-items: center;
  color: #83857d;
  font-family: var(--ui);
  font-size: 12px;
  line-height: 1.35;
}

.marketing-footer .footer-links a:hover,
.marketing-footer .footer-legal a:hover {
  color: var(--redesign-green-dark);
}

.marketing-footer .footer-copy {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 4px;
  padding-top: 28px;
  border-top: 1px solid var(--redesign-line);
  color: #92948c;
  font-family: var(--ui);
  font-size: 11px;
}

.footer-location {
  justify-self: center;
}

.marketing-footer .footer-social {
  display: flex;
  justify-self: end;
  gap: 7px;
}

.marketing-footer .footer-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--redesign-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  color: #70736a;
}

.marketing-footer .footer-social a:hover {
  border-color: rgba(84, 215, 77, 0.35);
  background: var(--redesign-green-soft);
  color: var(--redesign-green-dark);
}

.corner-element,
.back-to-top {
  display: none !important;
}

@keyframes productStageIn {
  from { opacity: 0; transform: translateY(28px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes stageNoteFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1080px) {
  .story-card {
    grid-template-columns: minmax(310px, 0.82fr) minmax(0, 1.18fr);
  }

  .story-copy {
    padding: 48px 40px;
  }

  .story-visual {
    margin: 12px;
  }

  .results-grid {
    gap: 52px;
  }

  #mobile .mobile-inner {
    gap: 64px !important;
  }

  .creator-universe-head {
    gap: 52px;
  }

  .program-card-copy {
    min-height: 400px;
    padding-inline: 38px;
  }

  .footer.marketing-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .footer-brand-block {
    max-width: 420px;
  }
}

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

  .story-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story-intro > p {
    max-width: 650px;
  }

  .story-card,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .creator-universe-head,
  .creator-program-grid {
    grid-template-columns: 1fr;
  }

  .creator-universe-summary {
    max-width: 680px;
  }

  .creator-program-grid {
    gap: 28px;
  }

  .program-card {
    display: grid;
    grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.16fr);
  }

  .program-card-copy {
    min-height: 0;
    align-self: center;
    padding: 48px 42px;
  }

  .program-screen-wrap {
    height: 590px;
  }

  .program-screen-wrap > img {
    width: min(72%, 350px);
  }

  .story-card:nth-child(2) .story-copy {
    order: 0;
  }

  .story-copy {
    padding: 54px 48px 38px;
  }

  .story-visual {
    min-height: 510px;
  }

  .results-product {
    order: -1;
  }

  .results-copy {
    max-width: 680px;
  }

  #mobile .mobile-inner {
    grid-template-columns: 1fr !important;
  }

  .footer-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 46px;
  }
}

@media (max-width: 800px) {
  .nav {
    width: calc(100% - 30px);
    min-height: 58px;
    border-radius: 16px;
  }

  .hero {
    padding: 116px 0 82px;
  }

  .hero-ambient::after {
    top: 80px;
  }

  .hero-h1 {
    font-size: clamp(56px, 13vw, 82px);
  }

  .product-stage {
    margin-top: 50px;
    padding-inline: 0;
  }

  .stage-note {
    display: none;
  }

  .trust-band-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 30px;
  }

  .trust-divider {
    width: 100%;
    height: 1px;
  }

  .trust-group {
    flex-wrap: wrap;
  }

  .features,
  .creator-universe,
  .results-story,
  .creator-program,
  .pricing,
  .faq {
    padding-block: 96px;
  }

  .creator-universe::before {
    top: 34px;
  }

  .creator-universe-head h2,
  .creator-program-head h2 {
    font-size: clamp(52px, 11vw, 72px);
  }

  .creator-carousel-shell,
  .creator-program-grid {
    margin-top: 52px;
  }

  .creator-media-card,
  .creator-media-card-tall {
    height: 530px;
    margin-top: 0;
  }

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

  .program-card-copy {
    padding: 48px 42px 40px;
  }

  .program-screen-wrap {
    height: 520px;
  }

  .story-intro {
    margin-bottom: 44px;
  }

  .story-card {
    min-height: 0;
    border-radius: 24px;
  }

  .story-visual {
    min-height: 480px;
  }

  .pricing-builder-controls {
    padding: 30px 24px;
  }

  .footer.marketing-footer {
    padding-top: 82px;
  }

  .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
  }

  .marketing-footer .footer-copy {
    grid-template-columns: 1fr auto;
  }

  .footer-location {
    display: none;
  }
}

@media (max-width: 600px) {
  .container {
    padding-inline: 20px;
  }

  .hero .tts-partner-badge {
    margin-bottom: 22px;
  }

  .hero-h1 {
    line-height: 0.89;
  }

  .hero .lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 17px;
    margin-top: 26px;
  }

  .product-stage {
    margin-inline: -8px;
  }

  .product-browser {
    border-width: 6px;
    border-radius: 18px;
  }

  .product-browser-bar {
    grid-template-columns: 1fr auto;
    min-height: 38px;
    padding-inline: 11px;
  }

  .browser-address {
    display: none;
  }

  .trust-group {
    gap: 18px;
  }

  .trust-label {
    width: 100%;
    text-align: center;
  }

  .story-intro h2 {
    font-size: 48px;
  }

  .creator-universe-head h2,
  .creator-program-head h2 {
    font-size: 48px;
  }

  .creator-universe-summary > p,
  .creator-program-head > p {
    font-size: 16px;
  }

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

  .creator-coverage span:nth-child(odd) {
    border-right: 0;
  }

  .creator-coverage span:nth-child(even) {
    padding-left: 0;
  }

  .creator-carousel-frame {
    padding-left: 20px;
  }

  .creator-carousel-track {
    gap: 12px;
    padding-right: 20px;
  }

  .creator-media-card,
  .creator-media-card-tall {
    flex-basis: min(79vw, 310px);
    height: 500px;
    border-radius: 23px;
  }

  .creator-carousel-buttons button {
    width: 42px;
    height: 42px;
  }

  .creator-card-copy {
    right: 20px;
    bottom: 21px;
    left: 20px;
  }

  .creator-card-copy strong {
    font-size: 26px;
  }

  .story-intro > p {
    font-size: 16px;
  }

  .story-copy {
    padding: 42px 28px 30px;
  }

  .story-copy h3 {
    font-size: 38px;
  }

  .story-visual {
    min-height: 430px;
    margin: 8px;
    border-radius: 18px;
  }

  .signal-visual,
  .workflow-visual,
  .scale-visual {
    padding: 17px;
  }

  .signal-summary {
    grid-template-columns: 1fr;
  }

  .signal-summary > span:nth-child(n + 2) {
    display: none;
  }

  .creator-result {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .creator-result > b {
    display: none;
  }

  .workflow-row {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .workflow-row > b {
    display: none;
  }

  .scale-visual {
    grid-template-columns: minmax(110px, 0.78fr) auto minmax(130px, 1fr);
    gap: 9px;
  }

  .content-thumb {
    min-height: 155px;
  }

  .channel-stack > span {
    grid-template-columns: 23px minmax(0, 1fr);
    padding: 10px;
  }

  .channel-stack small {
    display: none;
  }

  .flow-arrow {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .attribution-strip svg {
    display: none;
  }

  .results-grid {
    gap: 44px;
  }

  .results-product {
    border-radius: 18px;
  }

  .results-copy h2 {
    font-size: 36px;
  }

  .creator-program-grid {
    gap: 18px;
  }

  .program-card {
    border-radius: 24px;
  }

  .program-card-copy {
    padding: 38px 28px 32px;
  }

  .program-card h3 {
    font-size: 38px;
  }

  .program-screen-wrap {
    height: 440px;
    padding-top: 32px;
  }

  .program-screen-wrap > img {
    width: min(70%, 300px);
    border-width: 6px;
    border-radius: 39px 39px 0 0;
  }

  .program-screen-note {
    display: none;
  }

  #mobile {
    padding: 88px 0 !important;
  }

  #mobile .mobile-inner h2,
  .pricing-head h2 {
    font-size: 46px;
  }

  .faq-layout {
    gap: 42px;
  }

  .footer.marketing-footer {
    padding: 70px 0 28px;
  }

  .footer.marketing-footer .footer-inner {
    gap: 48px;
  }

  .footer-brand-block {
    max-width: none;
  }

  .footer-directory {
    gap: 34px 22px;
  }

  .marketing-footer .footer-links strong {
    margin-bottom: 12px;
  }

  .marketing-footer .footer-links a,
  .marketing-footer .footer-legal a {
    min-height: 42px;
    font-size: 12px;
  }

  .marketing-footer .footer-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .marketing-footer .footer-social {
    justify-self: start;
    order: -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-stage,
  .stage-note {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   Movement revision

   The landing page is paced as an editorial story: belief, real product,
   network scale, proof, and community. These overrides intentionally remove
   the repeated SaaS-card rhythm from the earlier prototype.
   -------------------------------------------------------------------------- */

/* A fuller information architecture without turning the nav into a sitemap. */
.nav {
  width: calc(100% - 64px);
  max-width: 1260px;
  padding-inline: 18px 12px;
}

.nav-links {
  gap: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a,
.nav-resources summary {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5f615a;
  cursor: pointer;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 620;
  letter-spacing: -0.01em;
  list-style: none;
  text-transform: none;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-resources summary::-webkit-details-marker {
  display: none;
}

.nav-resources summary:hover,
.nav-resources details[open] summary {
  background: rgba(16, 17, 15, 0.045);
  color: var(--redesign-ink);
}

.nav-resources summary span {
  transform: translateY(-1px);
  transition: transform 0.18s ease;
}

.nav-resources details[open] summary span {
  transform: rotate(180deg) translateY(1px);
}

.nav-resource-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  width: 286px;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(16, 17, 15, 0.09);
  border-radius: 16px;
  background: rgba(255, 254, 250, 0.98);
  box-shadow: 0 26px 60px -32px rgba(16, 17, 15, 0.55), 0 8px 24px rgba(16, 17, 15, 0.08);
  transform: translateX(-50%);
}

.nav-links > li > a:focus-visible,
.nav-resources summary:focus-visible {
  border-radius: 0;
  outline: 0;
  background: transparent;
  box-shadow: inset 0 -2px var(--redesign-green) !important;
}

.nav-resource-menu a {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--redesign-ink);
  text-decoration: none;
}

.nav-resource-menu a:hover,
.nav-resource-menu a:focus-visible {
  background: var(--redesign-green-soft);
}

.nav-resource-menu strong {
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 720;
}

.nav-resource-menu small {
  color: #777970;
  font-family: var(--ui);
  font-size: 11px;
  line-height: 1.35;
}

/* The belief statement gives the page a point of view before product detail. */
.movement-manifesto {
  padding: 176px 0 190px;
  overflow: hidden;
  background: var(--redesign-paper);
}

.movement-inner {
  text-align: center;
}

.movement-inner .eyebrow {
  display: block;
  margin-bottom: 34px;
}

.movement-inner h2 {
  max-width: 1080px;
  margin-inline: auto;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: clamp(58px, 8vw, 104px);
  font-weight: 670;
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.movement-inner h2 em {
  color: var(--redesign-green);
  font-weight: 500;
}

.movement-inner p {
  max-width: 610px;
  margin: 38px auto 0;
  color: var(--redesign-muted);
  font-family: var(--ui);
  font-size: 18px;
  line-height: 1.6;
}

/* One dominant, real product object. */
.product-editorial {
  padding: 128px 0 118px;
  background: #f0f0ea;
}

.product-editorial .editorial-head {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.54fr);
  gap: 78px;
}

.product-editorial .editorial-head h2 {
  max-width: 830px;
}

.product-editorial .workflow-proof {
  margin-top: 74px;
}

.product-editorial .workflow-proof > img {
  border: 0;
  border-radius: 4px;
  box-shadow: 0 38px 76px -62px rgba(16, 17, 15, 0.65);
}

.product-editorial .workflow-proof figcaption {
  grid-template-columns: 0.26fr minmax(0, 1.08fr) minmax(260px, 0.62fr);
  margin-top: 22px;
  padding-top: 0;
  border-top: 0;
}

.product-index,
.creator-coverage-section {
  display: none;
}

/* Live network scale: real aggregate data, rendered as a cultural moment. */
.creator-index-moment {
  position: relative;
  padding: 104px 0 122px;
  overflow: hidden;
  background: var(--volt-on, #111111);
  color: #f7f7f1;
}

.creator-index-moment::after {
  content: "";
  position: absolute;
  right: -9vw;
  bottom: -28vw;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(84, 215, 77, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(84, 215, 77, 0.025), 0 0 0 14vw rgba(84, 215, 77, 0.018);
  pointer-events: none;
}

.creator-index-inner {
  position: relative;
  z-index: 1;
}

.creator-index-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9ba096;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.creator-index-status span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.creator-index-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--redesign-green);
  box-shadow: 0 0 0 5px rgba(84, 215, 77, 0.1);
  animation: creatorIndexPulse 1.8s ease-in-out infinite;
}

.creator-index-status small {
  font: inherit;
  letter-spacing: 0.1em;
}

.creator-index-number {
  margin: 54px 0 0;
  color: var(--redesign-green);
  font-family: var(--ui);
  font-size: clamp(112px, 20vw, 266px);
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  line-height: 0.72;
  letter-spacing: -0.09em;
  white-space: nowrap;
}

.creator-index-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.52fr);
  align-items: end;
  gap: 90px;
  margin-top: 90px;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.creator-index-copy h2 {
  max-width: 720px;
  color: #f7f7f1;
  font-family: var(--ui);
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 640;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.creator-index-copy p {
  max-width: 430px;
  color: #aeb2a8;
  font-family: var(--ui);
  font-size: 15px;
  line-height: 1.65;
}

/* Real creator work provides the visual energy; the videos are ambient loops,
   not embedded players. */
.creator-motion {
  padding: 120px 0 128px;
  overflow: hidden;
  background: var(--volt-on, #111111);
  color: #f7f7f1;
}

.creator-motion-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: end;
  gap: 80px;
}

.creator-motion-head .eyebrow {
  color: #969c92;
}

.creator-motion-head h2 {
  margin-top: 20px;
  color: #f7f7f1;
  font-family: var(--ui);
  font-size: clamp(56px, 6.7vw, 88px);
  font-weight: 640;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.creator-motion-head h2 em {
  color: var(--redesign-green);
  font-weight: 520;
}

.creator-motion-head > p {
  max-width: 430px;
  padding-bottom: 5px;
  color: #aeb2a8;
  font-family: var(--ui);
  font-size: 15px;
  line-height: 1.65;
}

.creator-loop-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
  margin-top: 68px;
}

.creator-loop-rail figure {
  min-width: 0;
  margin: 0;
}

.creator-loop-rail figure:nth-child(even) {
  margin-top: 58px;
}

.creator-loop-rail video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  background: var(--volt-on, #111111);
  object-fit: cover;
  pointer-events: none;
}

.creator-loop-rail figcaption {
  display: grid;
  gap: 5px;
  margin-top: 14px;
}

.creator-loop-rail figcaption span {
  color: #74796f;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.creator-loop-rail figcaption b {
  color: #d6d9d0;
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 620;
}

@keyframes creatorIndexPulse {
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Proof is a compact receipt, not another feature section. */
.results-story {
  padding: 60px 0 54px;
  background: #fffefa;
  color: var(--redesign-ink);
}

.case-study-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 190px;
  align-items: center;
  gap: 54px;
  padding: 33px 0;
  border-top: 1px solid var(--redesign-line);
  border-bottom: 1px solid var(--redesign-line);
  color: inherit;
  text-decoration: none;
}

.case-study-row .case-study-brand {
  margin: 0;
}

.case-study-row > p {
  display: grid;
  grid-template-columns: auto minmax(0, 430px);
  align-items: center;
  gap: 28px;
  margin: 0;
}

.case-study-row > p strong {
  color: var(--redesign-green-dark);
  font-family: var(--ui);
  font-size: 72px;
  font-weight: 660;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.case-study-row > p span {
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: 18px;
  font-weight: 610;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.case-study-link {
  justify-self: end;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 720;
  white-space: nowrap;
}

.case-study-link i {
  display: inline-block;
  margin-left: 7px;
  color: var(--redesign-green-dark);
  font-style: normal;
  transition: transform 0.18s ease;
}

.case-study-row:hover .case-study-link i {
  transform: translate(3px, -3px);
}

.case-study-disclosure {
  display: block;
  margin-top: 13px;
  color: #92948c;
  font-family: var(--ui);
  font-size: 10px;
  line-height: 1.5;
}

/* Community + coaching: intentionally asymmetric and media-led. */
.creator-program {
  padding: 158px 0 150px;
  overflow: hidden;
  background: var(--redesign-paper);
}

.creator-program .program-intro {
  margin-bottom: 86px;
}

.creator-program .program-intro h2 {
  max-width: 880px;
}

.creator-program .program-gallery {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.72fr);
  align-items: start;
  gap: 24px;
}

.creator-program .program-panel {
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 46px 42px 0;
  border: 0;
}

.creator-program .program-panel + .program-panel {
  border: 0;
}

.creator-program .program-panel-community {
  min-height: 810px;
  background: #dff3da;
}

.creator-program .program-panel-coaching {
  min-height: 660px;
  margin-top: 126px;
  background: #e9e9e2;
}

.creator-program .program-panel > img {
  order: 1;
  width: min(58%, 390px);
  max-height: none;
  align-self: center;
  margin: 38px auto 0;
  border: 1px solid rgba(16, 17, 15, 0.11);
  border-bottom: 0;
  border-radius: 42px 42px 0 0;
  box-shadow: 0 42px 72px -42px rgba(16, 17, 15, 0.45);
}

.creator-program .program-panel-coaching > img {
  width: min(72%, 330px);
}

.creator-program .program-panel figcaption {
  order: 0;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 24px;
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(16, 17, 15, 0.12);
}

.creator-program .program-panel figcaption strong {
  color: var(--redesign-green-dark);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.creator-program .program-panel figcaption span {
  max-width: 380px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: 25px;
  font-weight: 620;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-transform: none;
}

.program-outro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 43px;
  padding-top: 28px;
  border-top: 1px solid var(--redesign-line);
}

.program-outro p {
  max-width: 600px;
  color: var(--redesign-muted);
  font-family: var(--ui);
  font-size: 14px;
  line-height: 1.55;
}

.program-outro a {
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 720;
  white-space: nowrap;
}

.program-outro a span {
  margin-left: 7px;
  color: var(--redesign-green-dark);
}

/* Contact-led managed service; no public rate or faux self-serve toggle. */
.managed-contact {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid var(--redesign-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.46);
}

.managed-contact-copy {
  display: grid;
  gap: 4px;
}

.managed-contact-copy strong {
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 720;
}

.managed-contact-copy small {
  color: var(--redesign-muted);
  font-family: var(--ui);
  font-size: 12px;
  line-height: 1.4;
}

.managed-contact > a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(16, 17, 15, 0.11);
  border-radius: 10px;
  background: #fffefa;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 720;
  white-space: nowrap;
}

.managed-contact > a span {
  color: var(--redesign-green-dark);
}

/* A clean directory footer, with legal utility links in the bottom rail. */
.footer.marketing-footer {
  padding: 78px 0 28px;
  border-top: 0;
  background: #f3f3ed;
}

.footer.marketing-footer::before,
.footer.marketing-footer::after {
  display: none;
}

.footer.marketing-footer .footer-inner {
  grid-template-columns: minmax(220px, 0.64fr) minmax(0, 1.5fr);
  gap: 78px;
}

.footer-directory {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
}

.marketing-footer .footer-copy {
  grid-column: 1 / -1;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
  margin-top: 28px;
}

.footer-bottom-legal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom-legal a {
  color: #888a82;
  font-family: var(--ui);
  font-size: 10px;
  text-decoration: none;
}

.footer-bottom-legal a:hover {
  color: var(--redesign-ink);
}

@media (max-width: 1080px) {
  .nav-links,
  .nav-cta-group {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .creator-index-copy,
  .product-editorial .editorial-head,
  .creator-program .program-intro {
    grid-template-columns: 1fr;
  }

  .creator-index-copy {
    gap: 28px;
  }

  .creator-program .program-intro {
    gap: 28px;
  }

  .creator-program .program-intro .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }
}

@media (max-width: 760px) {
  .nav {
    width: calc(100% - 24px);
  }

  .movement-manifesto {
    padding: 118px 0 126px;
  }

  .movement-inner .eyebrow {
    margin-bottom: 24px;
  }

  .movement-inner h2 {
    font-size: clamp(49px, 14vw, 66px);
  }

  .movement-inner p {
    margin-top: 28px;
    font-size: 16px;
  }

  .product-editorial {
    padding: 92px 0 86px;
  }

  .product-editorial .workflow-proof figcaption {
    grid-template-columns: 1fr;
  }

  .creator-index-moment {
    padding: 72px 0 86px;
  }

  .creator-index-status small {
    display: none;
  }

  .creator-index-number {
    margin-top: 43px;
    font-size: clamp(76px, 24vw, 126px);
    letter-spacing: -0.08em;
  }

  .creator-index-copy {
    margin-top: 58px;
    padding-top: 26px;
  }

  .creator-index-copy h2 {
    font-size: 42px;
  }

  .results-story {
    padding: 40px 0 36px;
  }

  .case-study-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0;
  }

  .case-study-row > p {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
  }

  .case-study-row > p strong {
    font-size: 58px;
  }

  .case-study-link {
    justify-self: start;
  }

  .creator-program {
    padding: 108px 0 96px;
  }

  .creator-program .program-intro {
    margin-bottom: 54px;
  }

  .creator-program .program-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-inline: 0;
  }

  .creator-program .program-panel,
  .creator-program .program-panel-community,
  .creator-program .program-panel-coaching {
    min-height: 620px;
    margin-top: 0;
    padding: 32px 22px 0;
  }

  .creator-program .program-panel figcaption {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .creator-program .program-panel figcaption span {
    font-size: 23px;
  }

  .creator-program .program-panel > img,
  .creator-program .program-panel-coaching > img {
    width: min(72%, 330px);
  }

  .program-outro {
    align-items: flex-start;
    flex-direction: column;
  }

  .managed-contact {
    align-items: stretch;
    flex-direction: column;
  }

  .managed-contact > a {
    justify-content: space-between;
  }

  .footer.marketing-footer {
    padding-top: 62px;
  }

  .footer.marketing-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
  }

  .marketing-footer .footer-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-bottom-legal {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

@media (max-width: 420px) {
  .creator-index-number {
    font-size: 74px;
  }

  .creator-program .program-panel,
  .creator-program .program-panel-community,
  .creator-program .program-panel-coaching {
    min-height: 570px;
  }

  .footer-directory {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .creator-index-status i {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   Editorial revision

   The approved hero stays intact. Everything below it uses real product media,
   flat composition, and short labels instead of simulated dashboards or
   floating annotation cards.
   -------------------------------------------------------------------------- */

.hero-ambient::after {
  display: none;
}

.hero {
  padding-bottom: 112px;
}

/* Working-with carousel: quiet by default, native brand color on interaction. */
.logo-carousel {
  padding: 37px 0 45px;
  overflow: hidden;
  background: var(--redesign-paper);
}

.logo-carousel-label {
  margin-bottom: 27px;
  padding-inline: 24px;
  color: #91938c;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.logo-carousel-viewport {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: none;
  mask-image: none;
}

.logo-carousel-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: logoCarousel 48s linear infinite;
}

.logo-carousel-viewport:hover .logo-carousel-track,
.logo-carousel-viewport:focus-within .logo-carousel-track {
  animation-play-state: paused;
}

.logo-carousel-set {
  display: flex;
  align-items: center;
  gap: clamp(44px, 5vw, 78px);
  padding-right: clamp(44px, 5vw, 78px);
}

.logo-item {
  display: inline-flex;
  min-width: max-content;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #23241f;
  filter: grayscale(.72);
  opacity: .62;
  outline: none;
  transition: filter 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.logo-item:hover,
.logo-item:focus-visible {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.logo-item:focus-visible {
  box-shadow: 0 2px 0 var(--redesign-green-dark);
}

.logo-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.logo-item b {
  color: currentColor;
  font-family: var(--ui);
  font-size: 18px;
  font-weight: 680;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.logo-item-celo img { width: 58px; height: 46px; }
.logo-item-aura img { width: 112px; height: 46px; object-fit: cover; filter: brightness(0); }
.logo-item-emm img {
  width: 72px;
  height: 48px;
}
.logo-item-hacku img { filter: brightness(0); }
.logo-item-evylo img { width: 80px; height: 46px; }
.logo-item-govums img { width: 108px; height: 32px; }
.logo-item-peruana img {
  box-sizing: border-box;
  width: 112px;
  height: 40px;
  padding: 5px 10px;
  border-radius: 4px;
  background: #e13c30;
}
.logo-item-electrodose img { width: 112px; height: 40px; filter: brightness(0); }
.logo-item-prox img { width: 64px; height: 32px; filter: brightness(0); transition: filter 0.22s ease; }
.logo-item-prox:hover img,
.logo-item-prox:focus-visible img { filter: none; }

@keyframes logoCarousel {
  to { transform: translateX(-50%); }
}

/* Product: one real workspace view, followed by a compact capability index. */
.product-editorial {
  padding: 148px 0 132px;
  background: #fffefa;
}

.editorial-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: 90px;
}

.editorial-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -56px;
}

.editorial-head h2 {
  max-width: 800px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: clamp(54px, 6.7vw, 84px);
  font-weight: 670;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.editorial-head > p {
  max-width: 440px;
  padding-bottom: 4px;
  color: var(--redesign-muted);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.65;
}

.workflow-proof {
  margin-top: 82px;
}

.workflow-proof > img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(16, 17, 15, 0.1);
  border-radius: 10px;
  background: #f4f4ef;
  box-shadow: 0 38px 80px -64px rgba(16, 17, 15, 0.55);
}

.workflow-proof figcaption {
  display: grid;
  grid-template-columns: 0.35fr 1fr minmax(280px, 0.75fr);
  align-items: start;
  gap: 44px;
  margin-top: 26px;
  padding-top: 25px;
  border-top: 1px solid var(--redesign-line);
}

.workflow-proof figcaption span {
  color: var(--redesign-green-dark);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow-proof figcaption strong {
  max-width: 510px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.workflow-proof figcaption p {
  color: var(--redesign-muted);
  font-family: var(--ui);
  font-size: 14px;
  line-height: 1.62;
}

.product-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 96px;
  border-top: 1px solid var(--redesign-line);
  border-bottom: 1px solid var(--redesign-line);
}

.product-index article {
  min-height: 218px;
  padding: 34px 34px 36px 0;
}

.product-index article + article {
  padding-left: 34px;
  border-left: 1px solid var(--redesign-line);
}

.product-index h3 {
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: 26px;
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.product-index p {
  max-width: 320px;
  margin-top: 55px;
  color: var(--redesign-muted);
  font-family: var(--ui);
  font-size: 13px;
  line-height: 1.6;
}

/* Creator coverage: a single current Simulator capture, not a fake media rail. */
.creator-coverage-section {
  padding: 0;
  overflow: hidden;
  background: #eeefe9;
}

.creator-coverage-layout {
  display: grid;
  min-height: 860px;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: stretch;
  padding-inline: 32px;
}

.creator-coverage-copy {
  align-self: center;
  max-width: 540px;
  padding: 110px 70px 110px 0;
}

.creator-coverage-copy h2 {
  margin-top: 22px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: clamp(57px, 6.3vw, 82px);
  font-weight: 675;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.creator-coverage-copy > p {
  max-width: 470px;
  margin-top: 30px;
  color: var(--redesign-muted);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.66;
}

.creator-facts {
  margin-top: 51px;
  border-top: 1px solid rgba(16, 17, 15, 0.13);
}

.creator-facts > div {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(16, 17, 15, 0.13);
}

.creator-facts dt,
.creator-facts dd {
  font-family: var(--ui);
  font-size: 12px;
  line-height: 1.5;
}

.creator-facts dt {
  color: var(--redesign-ink);
  font-weight: 750;
}

.creator-facts dd {
  color: #696b64;
}

.creator-screen {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: #d9f2d5;
}

.creator-screen img {
  width: min(57%, 382px);
  height: auto;
  margin-top: 80px;
  border: 1px solid rgba(16, 17, 15, 0.12);
  border-bottom: 0;
  border-radius: 44px 44px 0 0;
  background: #fff;
  box-shadow: 0 48px 80px -38px rgba(16, 17, 15, 0.46);
}

/* Case study: editorial evidence, not a dramatic stat billboard. */
.results-story {
  padding: 142px 0;
  background: #fffefa;
  color: var(--redesign-ink);
}

.results-story > .container.case-study-layout:not(.results-grid) {
  display: grid;
}

.case-study-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.72fr);
  gap: 88px;
  padding-top: 54px;
  padding-bottom: 54px;
  border-top: 1px solid var(--redesign-line);
  border-bottom: 1px solid var(--redesign-line);
}

.case-study-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 50px;
}

.case-study-brand img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.case-study-brand b {
  color: #2a2b26;
  font-family: var(--ui);
  font-size: 20px;
  font-weight: 700;
}

.case-study-intro h2 {
  max-width: 680px;
  margin-top: 31px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: clamp(43px, 5vw, 64px);
  font-weight: 665;
  line-height: 0.98;
  letter-spacing: -0.057em;
}

.case-study-result {
  align-self: end;
  padding-left: 54px;
  border-left: 1px solid var(--redesign-line);
}

.case-study-result > strong {
  display: block;
  color: var(--redesign-green-dark);
  font-family: var(--ui);
  font-size: clamp(70px, 8vw, 102px);
  font-weight: 660;
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.case-study-result > p {
  max-width: 410px;
  margin-top: 24px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.case-study-result > small {
  display: block;
  max-width: 400px;
  margin-top: 24px;
  color: #8c8e87;
  font-family: var(--ui);
  font-size: 11px;
  line-height: 1.5;
}

.case-study-result .results-link {
  margin-top: 28px;
  color: var(--redesign-ink);
}

/* Community and coaching: one flat editorial diptych. */
.creator-program {
  padding: 146px 0 0;
  background: var(--redesign-paper);
}

.program-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: 88px;
  margin-bottom: 76px;
}

.program-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -55px;
}

.program-intro h2 {
  max-width: 770px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: clamp(55px, 6.8vw, 84px);
  font-weight: 670;
  line-height: 0.93;
  letter-spacing: -0.066em;
}

.program-intro > p {
  max-width: 390px;
  padding-bottom: 3px;
  color: var(--redesign-muted);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.64;
}

.program-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.program-panel {
  position: relative;
  display: grid;
  min-height: 800px;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 48px 48px 0;
}

.program-panel + .program-panel {
  border-left: 1px solid rgba(16, 17, 15, 0.11);
}

.program-panel-community {
  background: #dff3da;
}

.program-panel-coaching {
  background: #ecece6;
}

.program-panel figcaption {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  padding-bottom: 43px;
  border-bottom: 1px solid rgba(16, 17, 15, 0.12);
}

.program-panel figcaption span {
  color: var(--redesign-green-dark);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-panel figcaption strong {
  max-width: 430px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.program-panel > img {
  width: min(61%, 348px);
  height: auto;
  align-self: end;
  justify-self: center;
  margin-top: 52px;
  border: 1px solid rgba(16, 17, 15, 0.12);
  border-bottom: 0;
  border-radius: 42px 42px 0 0;
  background: #fff;
  box-shadow: 0 42px 72px -39px rgba(16, 17, 15, 0.45);
}

@media (max-width: 960px) {
  .editorial-head,
  .program-intro,
  .case-study-layout {
    grid-template-columns: 1fr;
  }

  .editorial-head,
  .program-intro {
    gap: 28px;
  }

  .editorial-head .eyebrow,
  .program-intro .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .editorial-head > p,
  .program-intro > p {
    max-width: 650px;
  }

  .workflow-proof figcaption {
    grid-template-columns: 0.28fr 1fr;
  }

  .workflow-proof figcaption p {
    grid-column: 2;
  }

  .creator-coverage-layout {
    min-height: 760px;
    grid-template-columns: 1fr 0.82fr;
  }

  .creator-coverage-copy {
    padding-right: 46px;
  }

  .case-study-layout {
    gap: 60px;
  }

  .case-study-result {
    padding: 45px 0 0;
    border-top: 1px solid var(--redesign-line);
    border-left: 0;
  }

  .program-panel {
    min-height: 720px;
    padding-inline: 32px;
  }

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

@media (max-width: 760px) {
  .hero {
    padding-bottom: 82px;
  }

  .logo-carousel {
    padding-block: 30px 38px;
  }

  .logo-carousel-label {
    margin-bottom: 20px;
  }

  .logo-carousel-set {
    gap: 44px;
    padding-right: 44px;
  }

  .logo-item {
    min-width: 112px;
  }

  .product-editorial,
  .results-story {
    padding-block: 96px;
  }

  .workflow-proof {
    margin-top: 54px;
  }

  .workflow-proof figcaption {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .workflow-proof figcaption p {
    grid-column: auto;
    max-width: 560px;
  }

  .product-index {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .product-index article {
    min-height: 0;
    padding: 28px 0 31px;
  }

  .product-index article + article {
    padding-left: 0;
    border-top: 1px solid var(--redesign-line);
    border-left: 0;
  }

  .product-index p {
    margin-top: 16px;
  }

  .creator-coverage-layout {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .creator-coverage-copy {
    max-width: none;
    padding: 96px 20px 64px;
  }

  .creator-screen {
    min-height: 650px;
  }

  .creator-screen img {
    width: min(68%, 360px);
    margin-top: 60px;
  }

  .creator-program {
    padding-top: 96px;
  }

  .program-intro {
    margin-bottom: 52px;
  }

  .program-gallery {
    grid-template-columns: 1fr;
    margin-inline: -20px;
  }

  .program-panel {
    min-height: 680px;
    padding: 38px 20px 0;
  }

  .program-panel + .program-panel {
    border-top: 1px solid rgba(16, 17, 15, 0.11);
    border-left: 0;
  }

  .program-panel figcaption {
    gap: 14px;
    padding-bottom: 31px;
  }

  .program-panel > img {
    width: min(72%, 330px);
  }
}

@media (max-width: 520px) {
  .editorial-head h2,
  .program-intro h2,
  .creator-coverage-copy h2 {
    font-size: 48px;
  }

  .workflow-proof > img {
    width: calc(100% + 16px);
    max-width: none;
    margin-left: -8px;
    border-radius: 5px;
  }

  .creator-facts > div {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
  }

  .creator-screen {
    min-height: 590px;
  }

  .creator-screen img {
    width: min(76%, 330px);
  }

  .case-study-intro h2 {
    font-size: 43px;
  }

  .case-study-result > strong {
    font-size: 76px;
  }

  .program-panel {
    min-height: 640px;
  }

  .program-panel figcaption strong {
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-carousel-track {
    animation: none;
  }

  .logo-carousel-viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: thin;
  }
}

/* --------------------------------------------------------------------------
   Review revision: quieter navigation, credible network scale, and one
   interactive iPhone story for Creators, Community, and Coaching.
   -------------------------------------------------------------------------- */

/* Full-width navigation removes the cramped floating-toolbar treatment. */
.nav {
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  width: 100%;
  max-width: none;
  min-height: 72px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  border: 0;
  border-radius: 0;
  background: rgba(255, 254, 250, 0.88);
  box-shadow: none;
  transform: none;
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
}

.nav-brand {
  display: inline-flex !important;
  min-width: max-content;
}

.nav-links {
  justify-self: center;
}

.nav-cta-group {
  justify-self: end;
}

.nav-cta {
  min-height: 40px;
  padding-inline: 17px;
  border-radius: 10px;
}

/* Network proof should read as a trustworthy live index, not a spectacle. */
.creator-index-moment {
  padding: 84px 0;
  overflow: hidden;
  background: #edf0e8;
  color: var(--redesign-ink);
}

.creator-index-moment::after {
  display: none;
}

.creator-index-inner {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(64px, 9vw, 130px);
}

.creator-index-metric {
  display: grid;
  gap: 14px;
}

.creator-index-status {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  color: #72766e;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.creator-index-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--redesign-green);
  box-shadow: 0 0 0 5px rgba(84, 215, 77, 0.11);
  animation: creatorIndexPulse 1.8s ease-in-out infinite;
}

.creator-index-number {
  margin: 0;
  color: var(--redesign-green-dark);
  font-family: var(--ui);
  font-size: clamp(64px, 7.6vw, 100px);
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  line-height: 0.94;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.creator-index-metric > small {
  max-width: 340px;
  color: #7c8078;
  font-family: var(--ui);
  font-size: 11px;
  line-height: 1.45;
}

.creator-index-copy {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

.creator-index-copy h2 {
  max-width: 660px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 640;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.creator-index-copy p {
  max-width: 610px;
  margin-top: 24px;
  color: var(--redesign-muted);
  font-family: var(--ui);
  font-size: 15px;
  line-height: 1.65;
}

/* One product story, three real app screens. */
.mobile {
  padding: 132px 0;
  overflow: hidden;
  background: var(--redesign-paper-2);
}

.mobile .mobile-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(72px, 10vw, 132px);
}

.mobile-copy h2 {
  max-width: 650px;
  margin-top: 20px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: clamp(50px, 5.4vw, 70px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-transform: none;
}

.mobile-copy h2 .disp-italic {
  color: var(--redesign-green-dark);
  font-family: inherit;
  font-style: normal;
}

.mobile-copy .lead {
  max-width: 610px;
  margin-top: 24px;
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.65;
}

.iphone-feature-tabs {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--redesign-line);
}

.iphone-feature-tabs button {
  display: grid;
  min-height: 66px;
  grid-template-columns: 34px 108px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 13px 2px;
  border: 0;
  border-bottom: 1px solid var(--redesign-line);
  background: transparent;
  color: var(--redesign-muted);
  cursor: pointer;
  text-align: left;
  transition: color 160ms ease, padding 160ms ease;
}

.iphone-feature-tabs button:hover,
.iphone-feature-tabs button:focus-visible,
.iphone-feature-tabs button.is-active {
  color: var(--redesign-ink);
}

.iphone-feature-tabs button.is-active {
  padding-left: 10px;
}

.iphone-feature-tabs button > span {
  color: #92958d;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.iphone-feature-tabs button.is-active > span {
  color: var(--redesign-green-dark);
}

.iphone-feature-tabs strong {
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 720;
}

.iphone-feature-tabs small {
  color: #85887f;
  font-family: var(--ui);
  font-size: 12px;
}

.mobile .asb-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.mobile-device {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
}

.mobile-device::before {
  content: "";
  position: absolute;
  top: 11%;
  right: 2%;
  bottom: 13%;
  left: 2%;
  border-radius: 50%;
  background: rgba(84, 215, 77, 0.17);
  filter: blur(58px);
}

.iphone-gallery {
  position: relative;
  width: min(316px, calc(100vw - 64px));
  aspect-ratio: 316 / 652;
  margin: 0 auto;
  padding: 10px;
  border-radius: 60px;
  outline: none;
  background: #22252a;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.28), inset 0 0 0 2px rgba(0, 0, 0, 0.6), 0 46px 78px -24px rgba(0, 0, 0, 0.42), 0 18px 40px rgba(0, 0, 0, 0.26);
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.iphone-gallery:focus-visible {
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.28), inset 0 0 0 2px rgba(0, 0, 0, 0.6), 0 0 0 4px rgba(84, 215, 77, 0.3), 0 46px 78px -24px rgba(0, 0, 0, 0.42);
}

.iphone-screen-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50px;
  background: #fafafa;
}

.iphone-screen-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 420ms cubic-bezier(0.22, 0.8, 0.26, 1);
  will-change: transform;
}

.iphone-gallery.is-dragging .iphone-screen-track {
  transition: none;
}

.iphone-screen-track > img {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  object-fit: cover;
  object-position: top;
  pointer-events: none;
}

.iphone-hardware {
  position: absolute;
  z-index: 2;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: #1b1e22;
}

.iphone-hardware-silent { top: 20.2%; left: -2px; height: 4.3%; }
.iphone-hardware-volume-up { top: 27.3%; left: -2px; height: 7.7%; }
.iphone-hardware-volume-down { top: 36.8%; left: -2px; height: 7.7%; }
.iphone-hardware-power { top: 30.1%; right: -2px; left: auto; height: 12%; border-radius: 0 3px 3px 0; }

.iphone-swipe-hint {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 9px;
  margin: 0;
  transform: translateX(-50%);
  color: #878a82;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Presets provide instant orientation; the calculator remains the fine-tuner. */
.pricing-head-calculator {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 54px;
  margin-bottom: 42px;
}

.pricing-head-calculator > div:first-child {
  max-width: 790px;
}

.plan-presets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--redesign-line);
  border-bottom: 1px solid var(--redesign-line);
}

.plan-presets > button {
  position: relative;
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 20px;
  border: 0;
  border-right: 1px solid var(--redesign-line);
  background: transparent;
  color: var(--redesign-ink);
  cursor: pointer;
  text-align: left;
  transition: background 160ms ease;
}

.plan-presets > button:last-child {
  border-right: 0;
}

.plan-presets > button:hover,
.plan-presets > button:focus-visible {
  background: rgba(255, 255, 255, 0.62);
}

.plan-presets > button.is-active {
  background: var(--redesign-green-soft);
}

.plan-presets > button.is-active::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: -1px;
  left: 16px;
  height: 2px;
  background: var(--redesign-green-dark);
}

.plan-presets button > span {
  display: grid;
  gap: 7px;
}

.plan-presets strong {
  font-family: var(--ui);
  font-size: 16px;
  font-weight: 720;
}

.plan-presets strong i {
  display: inline-block;
  margin-left: 5px;
  padding: 3px 5px;
  border-radius: 999px;
  background: rgba(84, 215, 77, 0.2);
  color: var(--redesign-green-dark);
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: 2px;
}

.plan-presets small {
  color: #81847c;
  font-family: var(--ui);
  font-size: 11px;
}

.plan-presets b {
  font-family: var(--ui);
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.pricing-builder {
  margin-top: 32px;
}

.creator-free-path {
  display: grid;
  grid-template-columns: 100px 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
  padding: 24px 28px;
  border-radius: 14px;
  background: var(--volt-on, #111111);
  color: #f6f6ef;
}

.creator-free-path > span {
  color: var(--redesign-green);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.creator-free-path strong {
  font-family: var(--ui);
  font-size: 20px;
  font-weight: 660;
}

.creator-free-path p {
  color: #aeb2a8;
  font-family: var(--ui);
  font-size: 13px;
  line-height: 1.5;
}

.creator-free-path a {
  color: #f6f6ef;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.creator-free-path a span,
.pricing-compare-link span {
  color: var(--redesign-green);
}

.pricing-compare-link {
  display: table;
  margin: 25px auto 0;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

/* Appears only after the hero has left the viewport. */
.back-to-top {
  display: flex !important;
  z-index: 150;
  width: 46px;
  height: 46px;
  right: 22px;
  bottom: 22px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--volt-on, #111111);
  box-shadow: 0 14px 34px rgba(16, 17, 15, 0.24);
  color: #fff;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--redesign-green);
  color: var(--volt-on, #111111);
}

@media (max-width: 1120px) {
  .nav {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 8px;
    padding-inline: 22px;
  }

  .nav-links {
    display: none !important;
  }

  .nav-cta-group {
    display: flex !important;
  }

  .nav-login {
    display: none;
  }

  .hamburger {
    display: inline-flex !important;
  }

  .mobile .mobile-inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
    gap: 64px;
  }

  .creator-free-path {
    grid-template-columns: 90px 190px minmax(0, 1fr);
  }

  .creator-free-path a {
    grid-column: 2 / -1;
  }
}

@media (max-width: 900px) {
  .creator-index-inner,
  .pricing-head-calculator,
  .mobile .mobile-inner {
    grid-template-columns: 1fr;
  }

  .creator-index-inner {
    gap: 48px;
  }

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

  .creator-motion-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .creator-motion-head > p {
    max-width: 620px;
  }

  .mobile .mobile-inner {
    gap: 64px;
  }

  .mobile-device {
    order: -1;
  }

  .mobile-copy {
    max-width: 680px;
    margin-inline: auto;
  }

  .pricing-head-calculator {
    align-items: start;
    gap: 28px;
  }

  .pricing-head-calculator .builder-billing {
    justify-self: start;
  }

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

  .plan-presets > button:nth-child(2) {
    border-right: 0;
  }

  .plan-presets > button:nth-child(-n + 2) {
    border-bottom: 1px solid var(--redesign-line);
  }
}

@media (max-width: 620px) {
  .nav {
    min-height: 64px;
    padding-inline: 16px 10px;
  }

  .nav-brand img {
    width: 25px;
    height: 25px;
  }

  .nav-brand span {
    font-size: 18px;
  }

  .nav-cta {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .creator-index-moment {
    padding: 68px 0;
  }

  .creator-index-inner {
    gap: 42px;
  }

  .creator-index-number {
    font-size: clamp(58px, 18vw, 82px);
  }

  .creator-index-copy h2 {
    font-size: 38px;
  }

  .creator-motion {
    padding: 90px 0 98px;
  }

  .creator-motion-head h2 {
    font-size: 54px;
  }

  .creator-loop-rail {
    display: flex;
    width: auto;
    gap: 12px;
    margin-top: 48px;
    margin-right: -20px;
    overflow-x: auto;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .creator-loop-rail::-webkit-scrollbar {
    display: none;
  }

  .creator-loop-rail figure,
  .creator-loop-rail figure:nth-child(even) {
    flex: 0 0 min(74vw, 310px);
    margin-top: 0;
    scroll-snap-align: start;
  }

  .mobile {
    padding: 92px 0;
  }

  .mobile-copy h2 {
    font-size: 46px;
  }

  .iphone-feature-tabs button {
    grid-template-columns: 28px 94px minmax(0, 1fr);
  }

  .iphone-feature-tabs small {
    font-size: 11px;
  }

  .plan-presets {
    grid-template-columns: 1fr;
  }

  .plan-presets > button,
  .plan-presets > button:nth-child(2) {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--redesign-line);
  }

  .plan-presets > button:last-child {
    border-bottom: 0;
  }

  .creator-free-path {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px;
  }

  .creator-free-path a {
    grid-column: auto;
    margin-top: 8px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .iphone-screen-track {
    transition: none;
  }
}

/* Final landing review: flat proof, quiet pricing, and deliberate motion. */
.hero .tts-partner-badge {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero .ttspb-sub {
  padding-left: 11px;
  color: #777b73;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-text-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.hero-text-link span svg {
  width: 17px;
  height: 17px;
}

.hero-app-path {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.hero-app-path > span {
  color: #757870;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-app-path > a {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  gap: 9px;
  padding: 6px 13px;
  border-radius: 8px;
  background: #10110f;
  color: #fff;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.hero-app-path > a:hover,
.hero-app-path > a:focus-visible {
  transform: translateY(-2px);
  background: #20221e;
}

.hero-app-path > a > svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hero-app-path > a > span {
  display: grid;
  text-align: left;
}

.hero-app-path small {
  font-size: 8px;
  line-height: 1;
}

.hero-app-path strong {
  margin-top: 2px;
  font-family: var(--ui);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.product-editorial {
  padding: 112px 0 82px;
}

.workflow-proof {
  margin-top: 64px;
}

.workflow-proof > img {
  border: 0;
  border-radius: 6px;
}

.creator-motion {
  padding: 118px 0 128px;
}

.creator-motion-head {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  align-items: end;
  gap: 72px;
}

.creator-motion-copy > p {
  max-width: 520px;
  margin-top: 25px;
  color: #aeb2a8;
  font-family: var(--ui);
  font-size: 15px;
  line-height: 1.65;
}

.creator-index-inline {
  padding: 6px 0 8px 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.creator-index-inline .creator-index-status {
  color: #a6aba0;
}

.creator-index-inline .creator-index-number {
  margin: 20px 0 10px;
  color: var(--redesign-green);
  font-family: var(--ui);
  font-size: clamp(54px, 6.2vw, 82px);
  font-weight: 650;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.creator-index-inline > small {
  color: #7f857a;
  font-family: var(--ui);
  font-size: 11px;
}

.results-story {
  padding: 56px 0 50px;
}

.results-story > .container:not(.results-grid) {
  display: block;
}

.pricing-head-calculator {
  align-items: end;
  margin-bottom: 48px;
}

.pricing-head-calculator > div:first-child {
  max-width: 720px;
}

.plan-presets {
  border: 1px solid var(--redesign-line);
  background: rgba(255, 255, 255, 0.55);
}

.plan-presets > button {
  display: grid;
  min-height: 220px;
  align-content: space-between;
  padding: 28px;
  border-right: 1px solid var(--redesign-line);
  background: transparent;
}

.plan-presets > button.is-active {
  background: #fff;
  box-shadow: inset 0 3px 0 var(--redesign-green-dark);
}

.plan-presets > button.is-active::after {
  display: none;
}

.plan-presets button > span {
  gap: 8px;
}

.plan-presets strong {
  font-size: 19px;
}

.plan-presets strong i {
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.plan-presets small {
  color: var(--redesign-ink);
  font-size: 13px;
}

.plan-presets em {
  color: #83867e;
  font-family: var(--ui);
  font-size: 11px;
  font-style: normal;
  line-height: 1.4;
}

.plan-presets b {
  align-self: end;
  justify-self: start;
  font-size: 42px;
}

.pricing-builder-disclosure {
  margin-top: 22px;
  border-top: 1px solid var(--redesign-line);
  border-bottom: 1px solid var(--redesign-line);
}

.pricing-builder-disclosure > summary {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 4px;
  cursor: pointer;
  list-style: none;
}

.pricing-builder-disclosure > summary::-webkit-details-marker {
  display: none;
}

.pricing-builder-disclosure > summary > span {
  display: grid;
  gap: 5px;
}

.pricing-builder-disclosure > summary strong,
.pricing-builder-disclosure > summary b {
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: 15px;
  font-weight: 680;
}

.pricing-builder-disclosure > summary small {
  color: var(--redesign-muted);
  font-family: var(--ui);
  font-size: 12px;
}

.pricing-builder-disclosure > summary b {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.pricing-builder-disclosure > summary i {
  color: var(--redesign-green-dark);
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  transition: transform 160ms ease;
}

.pricing-builder-disclosure[open] > summary i {
  transform: rotate(45deg);
}

.pricing-builder-disclosure .pricing-builder {
  margin: 0 0 26px;
}

.pricing-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 44px;
  border-top: 1px solid var(--redesign-line);
  border-bottom: 1px solid var(--redesign-line);
}

.pricing-paths article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 30px;
  padding: 34px 34px 32px 0;
}

.pricing-paths article + article {
  padding-right: 0;
  padding-left: 34px;
  border-left: 1px solid var(--redesign-line);
}

.pricing-paths article > span {
  grid-column: 1 / -1;
  color: var(--redesign-green-dark);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-paths h3 {
  grid-column: 1;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: 23px;
  font-weight: 660;
  letter-spacing: -0.035em;
}

.pricing-paths p {
  grid-column: 1;
  color: var(--redesign-muted);
  font-family: var(--ui);
  font-size: 13px;
  line-height: 1.55;
}

.pricing-paths a {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: center;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.pricing-paths a span {
  color: var(--redesign-green-dark);
}

.back-to-top,
.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--volt-on, #111111);
  color: var(--redesign-green);
}

@media (max-width: 900px) {
  .creator-motion-head {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .creator-index-inline {
    max-width: 560px;
    padding: 32px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .plan-presets > button {
    min-height: 190px;
  }

  .pricing-paths {
    grid-template-columns: 1fr;
  }

  .pricing-paths article,
  .pricing-paths article + article {
    padding: 30px 0;
    border-left: 0;
  }

  .pricing-paths article + article {
    border-top: 1px solid var(--redesign-line);
  }
}

@media (max-width: 620px) {
  .hero-ctas {
    flex-direction: column;
  }

  .hero-app-path {
    flex-direction: column;
    gap: 9px;
  }

  .product-editorial {
    padding: 88px 0 68px;
  }

  .results-story {
    padding: 42px 0 38px;
  }

  .plan-presets {
    grid-template-columns: 1fr;
  }

  .plan-presets > button,
  .plan-presets > button:nth-child(2) {
    min-height: 160px;
    border-right: 0;
    border-bottom: 1px solid var(--redesign-line);
  }

  .pricing-builder-disclosure > summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-paths article {
    grid-template-columns: 1fr;
  }

  .pricing-paths a {
    grid-column: 1;
    grid-row: auto;
    margin-top: 8px;
  }
}

/* Final review pass: a compact floating nav with plain text choices. */
.nav {
  top: 16px;
  left: 50%;
  right: auto;
  width: min(calc(100% - 40px), 1200px);
  min-height: 64px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 30px;
  padding: 8px 12px 8px 18px;
  border: 0;
  border-radius: 18px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(255, 255, 255, 0.24), 0 20px 54px -38px rgba(16, 17, 15, 0.48), 0 5px 18px rgba(16, 17, 15, 0.05);
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
}

.nav-links {
  gap: 28px;
}

.nav-links > li > a,
.nav-resources summary {
  min-height: auto;
  padding: 8px 0;
  border-radius: 0;
  background: transparent;
  color: #30332e;
  font-size: 13px;
  font-weight: 620;
}

.nav-links > li > a:hover,
.nav-links > li > a:focus-visible,
.nav-resources summary:hover,
.nav-resources details[open] summary {
  background: transparent;
  color: var(--redesign-ink);
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-resources {
  position: relative;
}

.nav-resource-menu {
  right: 0;
  left: auto;
  top: calc(100% + 14px);
  z-index: 40;
  width: 272px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 12px;
  background: rgba(250, 251, 247, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 22px 50px -28px rgba(16, 17, 15, 0.42);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
  backdrop-filter: blur(22px) saturate(155%);
  transform: none;
}

.nav-login {
  padding: 8px 0;
  color: #30332e;
  font-size: 13px;
}

.nav-cta {
  min-height: 44px;
  padding-inline: 20px;
  border-radius: 9px;
}

/* Real creator clips stay editorial while the manifest can grow past four. */
.creator-loop-rail {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(245px, calc((100% - 42px) / 4));
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 22px;
  scroll-snap-type: inline proximity;
  scrollbar-width: none;
}

.creator-loop-rail::-webkit-scrollbar {
  display: none;
}

.creator-loop-rail figure {
  scroll-snap-align: start;
}

/* Verified voices use one continuous editorial rail instead of SaaS cards. */
.voices {
  padding: 124px 0 54px;
  overflow: hidden;
  background: #f5f5f0;
  color: var(--redesign-ink);
}

.voices-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(64px, 10vw, 160px);
}

.voices-head h2 {
  margin-top: 18px;
  font-family: var(--ui);
  font-size: clamp(52px, 6.4vw, 88px);
  font-weight: 650;
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.voices-head > p {
  max-width: 410px;
  padding-bottom: 7px;
  color: var(--redesign-muted);
  font-family: var(--ui);
  font-size: 15px;
  line-height: 1.65;
}

.voices-marquee {
  position: relative;
  margin-top: 76px;
  overflow: hidden;
  -webkit-mask-image: none;
  mask-image: none;
}

.voices-track {
  display: flex;
  width: max-content;
  animation: voicesMarquee 42s linear infinite;
}

.voices-marquee:hover .voices-track,
.voices-marquee:focus-within .voices-track {
  animation-play-state: paused;
}

.voices-set {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.voice-card {
  display: flex;
  width: clamp(340px, 31vw, 470px);
  min-height: 350px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(16, 17, 15, 0.1);
  border-radius: 12px;
  background: #fffefa;
}

.voice-card-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #777b73;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 740;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.voice-card-source b {
  color: var(--redesign-green-dark);
  font-weight: 740;
}

.voice-card blockquote {
  margin: 52px 0 42px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 620;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.voice-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.voice-card footer img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.voice-card footer span {
  display: grid;
  gap: 2px;
}

.voice-card footer strong {
  font-size: 13px;
  font-weight: 700;
}

.voice-card footer small {
  color: var(--redesign-muted);
  font-size: 10px;
}

.voice-card > a {
  margin-top: 24px;
  color: inherit;
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.voice-card > a span {
  color: var(--redesign-green-dark);
}

.voice-card-dark {
  border-color: var(--volt-on, #111111);
  background: var(--volt-on, #111111);
  color: #f7f7f2;
}

.voice-card-dark blockquote,
.voice-card-dark footer strong {
  color: #f7f7f2;
}

.voice-card-dark .voice-card-source,
.voice-card-dark footer small {
  color: #979c92;
}

.voice-proof-card {
  border-color: transparent;
  background: var(--redesign-green);
  color: var(--volt-on, #111111);
}

.voice-proof-card .voice-card-source,
.voice-proof-card .voice-card-source b {
  color: var(--volt-on, #111111);
}

.voice-proof-number {
  margin-top: 40px;
  font-family: var(--ui);
  font-size: clamp(86px, 9vw, 132px);
  font-weight: 650;
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.voice-proof-copy {
  max-width: 330px;
  margin-top: 26px;
  font-family: var(--ui);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.voices-disclosure {
  margin-top: 28px;
  color: #8a8e85;
  font-family: var(--ui);
  font-size: 10px;
}

@keyframes voicesMarquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1060px) {
  .nav {
    width: calc(100% - 28px);
  }

  .nav-links {
    gap: 18px;
  }

  .nav-cta-group {
    gap: 14px;
  }

  .nav-resources {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav {
    top: 10px;
    min-height: 60px;
    grid-template-columns: auto 1fr auto;
  }

  .nav-links,
  .nav-cta-group {
    display: none;
  }

  .voices-head {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .voices-head > p {
    padding-bottom: 0;
  }
}

@media (max-width: 620px) {
  .voices {
    padding: 88px 0 42px;
  }

  .voices-head h2 {
    font-size: clamp(47px, 15vw, 65px);
  }

  .voices-marquee {
    margin-top: 52px;
    overflow-x: auto;
    padding-inline: 20px;
    scroll-snap-type: inline mandatory;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }

  .voices-marquee::-webkit-scrollbar {
    display: none;
  }

  .voices-track {
    animation: none;
  }

  .voices-set[aria-hidden="true"] {
    display: none;
  }

  .voice-card {
    width: min(84vw, 370px);
    min-height: 340px;
    scroll-snap-align: center;
  }

  .voice-card blockquote {
    margin-top: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .voices-track {
    animation: none;
  }
}

/* Stronger section pass: each chapter has a distinct visual role. */
.product-editorial {
  padding: 150px 0 132px;
  background: #fffefa;
}

.product-editorial .editorial-head {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(70px, 10vw, 150px);
}

.product-editorial .editorial-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -26px;
}

.product-editorial .editorial-head h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--ui);
  font-size: clamp(58px, 7vw, 94px);
  font-weight: 650;
  line-height: 0.93;
  letter-spacing: -0.07em;
}

.product-editorial .editorial-head p {
  max-width: 420px;
  margin: 0 0 8px;
  color: var(--redesign-muted);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.65;
}

.workflow-proof {
  position: relative;
  margin-top: 78px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--volt-on, #111111);
  box-shadow: 0 42px 90px -58px rgba(16, 17, 15, 0.7);
}

.workflow-proof > img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1;
  border: 0;
  border-radius: 0;
  background: #fff;
  object-fit: cover;
  object-position: top;
}

.workflow-proof figcaption {
  display: grid;
  grid-template-columns: 140px minmax(0, 1.25fr) minmax(270px, 0.75fr);
  align-items: start;
  gap: 38px;
  margin: 0;
  padding: 36px 38px 40px;
  background: var(--volt-on, #111111);
  color: #f7f7f2;
}

.workflow-proof figcaption span {
  padding-top: 6px;
  color: var(--redesign-green);
}

.workflow-proof figcaption strong {
  max-width: 590px;
  color: #f7f7f2;
  font-size: clamp(27px, 2.9vw, 40px);
  line-height: 1.02;
}

.workflow-proof figcaption p {
  max-width: 390px;
  color: #aeb2a8;
  font-size: 14px;
  line-height: 1.65;
}

.creator-motion {
  padding: 148px 0 118px;
  overflow: hidden;
  background: var(--volt-on, #111111);
}

.creator-motion-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  align-items: end;
  gap: clamp(70px, 10vw, 150px);
}

.creator-motion-head h2 {
  max-width: 850px;
  font-size: clamp(66px, 8vw, 108px);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.creator-motion-copy > p {
  max-width: 520px;
  margin-top: 28px;
  color: #aeb2a8;
  font-size: 16px;
  line-height: 1.65;
}

.creator-index-inline {
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 0 0 10px;
  border-left: 0;
  text-align: right;
}

.creator-index-inline .creator-index-status {
  justify-content: flex-end;
}

.creator-index-inline .creator-index-number {
  font-size: clamp(66px, 7vw, 94px);
  line-height: 0.9;
}

.creator-loop-rail {
  width: calc(100vw - 32px);
  grid-auto-columns: clamp(270px, 22vw, 340px);
  gap: 14px;
  margin-top: 84px;
  margin-left: calc((100% - (100vw - 32px)) / 2);
  padding: 0 0 72px;
  cursor: grab;
}

.creator-loop-rail:active {
  cursor: grabbing;
}

.creator-loop-rail:focus-visible {
  outline: none;
}

.creator-loop-rail:focus-visible > figure:first-child {
  border-color: rgba(84, 215, 77, 0.58);
}

.creator-loop-rail figure,
.creator-loop-rail figure:nth-child(even) {
  position: relative;
  margin-top: 0;
}

.creator-loop-rail figure:nth-child(even) {
  transform: translateY(62px);
}

.creator-loop-rail video {
  border-radius: 14px;
  background: var(--volt-on, #111111);
}

.creator-loop-rail figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  gap: 4px;
  margin: 0;
  padding: 72px 18px 18px;
  border-radius: 0 0 14px 14px;
  background: rgba(17, 17, 17, 0.9);
}

.creator-loop-rail figcaption span {
  color: #aeb2a8;
}

.creator-loop-rail figcaption b {
  color: #fff;
  font-size: 13px;
}

.mobile {
  padding: 118px 0 0;
  background: #fffefa;
}

.mobile .mobile-inner {
  position: relative;
  min-height: 820px;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(68px, 9vw, 124px);
  overflow: hidden;
  padding: 72px 72px 0;
  border-radius: 18px;
  background: #e9efe5;
}

.mobile .mobile-inner::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -12%;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(84, 215, 77, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgba(84, 215, 77, 0.035), 0 0 0 220px rgba(84, 215, 77, 0.025);
  pointer-events: none;
}

.mobile-copy {
  z-index: 1;
  align-self: center;
  padding-bottom: 70px;
}

.mobile-copy h2 {
  max-width: 680px;
  font-size: clamp(58px, 6.2vw, 84px);
  line-height: 0.94;
}

.mobile-copy .lead {
  max-width: 600px;
  font-size: 16px;
}

.iphone-feature-tabs {
  max-width: 650px;
  margin-top: 40px;
  border-top-color: rgba(16, 17, 15, 0.12);
}

.iphone-feature-tabs button {
  min-height: 72px;
  grid-template-columns: 36px 120px minmax(0, 1fr);
  border-bottom-color: rgba(16, 17, 15, 0.12);
}

.iphone-feature-tabs button.is-active {
  padding-left: 12px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: inset 3px 0 0 var(--redesign-green-dark);
}

.mobile .asb-wrap {
  margin-top: 34px;
}

.mobile-free-note {
  color: #656960;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-device {
  z-index: 1;
  align-self: end;
  padding-bottom: 0;
}

.mobile-device::before {
  top: 19%;
  right: -12%;
  bottom: 5%;
  left: -12%;
  background: rgba(84, 215, 77, 0.22);
}

.iphone-gallery {
  width: min(354px, calc(100vw - 64px));
  margin-bottom: -62px;
}

.voices {
  padding: 136px 0 62px;
  background: var(--volt-on, #111111);
  color: #f7f7f2;
}

.voices-head h2 {
  color: #f7f7f2;
}

.voices-head > p {
  color: #aeb2a8;
}

.voices-marquee {
  margin-top: 84px;
}

.voice-card {
  width: clamp(360px, 30vw, 450px);
  min-height: 330px;
  border-color: transparent;
  border-radius: 14px;
}

.voice-card blockquote {
  margin: 46px 0 34px;
}

.voice-card-dark {
  border-color: #30352c;
  background: var(--volt-on, #111111);
}

.voice-proof-number {
  margin-top: 34px;
  font-size: clamp(82px, 8vw, 116px);
}

.voices-disclosure {
  color: #777d72;
}

.pricing {
  padding: 142px 0 128px;
  background: #f5f5f0;
}

.pricing-head-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 70px;
  margin-bottom: 64px;
  text-align: left;
}

.pricing-head-calculator > div:first-child {
  max-width: 780px;
  margin: 0;
  text-align: left;
}

.pricing-head h2 {
  margin-top: 18px;
  font-size: clamp(58px, 6.8vw, 92px);
  line-height: 0.92;
}

.pricing-head .lead {
  margin-top: 24px;
}

.plan-presets {
  border: 0;
  border-top: 1px solid rgba(16, 17, 15, 0.14);
  border-bottom: 1px solid rgba(16, 17, 15, 0.14);
  background: transparent;
}

.plan-presets > button {
  min-height: 190px;
  padding: 28px 26px;
  border-color: rgba(16, 17, 15, 0.11);
}

.plan-presets > button.is-active {
  background: #e8eee3;
  box-shadow: inset 0 4px 0 var(--redesign-green-dark);
}

.plan-presets strong {
  font-size: 21px;
}

.plan-presets b {
  font-size: 48px;
  letter-spacing: -0.055em;
}

.pricing-builder-disclosure {
  display: grid;
  margin-top: 28px;
  border: 0;
}

.pricing-builder-disclosure > summary {
  order: 2;
  min-height: 82px;
  margin-top: 18px;
  padding: 18px 4px;
  border-top: 1px solid rgba(16, 17, 15, 0.14);
  border-bottom: 1px solid rgba(16, 17, 15, 0.14);
}

.pricing-builder-disclosure > .pricing-builder {
  order: 1;
  display: grid !important;
  margin: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
}

.pricing-builder-disclosure:not(.is-customizing) .pricing-builder {
  grid-template-columns: 1fr;
}

.pricing-builder-disclosure:not(.is-customizing) .pricing-builder-controls {
  display: none;
}

.pricing-builder-disclosure.is-customizing .pricing-builder {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 22px;
}

.pricing-builder-disclosure.is-customizing .pricing-builder-controls {
  border: 1px solid rgba(16, 17, 15, 0.1);
  border-radius: 22px;
  background: #fffefa;
}

.pricing-builder-result {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(380px, 1.18fr);
  gap: 12px 62px;
  min-height: 390px;
  padding: 52px;
  border: 0;
  border-radius: 22px;
  background: var(--volt-on, #111111);
  color: #f7f7f2;
  box-shadow: none;
}

.pricing-builder-result .result-topline,
.pricing-builder-result > h3,
.pricing-builder-result > .result-tagline,
.pricing-builder-result > .result-price,
.pricing-builder-result > .result-price-note,
.pricing-builder-result > .card-btn,
.pricing-builder-result > .result-checkout-note {
  grid-column: 1;
}

.pricing-builder-result > h3 {
  margin-top: 4px;
  color: var(--redesign-green);
  font-size: clamp(55px, 6vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.pricing-builder-result .result-tagline {
  max-width: 360px;
  color: #d1d5cc;
  font-size: 15px;
  line-height: 1.5;
}

.pricing-builder-result .result-price-value {
  color: #f7f7f2;
  font-size: 58px;
}

.pricing-builder-result .result-price-period,
.pricing-builder-result .result-price-note,
.pricing-builder-result .result-checkout-note {
  color: #93998d;
}

.pricing-builder-result .result-divider {
  display: none;
}

.pricing-builder-result .result-plan-details {
  grid-column: 2;
  grid-row: 1 / span 5;
  align-self: start;
  padding-top: 2px;
}

.pricing-builder-result .result-includes-label {
  color: #8f958a;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-builder-result .result-features {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.pricing-builder-result .result-features li {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #e8ebe4;
}

.pricing-builder-result .result-features li span {
  color: var(--redesign-green);
}

.pricing-builder-result .result-common {
  grid-column: 2;
  align-self: end;
  color: #93998d;
}

.pricing-builder-result .card-btn-primary {
  width: max-content;
  min-width: 180px;
  margin-top: 10px;
  border-radius: 9px;
}

.pricing-builder-disclosure.is-customizing .pricing-builder-result {
  display: block;
  min-height: 0;
  padding: 42px;
}

.pricing-builder-disclosure.is-customizing .pricing-builder-result .result-plan-details {
  margin-top: 30px;
}

.pricing-builder-disclosure:not(.is-customizing) > summary i {
  transform: none;
}

.pricing-builder-disclosure.is-customizing > summary i {
  transform: rotate(45deg);
}

.pricing-paths {
  margin-top: 56px;
}

.faq {
  padding: 132px 0 126px;
  background: #e8eee3;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 62px;
}

.faq-sticky {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(16, 17, 15, 0.13);
}

.faq-sticky .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -40px;
}

.faq-sticky h2 {
  margin: 0;
  font-size: clamp(58px, 7vw, 94px);
  line-height: 0.9;
}

.faq-sticky p {
  max-width: 330px;
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(16, 17, 15, 0.11);
  border-radius: 12px;
  background: rgba(255, 254, 250, 0.58);
}

.faq-q {
  min-height: 86px;
  padding: 20px 22px;
  border: 0;
  font-size: 16px;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: #5e625a;
  font-size: 14px;
  line-height: 1.65;
  opacity: 0;
  transition: max-height 280ms ease, padding 280ms ease, opacity 180ms ease;
}

.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 22px 24px;
  opacity: 1;
}

@media (max-width: 980px) {
  .product-editorial .editorial-head,
  .creator-motion-head,
  .pricing-head-calculator,
  .faq-sticky {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-editorial .editorial-head .eyebrow,
  .faq-sticky .eyebrow {
    margin-bottom: 0;
  }

  .workflow-proof figcaption {
    grid-template-columns: 120px 1fr;
  }

  .workflow-proof figcaption p {
    grid-column: 2;
  }

  .creator-index-inline {
    max-width: none;
    justify-items: start;
    padding: 32px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    text-align: left;
  }

  .creator-index-inline .creator-index-status {
    justify-content: flex-start;
  }

  .mobile .mobile-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
    gap: 48px;
    padding-inline: 48px;
  }

  .pricing-head-calculator .builder-billing {
    justify-self: start;
  }

  .pricing-builder-result {
    grid-template-columns: 1fr;
  }

  .pricing-builder-result .result-plan-details,
  .pricing-builder-result .result-common {
    grid-column: 1;
    grid-row: auto;
  }

  .pricing-builder-result .result-plan-details {
    margin-top: 28px;
  }

  .pricing-builder-disclosure.is-customizing .pricing-builder {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .product-editorial,
  .creator-motion,
  .pricing,
  .faq {
    padding-top: 98px;
    padding-bottom: 86px;
  }

  .workflow-proof {
    overflow: visible;
    border-radius: 12px;
    background: transparent;
  }

  .workflow-proof > img {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    object-position: left top;
  }

  .workflow-proof figcaption {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 10px;
    padding: 28px;
    border-radius: 12px;
  }

  .workflow-proof figcaption p {
    grid-column: 1;
  }

  .creator-loop-rail {
    width: calc(100vw - 20px);
    grid-auto-columns: min(78vw, 320px);
    margin-left: calc((100% - (100vw - 20px)) / 2);
  }

  .creator-loop-rail figure:nth-child(even) {
    transform: none;
  }

  .mobile {
    padding: 74px 0;
  }

  .mobile .mobile-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 24px 0;
    border-radius: 22px;
  }

  .mobile-copy {
    padding-bottom: 0;
  }

  .mobile-copy h2 {
    font-size: clamp(52px, 14vw, 70px);
  }

  .iphone-feature-tabs button {
    grid-template-columns: 34px 1fr;
  }

  .iphone-feature-tabs small {
    display: none;
  }

  .iphone-gallery {
    width: min(320px, calc(100vw - 92px));
    margin-bottom: -52px;
  }

  .voices {
    padding-top: 96px;
  }

  .pricing-head h2,
  .faq-sticky h2 {
    font-size: clamp(53px, 15vw, 72px);
  }

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

  .plan-presets > button,
  .plan-presets > button:nth-child(2) {
    min-height: 170px;
    border-bottom: 1px solid rgba(16, 17, 15, 0.11);
  }

  .pricing-builder-result {
    display: block;
    min-height: 0;
    padding: 34px 26px;
  }

  .pricing-builder-result .result-plan-details {
    margin-top: 28px;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }
}

/* Resources opens as a compact editorial panel, not a floating list. */
.nav-resource-menu {
  right: -112px;
  left: auto;
  top: calc(100% + 18px);
  z-index: 60;
  display: grid;
  width: min(560px, calc(100vw - 48px));
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 10px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 15, 0.1);
  border-radius: 20px;
  background: #fffefa;
  box-shadow: 0 34px 70px -34px rgba(16, 17, 15, 0.55), 0 10px 30px rgba(16, 17, 15, 0.1);
  transform: none;
  animation: resource-menu-in 180ms ease both;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

@keyframes resource-menu-in {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.985);
  }

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

.nav-resource-menu .nav-resource-featured {
  display: flex;
  min-height: 238px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 22px;
  border-radius: 13px;
  background: var(--volt-on, #111111);
  color: #f7f7f2;
}

.nav-resource-menu .nav-resource-featured:hover,
.nav-resource-menu .nav-resource-featured:focus-visible {
  background: var(--volt-on, #111111);
}

.nav-resource-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ba095;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-resource-kicker img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.nav-resource-menu .nav-resource-featured > strong {
  max-width: 220px;
  margin-top: 36px;
  color: #f7f7f2;
  font-size: 24px;
  font-weight: 630;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.nav-resource-read {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--redesign-green);
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 680;
}

.nav-resource-read i,
.nav-resource-list i,
.nav-resource-footer i {
  font-style: normal;
}

.nav-resource-list {
  display: grid;
  align-content: start;
  padding: 10px 12px 0;
}

.nav-resource-label {
  padding: 0 2px 12px;
  color: #8b8e86;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-resource-list > a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px 2px;
  border-top: 1px solid rgba(16, 17, 15, 0.1);
  border-radius: 0;
  color: var(--redesign-ink);
}

.nav-resource-list > a:hover,
.nav-resource-list > a:focus-visible {
  background: transparent;
  color: var(--volt-on, #111111);
}

.nav-resource-list > a > span {
  display: grid;
  gap: 3px;
}

.nav-resource-list strong {
  font-size: 13px;
  font-weight: 690;
}

.nav-resource-list small {
  color: #7b7e76;
  font-size: 10px;
}

.nav-resource-list i {
  color: #9b9e96;
  font-size: 12px;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-resource-list > a:hover i,
.nav-resource-list > a:focus-visible i {
  color: var(--redesign-green);
  transform: translate(2px, -2px);
}

.nav-resource-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px 4px;
  border-top: 1px solid rgba(16, 17, 15, 0.1);
  color: #777a72;
  font-size: 11px;
}

.nav-resource-footer a {
  padding: 0;
  color: var(--volt-on, #111111);
  font-size: 11px;
  font-weight: 700;
}

.nav-resource-footer a:hover,
.nav-resource-footer a:focus-visible {
  background: transparent;
  color: var(--redesign-ink);
}

/* Creator footage is the hero of this chapter. */
.creator-motion {
  position: relative;
  isolation: isolate;
  padding: 148px 0 112px;
  overflow: hidden;
  background: var(--volt-on, #111111);
}

.creator-motion::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -180px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  display: none;
  background: none;
  pointer-events: none;
}

.creator-motion-head {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: clamp(68px, 9vw, 132px);
}

.creator-motion-copy .eyebrow {
  display: block;
  margin-bottom: 24px;
  color: var(--redesign-green);
}

.creator-motion-head h2 {
  max-width: 900px;
  margin: 0;
  color: #f7f7f2;
  font-size: clamp(68px, 7.4vw, 102px);
  font-weight: 640;
  line-height: 0.9;
  letter-spacing: -0.072em;
}

.creator-motion-head h2 em {
  color: var(--redesign-green);
  font-weight: 520;
}

.creator-motion-copy > p {
  max-width: 520px;
  margin-top: 28px;
  color: #acb1a7;
  font-size: 16px;
  line-height: 1.65;
}

.creator-index-inline {
  position: relative;
  display: grid;
  align-content: end;
  justify-items: end;
  gap: 13px;
  padding: 0 0 8px 38px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  text-align: right;
}

.creator-index-inline .creator-index-status {
  justify-content: flex-end;
}

.creator-index-inline .creator-index-number {
  color: var(--redesign-green);
  font-size: clamp(65px, 6.5vw, 92px);
  line-height: 0.9;
}

.creator-index-inline small {
  color: #777d73;
}

.creator-reel-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 78px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.creator-reel-bar > div:first-child {
  display: grid;
  gap: 5px;
}

.creator-reel-bar > div:first-child span {
  color: var(--redesign-green);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.creator-reel-bar > div:first-child strong {
  color: #eef0ea;
  font-size: 14px;
  font-weight: 580;
}

.creator-reel-controls {
  display: flex;
  gap: 8px;
}

.creator-reel-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: transparent;
  color: #f7f7f2;
  cursor: pointer;
  font-size: 17px;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.creator-reel-controls button:hover,
.creator-reel-controls button:focus-visible {
  border-color: var(--redesign-green);
  background: var(--redesign-green);
  color: var(--volt-on, #111111);
}

.creator-reel-controls button:disabled {
  cursor: default;
  opacity: 0.35;
}

.creator-reel-controls button span {
  display: grid;
  place-items: center;
  line-height: 1;
  transform: translateY(-1px);
}

.creator-loop-rail {
  display: flex;
  width: 100%;
  grid-auto-flow: unset;
  grid-auto-columns: unset;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0 max(24px, calc((100vw - 1200px) / 2)) 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: max(24px, calc((100vw - 1200px) / 2));
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.creator-loop-rail:active {
  cursor: grabbing;
}

.creator-loop-rail::-webkit-scrollbar {
  display: none;
}

.creator-loop-rail figure,
.creator-loop-rail figure:nth-child(even) {
  position: relative;
  flex: 0 0 clamp(300px, 26vw, 382px);
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: var(--volt-on, #111111);
  scroll-snap-align: start;
  transform: none;
}

.creator-loop-rail figure:first-child {
  flex-basis: clamp(380px, 35vw, 500px);
  border-color: rgba(84, 215, 77, 0.42);
}

.creator-loop-rail video {
  display: block;
  width: 100%;
  height: clamp(520px, 54vw, 680px);
  border-radius: 0;
  background: var(--volt-on, #111111);
  object-fit: cover;
  pointer-events: none;
  transform: scale(1.002);
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.creator-loop-rail figure:hover video,
.creator-loop-rail figure:focus-within video {
  transform: scale(1.02);
}

.creator-loop-rail figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 14px;
  margin: 0;
  padding: 110px 20px 20px;
  border-radius: 0;
  background: rgba(17, 17, 17, 0.92);
}

.creator-loop-rail figcaption small {
  grid-row: 1 / span 2;
  align-self: end;
  padding-bottom: 1px;
  color: var(--redesign-green);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.creator-loop-rail figcaption span {
  color: #aeb2a8;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.creator-loop-rail figcaption b {
  color: #fff;
  font-size: 15px;
  font-weight: 650;
}

.creator-motion-footer {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
}

.creator-reel-progress {
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.creator-reel-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--redesign-green);
  transform: scaleX(var(--creator-reel-progress, 0.25));
  transform-origin: left center;
  transition: transform 160ms ease;
}

.creator-motion-footer > p {
  min-width: 58px;
  color: #777d73;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.creator-motion-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.creator-motion-actions a {
  color: #d7dbd2;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.creator-motion-actions a:hover,
.creator-motion-actions a:focus-visible {
  color: var(--redesign-green);
}

.creator-motion-actions .creator-motion-primary {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 13px 0 13px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--redesign-green);
}

@media (max-width: 1100px) {
  .nav-resource-menu {
    right: -80px;
    width: 520px;
  }
}

@media (max-width: 980px) {
  .creator-motion-head {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .creator-index-inline {
    justify-items: start;
    padding: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
    text-align: left;
  }

  .creator-index-inline .creator-index-status {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .creator-motion {
    padding: 98px 0 80px;
  }

  .creator-motion-head h2 {
    font-size: clamp(54px, 15vw, 72px);
  }

  .creator-motion-copy > p {
    font-size: 15px;
  }

  .creator-index-inline .creator-index-number {
    font-size: clamp(58px, 17vw, 78px);
  }

  .creator-reel-bar {
    margin-top: 54px;
  }

  .creator-loop-rail {
    gap: 12px;
    margin-top: 18px;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }

  .creator-loop-rail figure,
  .creator-loop-rail figure:first-child {
    flex-basis: min(80vw, 330px);
  }

  .creator-loop-rail video {
    height: min(68vh, 570px);
  }

  .creator-motion-footer {
    grid-template-columns: 1fr auto;
    gap: 16px;
    margin-top: 16px;
  }

  .creator-reel-progress {
    grid-column: 1;
  }

  .creator-motion-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .creator-motion-actions .creator-motion-primary {
    padding-left: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-resource-menu {
    animation: none;
  }

  .creator-loop-rail {
    scroll-behavior: auto;
  }

  .creator-loop-rail video {
    transition: none;
  }
}

/* Final light editorial sequence: real product, real creators, real app. */
.product-editorial {
  padding: 136px 0 128px;
  background: #fffefa;
}

.product-editorial .editorial-head {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(60px, 9vw, 132px);
}

.product-editorial .editorial-head .eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 -22px;
  color: var(--redesign-green-dark);
}

.product-editorial .editorial-head h2 {
  max-width: 850px;
  margin: 0;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: clamp(54px, 6.4vw, 86px);
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: -0.066em;
}

.product-editorial .editorial-head p {
  max-width: 430px;
  margin: 0 0 7px;
  color: var(--redesign-muted);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.65;
}

.product-editorial .workflow-proof {
  margin-top: 76px;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 15, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 34px 90px -66px rgba(16, 17, 15, 0.58);
}

.product-editorial .workflow-proof > img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1;
  border: 0;
  border-bottom: 1px solid rgba(16, 17, 15, 0.1);
  border-radius: 0;
  background: #fff;
  object-fit: cover;
  object-position: top;
}

.product-editorial .workflow-proof figcaption {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: 46px;
  margin: 0;
  padding: 38px 40px 42px;
  background: #f0f3ec;
  color: var(--redesign-ink);
}

.workflow-proof-intro {
  display: grid;
  align-content: start;
  gap: 13px;
}

.product-editorial .workflow-proof-intro > span {
  padding: 0;
  color: var(--redesign-green-dark);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-editorial .workflow-proof-intro > strong {
  max-width: 420px;
  color: var(--redesign-ink);
  font-family: var(--ui);
  font-size: clamp(27px, 2.8vw, 38px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.product-editorial .workflow-proof-intro > p {
  max-width: 390px;
  margin: 0;
  color: var(--redesign-muted);
  font-size: 13px;
  line-height: 1.55;
}

.workflow-proof-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(16, 17, 15, 0.1);
  list-style: none;
}

.workflow-proof-steps li {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  padding: 4px 22px;
}

.workflow-proof-steps li + li {
  border-left: 1px solid rgba(16, 17, 15, 0.1);
}

.workflow-proof-steps span {
  color: var(--redesign-green-dark);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.workflow-proof-steps b {
  color: var(--redesign-ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.creator-motion {
  position: relative;
  isolation: isolate;
  padding: 136px 0 108px;
  overflow: hidden;
  background: #eef2ea;
  color: var(--redesign-ink);
}

.creator-motion::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -340px;
  right: -260px;
  width: 820px;
  height: 820px;
  border-radius: 50%;
  display: none;
  background: none;
  pointer-events: none;
}

.creator-motion-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 355px;
  align-items: end;
  gap: clamp(60px, 8vw, 112px);
}

.creator-motion-copy .eyebrow {
  display: block;
  margin-bottom: 24px;
  color: var(--redesign-green-dark);
}

.creator-motion-head h2 {
  max-width: 850px;
  margin: 0;
  color: var(--redesign-ink);
  font-size: clamp(58px, 6.7vw, 90px);
  font-weight: 650;
  line-height: 0.92;
  letter-spacing: -0.069em;
}

.creator-motion-head h2 em {
  color: var(--redesign-green-dark);
  font-weight: 520;
}

.creator-motion-copy > p {
  max-width: 600px;
  margin-top: 28px;
  color: var(--redesign-muted);
  font-size: 16px;
  line-height: 1.65;
}

.creator-index-inline {
  display: grid;
  min-width: 0;
  align-content: end;
  justify-items: start;
  gap: 12px;
  padding: 4px 0 8px 32px;
  border-left: 1px solid rgba(16, 17, 15, 0.13);
  text-align: left;
}

.creator-index-inline .creator-index-status {
  justify-content: flex-start;
  color: #676c63;
}

.creator-index-inline .creator-index-number {
  max-width: 100%;
  margin: 0;
  color: var(--redesign-green-dark);
  font-size: clamp(54px, 5.4vw, 74px);
  line-height: 0.92;
  letter-spacing: -0.072em;
  white-space: nowrap;
}

.creator-index-inline small {
  max-width: 290px;
  color: #73786f;
  font-size: 11px;
  line-height: 1.45;
}

.creator-reel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 68px;
  padding: 0;
  border: 0;
}

.creator-reel-bar > div:first-child {
  display: grid;
  gap: 6px;
}

.creator-reel-bar > div:first-child span {
  color: var(--redesign-green-dark);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.creator-reel-bar > div:first-child strong {
  color: var(--redesign-ink);
  font-size: 14px;
  font-weight: 620;
}

.creator-reel-controls {
  display: flex;
  gap: 8px;
}

.creator-reel-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(16, 17, 15, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  color: var(--redesign-ink);
  cursor: pointer;
  font-size: 17px;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.creator-reel-controls button:hover,
.creator-reel-controls button:focus-visible {
  border-color: var(--redesign-green);
  background: var(--redesign-green);
  color: var(--volt-on, #111111);
}

.creator-reel-controls button:disabled {
  cursor: default;
  opacity: 0.35;
}

.creator-reel-controls button span {
  display: grid;
  place-items: center;
  line-height: 1;
  transform: translateY(-1px);
}

.creator-loop-rail {
  display: flex;
  width: 100%;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0 max(24px, calc((100vw - 1200px) / 2)) 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: max(24px, calc((100vw - 1200px) / 2));
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.creator-loop-rail:active {
  cursor: grabbing;
}

.creator-loop-rail::-webkit-scrollbar {
  display: none;
}

.creator-loop-rail figure,
.creator-loop-rail figure:nth-child(even) {
  position: relative;
  display: grid;
  flex: 0 0 clamp(310px, 27vw, 400px);
  grid-template-rows: auto auto;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 15, 0.1);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 48px -42px rgba(16, 17, 15, 0.6);
  scroll-snap-align: start;
  transform: none;
  transition: border-color 180ms ease, transform 220ms ease;
}

.creator-loop-rail figure:first-child {
  flex-basis: clamp(310px, 27vw, 400px);
  border-color: rgba(16, 17, 15, 0.1);
}

.creator-loop-rail figure:hover,
.creator-loop-rail figure:focus-within {
  border-color: rgba(84, 215, 77, 0.58);
}

.creator-loop-rail video {
  display: block;
  width: 100%;
  height: clamp(470px, 43vw, 600px);
  border-radius: 0;
  background: #dfe5dc;
  object-fit: cover;
  pointer-events: none;
  transform: scale(1.002);
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.creator-loop-rail figure:hover video,
.creator-loop-rail figure:focus-within video {
  transform: scale(1.02);
}

.creator-loop-rail figcaption {
  position: static;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 14px;
  margin: 0;
  padding: 17px 18px 18px;
  border-top: 1px solid rgba(16, 17, 15, 0.09);
  border-radius: 0;
  background: #fff;
}

.creator-loop-rail figcaption small {
  grid-row: 1 / span 2;
  align-self: end;
  padding-bottom: 1px;
  color: var(--redesign-green-dark);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.creator-loop-rail figcaption span {
  color: #7b7f77;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.creator-loop-rail figcaption b {
  color: var(--redesign-ink);
  font-size: 15px;
  font-weight: 650;
}

.creator-program-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  border-top: 1px solid rgba(16, 17, 15, 0.12);
  border-bottom: 1px solid rgba(16, 17, 15, 0.12);
}

.creator-program-pillars article {
  min-width: 0;
  padding: 30px 28px 32px 0;
}

.creator-program-pillars article + article {
  padding-left: 28px;
  border-left: 1px solid rgba(16, 17, 15, 0.12);
}

.creator-program-pillars span {
  color: var(--redesign-green-dark);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.creator-program-pillars p {
  max-width: 320px;
  margin: 15px 0 0;
  color: #4f544c;
  font-size: 14px;
  line-height: 1.55;
}

.creator-motion-footer {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.creator-reel-progress {
  height: 1px;
  overflow: hidden;
  background: rgba(16, 17, 15, 0.14);
}

.creator-reel-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--redesign-green-dark);
  transform: scaleX(var(--creator-reel-progress, 0.25));
  transform-origin: left center;
  transition: transform 160ms ease;
}

.creator-motion-footer > p {
  min-width: 58px;
  color: #7a7f76;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.creator-motion-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.creator-motion-actions a {
  color: #4a4e47;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.creator-motion-actions a:hover,
.creator-motion-actions a:focus-visible {
  color: var(--redesign-green-dark);
}

.creator-motion-actions .creator-motion-primary {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 13px 0 13px 18px;
  border-left: 1px solid rgba(16, 17, 15, 0.16);
  color: var(--redesign-green-dark);
}

.mobile {
  padding: 128px 0;
  overflow: hidden;
  background: #fffefa;
}

.mobile .mobile-inner {
  position: relative;
  display: grid;
  min-height: 780px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
  align-items: center;
  gap: clamp(64px, 8vw, 112px);
  overflow: hidden;
  padding: 72px 74px 0;
  border: 1px solid rgba(16, 17, 15, 0.08);
  border-radius: 30px;
  background: #edf1e9;
  box-shadow: 0 36px 90px -72px rgba(16, 17, 15, 0.56);
}

.mobile .mobile-inner::before {
  content: "";
  position: absolute;
  top: -24%;
  right: -15%;
  width: 62%;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  display: none;
  background: none;
  box-shadow: none;
  pointer-events: none;
}

.mobile-copy {
  z-index: 1;
  align-self: center;
  padding-bottom: 72px;
}

.mobile-copy h2 {
  max-width: 720px;
  margin-top: 20px;
  color: var(--redesign-ink);
  font-size: clamp(52px, 5.4vw, 74px);
  line-height: 0.96;
}

.mobile-copy .lead {
  max-width: 620px;
  margin-top: 26px;
  color: var(--redesign-muted);
  font-size: 16px;
  line-height: 1.65;
}

.iphone-feature-tabs {
  max-width: 670px;
  margin-top: 38px;
  border-top: 1px solid rgba(16, 17, 15, 0.12);
}

.iphone-feature-tabs button {
  min-height: 72px;
  grid-template-columns: 36px 116px minmax(0, 1fr);
  border-bottom-color: rgba(16, 17, 15, 0.12);
}

.iphone-feature-tabs button.is-active {
  padding-left: 10px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 3px 0 0 var(--redesign-green-dark);
}

.mobile .asb-wrap {
  margin-top: 32px;
}

.mobile-device {
  z-index: 1;
  align-self: end;
  padding-bottom: 0;
}

.mobile-device::before {
  display: none;
  background: none;
  filter: none;
}

.iphone-gallery {
  width: min(352px, calc(100vw - 64px));
  margin-bottom: -64px;
}

@media (max-width: 980px) {
  .product-editorial .editorial-head,
  .creator-motion-head,
  .mobile .mobile-inner {
    grid-template-columns: 1fr;
  }

  .product-editorial .editorial-head,
  .creator-motion-head {
    gap: 36px;
  }

  .product-editorial .editorial-head .eyebrow {
    margin-bottom: 0;
  }

  .product-editorial .workflow-proof figcaption {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .workflow-proof-steps {
    border-top: 1px solid rgba(16, 17, 15, 0.1);
    border-left: 0;
    padding-top: 28px;
  }

  .creator-index-inline {
    justify-items: start;
    padding: 28px 0 0;
    border-top: 1px solid rgba(16, 17, 15, 0.13);
    border-left: 0;
  }

  .mobile .mobile-inner {
    min-height: 0;
    gap: 54px;
    padding: 64px 54px 0;
  }

  .mobile-copy {
    order: -1;
    padding-bottom: 0;
  }

  .mobile-device {
    order: 0;
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .product-editorial,
  .creator-motion,
  .mobile {
    padding: 92px 0 82px;
  }

  .product-editorial .editorial-head h2,
  .creator-motion-head h2,
  .mobile-copy h2 {
    font-size: clamp(44px, 12.5vw, 60px);
  }

  .product-editorial .workflow-proof {
    margin-top: 50px;
    border-radius: 16px;
  }

  .product-editorial .workflow-proof > img {
    min-height: 300px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: top left;
  }

  .product-editorial .workflow-proof figcaption {
    padding: 28px 24px 30px;
  }

  .workflow-proof-steps {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 8px;
  }

  .workflow-proof-steps li {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }

  .workflow-proof-steps li + li {
    border-top: 1px solid rgba(16, 17, 15, 0.1);
    border-left: 0;
  }

  .creator-index-inline .creator-index-number {
    font-size: clamp(50px, 16vw, 68px);
  }

  .creator-reel-bar {
    align-items: end;
    margin-top: 46px;
  }

  .creator-reel-bar > div:first-child strong {
    max-width: 220px;
  }

  .creator-loop-rail {
    gap: 12px;
    margin-top: 18px;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }

  .creator-loop-rail figure,
  .creator-loop-rail figure:first-child {
    flex-basis: min(80vw, 330px);
  }

  .creator-loop-rail video {
    height: min(68vh, 560px);
  }

  .creator-program-pillars {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .creator-program-pillars article,
  .creator-program-pillars article + article {
    padding: 24px 0;
    border-left: 0;
  }

  .creator-program-pillars article + article {
    border-top: 1px solid rgba(16, 17, 15, 0.12);
  }

  .creator-motion-footer {
    grid-template-columns: 1fr auto;
    gap: 16px;
    margin-top: 18px;
  }

  .creator-motion-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(16, 17, 15, 0.12);
  }

  .creator-motion-actions .creator-motion-primary {
    padding-left: 14px;
  }

  .mobile .mobile-inner {
    gap: 46px;
    padding: 52px 24px 0;
    border-radius: 20px;
  }

  .mobile-copy .lead {
    font-size: 15px;
  }

  .iphone-feature-tabs button {
    min-height: 78px;
    grid-template-columns: 28px 92px minmax(0, 1fr);
    gap: 8px;
  }

  .iphone-feature-tabs small {
    font-size: 11px;
    line-height: 1.35;
  }

  .iphone-gallery {
    width: min(318px, calc(100vw - 74px));
    margin-bottom: -52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .creator-loop-rail {
    scroll-behavior: auto;
  }

  .creator-loop-rail video {
    transition: none;
  }
}

/* Direction reset: keep the approved hero, restore the live product index,
   and treat the creator network as a real destination rather than a SaaS card stack. */
.features > .container > .features-head,
.features > .container > .rows {
  display: block;
}

.features {
  padding: 132px 0 144px;
  background: #fffefa;
}

.features .features-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(56px, 8vw, 120px);
  margin-bottom: 64px;
}

.features .features-head h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(58px, 7.2vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.features .features-subhead {
  max-width: 440px;
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.6;
}

.features .rows {
  border-color: rgba(16, 17, 15, 0.15);
}

.features .row {
  grid-template-columns: 54px minmax(180px, 0.58fr) minmax(0, 1.42fr);
  gap: 30px;
  padding: 32px 12px 32px 0;
  border-color: rgba(16, 17, 15, 0.13);
}

.features .row:hover {
  background: #f4f5f0;
}

.features .row-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(16, 17, 15, 0.15);
  border-radius: 3px;
  background: transparent;
  color: #73766f;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.features .row:hover .row-icon {
  border-color: var(--redesign-green);
  background: var(--redesign-green);
  color: var(--volt-on, #111111);
}

.features .row-name {
  margin: 0;
  padding-top: 7px;
  font-size: 19px;
}

.features .row-desc {
  max-width: 720px;
  margin: 0;
  font-size: 15px;
  line-height: 1.58;
}

.community-world {
  position: relative;
  padding: 144px 0 126px;
  overflow: hidden;
  background: #dedfdd;
  color: #10110f;
}

.section-anchor {
  position: absolute;
  top: -92px;
  left: 0;
}

.community-world-intro {
  max-width: 1020px;
  margin: 0 auto 82px;
  text-align: center;
}

.community-world-intro .eyebrow {
  color: #666963;
}

.community-world-intro h2 {
  margin: 24px 0 0;
  color: #10110f;
  font-size: clamp(58px, 7.2vw, 96px);
  font-weight: 680;
  line-height: 0.94;
  letter-spacing: -0.067em;
}

.community-world-intro p {
  max-width: 620px;
  margin: 28px auto 0;
  color: #565954;
  font-size: 18px;
  line-height: 1.6;
}

.community-world-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 17, 15, 0.22);
  border-left: 1px solid rgba(16, 17, 15, 0.22);
}

.network-card {
  display: grid;
  min-width: 0;
  min-height: 640px;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border-right: 1px solid rgba(16, 17, 15, 0.22);
  border-bottom: 1px solid rgba(16, 17, 15, 0.22);
  background: rgba(255, 255, 255, 0.18);
}

.network-card-community,
.network-card-volt {
  background: #e8e9e6;
}

.network-card-coaching {
  background: #e1e3df;
}

.network-card-index {
  background: #d6ebd2;
}

.network-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 20px 26px;
  border-bottom: 1px solid rgba(16, 17, 15, 0.18);
}

.network-card > header strong {
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.network-card > header span {
  color: #777a74;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.network-card-media {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  padding: 38px;
}

.network-phone-media img {
  display: block;
  width: min(276px, 60%);
  height: auto;
  border: 8px solid #25282c;
  border-radius: 44px;
  background: #fff;
  box-shadow: 0 30px 54px -38px rgba(16, 17, 15, 0.72);
}

.network-desktop-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 8px solid #fff;
  background: #fff;
  box-shadow: 0 24px 48px -38px rgba(16, 17, 15, 0.65);
}

.network-card > footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  min-height: 118px;
  padding: 24px 26px;
  border-top: 1px solid rgba(16, 17, 15, 0.18);
}

.network-card > footer div {
  display: grid;
  gap: 7px;
}

.network-card > footer strong {
  font-size: 16px;
  font-weight: 680;
}

.network-card > footer p {
  max-width: 430px;
  margin: 0;
  color: #60635d;
  font-size: 13px;
  line-height: 1.5;
}

.network-card > footer a,
.network-index-actions a {
  flex: 0 0 auto;
  color: #10110f;
  font-size: 12px;
  font-weight: 680;
  text-decoration: none;
}

.network-card > footer a:hover,
.network-card > footer a:focus-visible,
.network-index-actions a:hover,
.network-index-actions a:focus-visible {
  color: var(--volt-on, #111111);
}

.network-index-body {
  display: grid;
  align-content: center;
  gap: 15px;
  padding: 48px 38px;
}

.network-live {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #555951;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.network-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--redesign-green);
  box-shadow: 0 0 0 4px rgba(84, 215, 77, 0.15);
}

.network-index-body p {
  margin: 8px 0 0;
  color: var(--volt-on, #111111);
  font-size: clamp(64px, 7vw, 98px);
  font-weight: 650;
  line-height: 0.86;
  letter-spacing: -0.08em;
}

.network-index-body small {
  max-width: 390px;
  color: #596055;
  font-size: 13px;
  line-height: 1.5;
}

.network-card > .network-index-actions {
  align-items: center;
}

.network-index-actions a:last-child {
  padding: 10px 13px;
  border: 1px solid rgba(16, 17, 15, 0.28);
  background: rgba(255, 255, 255, 0.38);
}

.community-highlights-head {
  display: flex;
  width: 100vw;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 142px;
  margin-left: calc(50% - 50vw);
  padding-inline: 32px;
}

.community-highlights-head h3 {
  margin: 0;
  font-size: clamp(40px, 5.3vw, 70px);
  font-weight: 740;
  line-height: 1;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.community-highlights-head .creator-reel-controls {
  display: flex;
  gap: 18px;
}

.community-highlights-head .creator-reel-controls button {
  width: 52px;
  height: 38px;
  border: 0;
  border-bottom: 1px solid rgba(16, 17, 15, 0.55);
  border-radius: 0;
  background: transparent;
  color: #10110f;
}

.community-highlights-head .creator-reel-controls button:hover,
.community-highlights-head .creator-reel-controls button:focus-visible {
  border-color: var(--volt-on, #111111);
  background: transparent;
  color: var(--volt-on, #111111);
}

.community-highlights-rail {
  gap: 24px;
  margin-top: 36px;
  padding: 0 32px 20px;
  scroll-padding-inline: 32px;
}

.community-highlights-rail figure,
.community-highlights-rail figure:nth-child(even),
.community-highlights-rail figure:first-child {
  flex: 0 0 min(400px, calc((100vw - 112px) / 3));
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.community-highlights-rail video {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(16, 17, 15, 0.18);
  border-radius: 22px;
  background: #cfd1cd;
  object-fit: cover;
}

.community-highlights-rail figcaption {
  display: none;
}

.community-highlights-rail figcaption small {
  grid-row: 1 / span 2;
  color: var(--volt-on, #111111);
}

.community-highlights-rail figcaption span {
  color: #6e716b;
}

.community-highlights-rail figcaption b {
  color: #10110f;
}

.community-highlights-footer {
  display: flex;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  margin-top: 10px;
  padding-inline: 32px;
}

.community-highlights-footer .creator-reel-progress {
  width: 100%;
  background: rgba(16, 17, 15, 0.2);
}

.community-highlights-footer .creator-reel-progress span {
  background: var(--volt);
}

.community-highlights-footer p {
  display: none;
}

.community-highlights-footer > a {
  color: #10110f;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 720;
  letter-spacing: -0.025em;
  text-align: center;
  text-decoration: none;
}

.community-highlights-footer > a:hover,
.community-highlights-footer > a:focus-visible {
  color: var(--volt-on, #111111);
}

.movement-statement {
  padding: 156px 0;
  background: #fffefa;
}

.movement-statement .manifesto-inner {
  max-width: 1040px;
}

.movement-statement .manifesto-h {
  font-size: clamp(64px, 8.2vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.072em;
}

@media (max-width: 900px) {
  .features .features-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .features .row {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .features .row-body {
    grid-column: 2;
  }

  .community-world-grid {
    grid-template-columns: 1fr;
  }

  .network-card {
    min-height: 610px;
  }

  .community-highlights-rail figure,
  .community-highlights-rail figure:nth-child(even),
  .community-highlights-rail figure:first-child {
    flex-basis: min(74vw, 430px);
  }
}

@media (max-width: 640px) {
  .features {
    padding: 100px 0;
  }

  .features .features-head h2 {
    font-size: clamp(48px, 16vw, 70px);
  }

  .features .row {
    gap: 18px;
    padding: 26px 0;
  }

  .features .row-name {
    font-size: 17px;
  }

  .community-world {
    padding: 104px 0 96px;
  }

  .community-world-intro {
    margin-bottom: 54px;
    text-align: left;
  }

  .community-world-intro h2 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .community-world-intro p {
    margin-left: 0;
  }

  .network-card {
    min-height: 560px;
  }

  .network-card > header,
  .network-card > footer {
    padding-inline: 18px;
  }

  .network-card-media {
    padding: 28px 20px;
  }

  .network-phone-media img {
    width: min(250px, 76%);
  }

  .network-card > footer {
    align-items: start;
    flex-direction: column;
  }

  .network-index-body {
    padding: 40px 22px;
  }

  .network-index-body p {
    font-size: clamp(58px, 18vw, 84px);
  }

  .community-highlights-head {
    align-items: end;
    margin-top: 96px;
    padding-inline: 20px;
  }

  .community-highlights-head h3 {
    max-width: 240px;
    font-size: 44px;
  }

  .community-highlights-head .creator-reel-controls {
    gap: 8px;
  }

  .community-highlights-head .creator-reel-controls button {
    width: 40px;
  }

  .community-highlights-rail {
    gap: 14px;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }

  .community-highlights-rail figure,
  .community-highlights-rail figure:nth-child(even),
  .community-highlights-rail figure:first-child {
    flex-basis: min(82vw, 350px);
  }

  .community-highlights-footer {
    gap: 24px;
    padding-inline: 20px;
  }

  .movement-statement {
    padding: 112px 0;
  }
}

/* 2026 conviction pass. Hero and logo rail stay unchanged. */
.nav {
  background: rgba(255, 254, 250, 0.72);
  -webkit-backdrop-filter: blur(26px) saturate(1.35);
  backdrop-filter: blur(26px) saturate(1.35);
  box-shadow: 0 18px 48px -38px rgba(16, 17, 15, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.nav-resources summary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.nav-resources summary::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 180ms ease, margin 180ms ease;
}

.nav-resources details[open] summary::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.nav-resource-menu {
  background: rgba(255, 254, 250, 0.94);
  -webkit-backdrop-filter: blur(26px) saturate(1.2);
  backdrop-filter: blur(26px) saturate(1.2);
}

.conviction-product {
  padding: 116px 0 112px;
  overflow: hidden;
  background: #f8f7f3;
}

.conviction-product-head {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 62px;
}

.conviction-product-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -44px;
  color: #6e716b;
}

.conviction-product-head h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(60px, 7vw, 96px);
  font-weight: 650;
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.conviction-product-head p {
  max-width: 390px;
  margin: 0 0 8px;
  color: #62655f;
  font-size: 17px;
  line-height: 1.65;
}

.product-chapters {
  display: grid;
  gap: 34px;
}

.product-chapter {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 34px;
}

.product-chapter-discover {
  display: grid;
  min-height: 780px;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  background: #e5e7e2;
}

.product-chapter-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}

.chapter-number,
.product-chapter-volt > header .chapter-number {
  color: var(--volt-on, #111111);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-chapter h3 {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 660;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.product-chapter-copy > p,
.product-chapter-volt > header > p {
  max-width: 540px;
  margin: 28px 0 0;
  color: #595c57;
  font-size: 16px;
  line-height: 1.65;
}

.product-chapter-copy ul {
  display: grid;
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.product-chapter-copy li {
  position: relative;
  padding: 15px 0 15px 25px;
  border-top: 1px solid rgba(16, 17, 15, 0.12);
  color: #272925;
  font-size: 14px;
  font-weight: 620;
}

.product-chapter-copy li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--redesign-green);
}

.product-chapter-art {
  position: relative;
  min-width: 0;
}

.product-chapter-art-phone {
  display: grid;
  place-items: end center;
  padding: 74px 64px 0;
  background: #d4e9cf;
}

.product-chapter-art-phone img {
  display: block;
  width: min(430px, 86%);
  height: auto;
  border: 10px solid #25282c;
  border-bottom: 0;
  border-radius: 54px 54px 0 0;
  background: #fff;
  box-shadow: 0 35px 72px -50px rgba(16, 17, 15, 0.7);
}

.product-art-note {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 30px;
  color: #5d6259;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-chapter-volt {
  padding: 76px 76px 0;
  background: #d9ead5;
}

.product-chapter-volt > header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 58px;
}

.product-chapter-volt > header .chapter-number {
  grid-column: 1 / -1;
  margin-bottom: -30px;
}

.product-chapter-volt > header h3 {
  margin-top: 0;
}

.product-desktop-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  background: #fff;
  box-shadow: 0 34px 74px -48px rgba(16, 17, 15, 0.76);
}

.product-desktop-frame > img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}

.product-desktop-frame figcaption {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 70px;
  padding: 18px 24px;
  border-top: 1px solid #e5e7e2;
  color: #62655e;
  font-size: 12px;
}

.product-desktop-frame figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-desktop-frame figcaption i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--redesign-green);
  box-shadow: 0 0 0 4px rgba(84, 215, 77, 0.16);
}

.product-desktop-frame figcaption strong {
  color: #232521;
  font-weight: 650;
}

.product-chapter-scale {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  background: var(--redesign-green);
}

.product-chapter-scale .chapter-number,
.product-chapter-scale .product-chapter-copy > p {
  color: var(--volt-on, #111111);
}

.product-chapter-scale .product-chapter-copy li {
  border-color: rgba(16, 17, 15, 0.2);
}

.product-chapter-scale .product-chapter-copy li::before {
  background: var(--volt-on, #111111);
}

.product-loop-map {
  position: relative;
  display: grid;
  align-content: center;
  gap: 30px;
  margin: 30px;
  padding: 52px;
  overflow: hidden;
  border-radius: 26px;
  background: #f8f7f3;
}

.loop-source {
  display: grid;
  gap: 8px;
  padding: 24px 26px;
  border: 1px solid #dedfd9;
  border-radius: 18px;
  background: #fff;
}

.loop-source span,
.loop-destinations small {
  color: #7b7e77;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loop-source strong {
  font-size: 22px;
  letter-spacing: -0.035em;
}

.loop-voltr {
  position: relative;
  display: grid;
  width: 74px;
  height: 74px;
  margin-inline: auto;
  place-items: center;
  border: 1px solid #cfd2ca;
  border-radius: 22px;
  background: #fff;
}

.loop-voltr::before,
.loop-voltr::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 30px;
  background: #afb3aa;
}

.loop-voltr::before {
  bottom: 100%;
}

.loop-voltr::after {
  top: 100%;
}

.loop-voltr img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.loop-destinations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.loop-destinations > span {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 8px;
  min-height: 164px;
  padding: 22px;
  border-radius: 18px;
  background: #e9eae5;
}

.loop-destinations img {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  object-fit: contain;
}

.loop-destinations b {
  font-size: 15px;
}

.loop-destinations small {
  line-height: 1.5;
}

.creator-network {
  position: relative;
  padding: 118px 0 108px;
  overflow: hidden;
  background: #e2e3df;
  color: #10110f;
}

.creator-network-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 76px;
  margin-bottom: 60px;
}

.creator-network-intro h2 {
  max-width: 940px;
  margin: 24px 0 0;
  font-size: clamp(58px, 7vw, 94px);
  font-weight: 660;
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.creator-network-intro > p {
  max-width: 390px;
  margin: 0 0 8px;
  color: #5e615b;
  font-size: 17px;
  line-height: 1.65;
}

.creator-network-stage {
  display: grid;
  min-height: 780px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.32fr) minmax(260px, 0.8fr);
  gap: 18px;
  scroll-margin-top: 104px;
}

.creator-index-panel,
.creator-network-notes {
  border-radius: 28px;
  background: #f8f7f3;
}

.creator-index-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px 32px;
}

.creator-index-panel #creator-index-number {
  margin: 30px 0 0;
  color: var(--volt-on, #111111);
  font-size: clamp(48px, 4vw, 58px);
  font-weight: 660;
  line-height: 0.88;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.creator-index-panel > small {
  margin-top: 22px;
  color: #666961;
  font-size: 13px;
  line-height: 1.5;
}

.creator-index-panel > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid #dcddd7;
  color: #10110f;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.creator-phone-pair {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  padding: 68px 24px 0;
  border-radius: 28px;
  background: #cee7c9;
}

.creator-phone-pair figure {
  display: grid;
  width: min(49%, 310px);
  margin: 0;
  align-content: end;
}

.creator-phone-pair figure:nth-child(2) {
  transform: translateY(54px);
}

.creator-phone-pair img {
  display: block;
  width: 100%;
  height: auto;
  border: 8px solid #25282c;
  border-bottom: 0;
  border-radius: 42px 42px 0 0;
  background: #fff;
  box-shadow: 0 30px 64px -44px rgba(16, 17, 15, 0.72);
}

.creator-phone-pair figcaption {
  position: absolute;
  z-index: 2;
  top: 24px;
  display: none;
}

.creator-network-notes {
  display: grid;
  align-content: center;
  padding: 18px 32px;
}

.creator-network-notes article {
  display: grid;
  gap: 9px;
  padding: 28px 0;
  border-bottom: 1px solid #dcddd7;
}

.creator-network-notes article > span {
  color: var(--volt-on, #111111);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
}

.creator-network-notes article strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.creator-network-notes article p {
  margin: 0;
  color: #666961;
  font-size: 13px;
  line-height: 1.55;
}

.creator-app-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 16px;
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--volt-on, #111111);
  color: #f7f7f2;
  text-decoration: none;
}

.creator-app-link small {
  grid-column: 1;
  color: #a7aaa2;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.creator-app-link strong {
  grid-column: 1;
  font-size: 14px;
}

.creator-app-link > span {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--redesign-green);
}

.community-highlights-head {
  margin-top: 150px;
}

.community-highlights-head > div:first-child {
  display: grid;
  gap: 18px;
}

.community-highlights-head .eyebrow {
  color: #656861;
}

.community-highlights-head h3 {
  font-size: clamp(54px, 6.5vw, 88px);
  text-transform: none;
}

.community-highlights-rail {
  gap: 18px;
  margin-top: 42px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2 + 32px)) 24px;
  scroll-padding-inline: max(24px, calc((100vw - 1240px) / 2 + 32px));
  scroll-margin-top: 104px;
}

.community-highlights-rail figure,
.community-highlights-rail figure:nth-child(even),
.community-highlights-rail figure:first-child {
  flex: 0 0 min(360px, 74vw);
}

.community-highlights-rail video {
  height: auto;
  aspect-ratio: 9 / 16;
  border: 0;
  border-radius: 26px;
  background: #cfd1cd;
  box-shadow: 0 26px 60px -48px rgba(16, 17, 15, 0.7);
}

.community-highlights-footer {
  gap: 28px;
  margin-top: 22px;
}

.community-highlights-footer > a {
  font-size: clamp(22px, 2.3vw, 32px);
}

.movement-manifesto {
  padding: 128px 0 126px;
  background: #f9f8f4;
}

.movement-manifesto-head {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  align-items: start;
  gap: 80px;
}

.movement-manifesto-head .eyebrow {
  margin-top: 13px;
  color: #6d7069;
}

.movement-manifesto-head h2 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(55px, 7.2vw, 96px);
  font-weight: 650;
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.movement-lines {
  display: grid;
  gap: 20px;
  margin: 116px 0 0 280px;
}

.movement-lines p {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 20px;
  margin: 0;
  color: #c7c9c3;
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 630;
  line-height: 1;
  letter-spacing: -0.06em;
  transition: color 420ms ease, transform 420ms ease;
}

.movement-lines p span {
  margin-top: 10px;
  color: #afb2aa;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.movement-lines p.is-active {
  color: #10110f;
  transform: translateX(10px);
}

.movement-lines p.is-active:nth-child(2) {
  color: var(--volt-on, #111111);
}

.movement-manifesto-foot {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 52px;
  margin: 108px 0 0 280px;
  padding-top: 32px;
  border-top: 1px solid #d9dad4;
}

.movement-manifesto-foot p {
  max-width: 610px;
  margin: 0;
  color: #5f625c;
  font-size: 17px;
  line-height: 1.65;
}

.movement-manifesto-foot a {
  flex: 0 0 auto;
  color: var(--volt-on, #111111);
  font-size: 17px;
  font-weight: 720;
  text-decoration: none;
}

.field-proof {
  padding: 112px 0 80px;
  overflow: hidden;
  background: #e9eae5;
}

.field-proof-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 70px;
}

.field-proof-head h2 {
  margin: 22px 0 0;
  font-size: clamp(56px, 6.8vw, 90px);
  font-weight: 650;
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.field-proof-head > p {
  max-width: 390px;
  margin: 0 0 9px;
  color: #60635d;
  font-size: 16px;
  line-height: 1.65;
}

.field-proof-window {
  margin-top: 56px;
  overflow: hidden;
}

.field-proof-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding-inline: 16px;
  animation: field-proof-marquee 58s linear infinite;
}

.field-proof-window:hover .field-proof-track,
.field-proof-window:focus-within .field-proof-track {
  animation-play-state: paused;
}

@keyframes field-proof-marquee {
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.field-proof-track article {
  display: flex;
  width: min(400px, 84vw);
  min-height: 420px;
  box-sizing: border-box;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 30px;
  border-radius: 28px;
  background: #fffefa;
  box-shadow: 0 28px 64px -52px rgba(16, 17, 15, 0.7);
}

.field-proof-track article:nth-child(even) {
  margin-top: 54px;
}

.field-proof-track article > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #7b7e76;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field-proof-track article > header b {
  color: #3a3d37;
  font-size: inherit;
}

.proof-quote-card blockquote {
  margin: 60px 0 40px;
  font-size: 29px;
  font-weight: 610;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.proof-quote-card > footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.proof-quote-card > footer img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.proof-quote-card > footer span {
  display: grid;
  gap: 3px;
}

.proof-quote-card > footer strong {
  font-size: 13px;
}

.proof-quote-card > footer small {
  color: #777a73;
  font-size: 10px;
}

.proof-number-card {
  background: var(--redesign-green) !important;
}

.proof-number-card-light {
  background: #d5e8d1 !important;
}

.proof-number-card > strong {
  margin-top: 72px;
  font-size: clamp(60px, 6vw, 86px);
  font-weight: 660;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.proof-number-card > p {
  max-width: 300px;
  margin: 30px 0 0;
  font-size: 18px;
  font-weight: 620;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.proof-number-card > a {
  margin-top: auto;
  color: var(--volt-on, #111111);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.proof-quote-card-green {
  background: #dcebd8 !important;
}

.field-proof-disclosure {
  margin-top: 58px;
  color: #777a73;
  font-size: 10px;
  line-height: 1.55;
}

.pricing {
  padding: 112px 0 108px;
  background: #f9f8f4;
}

.pricing-head-calculator {
  align-items: end;
  margin-bottom: 48px;
}

.pricing-head h2 {
  font-size: clamp(58px, 6.4vw, 84px);
  line-height: 0.92;
}

.pricing-head h2 .accent {
  white-space: nowrap;
}

.pricing-head .lead {
  max-width: 520px;
  color: #63665f;
}

.plan-presets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  background: transparent;
}

.plan-presets > button,
.plan-presets > button:nth-child(2) {
  display: flex;
  min-width: 0;
  min-height: 242px;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
  padding: 26px;
  border: 1px solid #dedfd9;
  border-radius: 22px;
  background: #fffefa;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.plan-presets > button:hover,
.plan-presets > button:focus-visible {
  transform: translateY(-4px);
  border-color: #9ca098;
}

.plan-presets > button.is-active {
  border-color: #43c93d;
  background: #e0f0dc;
  box-shadow: none;
}

.plan-presets button > span {
  display: grid;
  gap: 8px;
}

.plan-presets button strong {
  font-size: 20px;
}

.plan-presets button small {
  color: #555851;
  font-size: 13px;
}

.plan-presets button em {
  margin-top: 8px;
  color: #8a8d85;
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-presets button > b {
  font-size: 46px;
  font-weight: 650;
  letter-spacing: -0.06em;
}

.pricing-builder-disclosure {
  display: block;
  margin-top: 22px;
  border: 0;
  background: transparent;
}

.pricing-builder-disclosure > summary {
  min-height: 88px;
  padding: 20px 26px;
  border: 1px solid #dedfd9;
  border-radius: 20px;
  background: #fffefa;
}

.pricing-builder-disclosure > summary strong {
  font-size: 17px;
}

.pricing-builder-disclosure > summary b {
  color: var(--volt-on, #111111);
}

.pricing-builder-disclosure.is-customizing > summary {
  border-radius: 20px 20px 0 0;
  border-bottom-color: transparent;
}

.pricing-builder-disclosure > summary {
  order: initial;
  margin: 0;
}

.pricing-builder-disclosure:not(.is-customizing) > .pricing-builder {
  display: none !important;
}

.pricing-builder-disclosure > .pricing-builder,
.pricing-builder-disclosure.is-customizing .pricing-builder {
  display: grid !important;
  order: initial;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #dedfd9;
  border-radius: 0 0 24px 24px;
  background: #fffefa;
}

.pricing-builder-controls {
  padding: 42px;
}

.pricing-builder-result,
.pricing-builder-disclosure.is-customizing .pricing-builder-result {
  min-height: 0;
  padding: 42px;
  border-left: 1px solid #dedfd9;
  background: #ebede7;
}

.pricing-builder-result > h3 {
  color: var(--volt-on, #111111);
}

.pricing-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.pricing-paths article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 8px 26px;
  padding: 26px;
  border: 1px solid #dedfd9;
  border-radius: 20px;
  background: #fffefa;
}

.pricing-paths article > span,
.pricing-paths article h3,
.pricing-paths article p {
  grid-column: 1;
}

.pricing-paths article > span {
  color: var(--volt-on, #111111);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-paths article h3 {
  margin: 5px 0 0;
  font-size: 20px;
}

.pricing-paths article p {
  margin: 0;
  color: #71746d;
  font-size: 12px;
}

.pricing-paths article a {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  color: #10110f;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.pricing-compare-link {
  display: block;
  margin: 38px auto 0;
  color: #565951;
  text-align: center;
}

.faq {
  padding: 108px 0 108px;
  background: #eceee9;
}

.faq-layout {
  display: grid;
  max-width: 1020px;
  grid-template-columns: 1fr;
  gap: 50px;
}

.faq-sticky {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 60px;
  padding: 0;
  background: transparent;
}

.faq-sticky .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -38px;
}

.faq-sticky h2 {
  margin: 0;
  font-size: clamp(58px, 7vw, 88px);
  line-height: 0.92;
}

.faq-sticky p {
  margin: 0 0 9px;
  color: #666961;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid #d0d2cb;
}

.faq-item {
  border: 0;
  border-bottom: 1px solid #d0d2cb;
  border-radius: 0;
  background: transparent;
}

.faq-q {
  min-height: 82px;
  padding: 20px 4px;
  font-size: 17px;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
}

.faq-a {
  max-width: 800px;
  padding: 0 52px 0 4px;
  color: #60635d;
}

.faq-item.open .faq-a {
  padding-bottom: 26px;
}

.conviction-cta {
  padding: 134px 0 126px;
  background: var(--redesign-green);
  color: #10110f;
}

.conviction-cta .final-cta-inner {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 64px;
  text-align: left;
}

.conviction-cta .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -36px;
  color: var(--volt-on, #111111);
}

.conviction-cta h2 {
  max-width: 900px;
  margin: 0;
  color: #10110f;
  font-size: clamp(64px, 8vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.conviction-cta h2 span {
  color: #10110f;
}

.conviction-cta .final-cta-inner > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  gap: 28px;
}

.conviction-cta p {
  max-width: 390px;
  margin: 0;
  color: var(--volt-on, #111111);
  font-size: 17px;
  line-height: 1.62;
}

.conviction-cta .btn {
  display: inline-flex;
  min-width: 170px;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 0;
  border-radius: 10px;
  background: var(--volt-on, #111111);
  color: #f7f7f2;
  box-shadow: none;
  text-decoration: none;
}

.conviction-footer,
.marketing-footer.conviction-footer {
  padding: 90px 0 30px;
  background: #f8f7f3;
  color: #10110f;
}

.conviction-footer .footer-brand,
.conviction-footer .footer-brand span,
.conviction-footer .footer-links strong,
.conviction-footer .footer-links a,
.conviction-footer .footer-bottom-legal a,
.conviction-footer .footer-social a {
  color: #10110f;
}

.conviction-footer .footer-brand-block p,
.conviction-footer .footer-copy,
.conviction-footer .footer-links a {
  color: #74776f;
}

.conviction-footer .footer-inner {
  display: grid;
  gap: 72px;
}

.conviction-footer .footer-copy {
  border-color: #dcddd7;
}

.footer-wordmark {
  display: block;
  margin-top: 24px;
  color: #10110f;
  font-size: clamp(120px, 24vw, 320px);
  font-weight: 760;
  line-height: 0.7;
  letter-spacing: -0.085em;
  text-decoration: none;
}

.back-to-top {
  background: var(--redesign-green);
  color: #10110f;
}

@media (max-width: 1050px) {
  .conviction-product-head,
  .creator-network-intro,
  .field-proof-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .conviction-product-head .eyebrow,
  .faq-sticky .eyebrow {
    margin-bottom: 0;
  }

  .product-chapter-discover,
  .product-chapter-scale {
    grid-template-columns: 1fr 1fr;
  }

  .product-chapter-copy {
    padding: 60px 46px;
  }

  .creator-network-stage {
    grid-template-columns: minmax(260px, 0.7fr) minmax(460px, 1.3fr);
  }

  .creator-network-notes {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }

  .creator-network-notes article {
    border-bottom: 0;
  }

  .creator-app-link {
    grid-column: 1 / -1;
  }

  .movement-manifesto-head {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 44px;
  }

  .movement-lines,
  .movement-manifesto-foot {
    margin-left: 194px;
  }
}

@media (max-width: 820px) {
  .conviction-product,
  .creator-network,
  .movement-manifesto,
  .field-proof,
  .pricing,
  .faq {
    padding-top: 110px;
    padding-bottom: 96px;
  }

  .conviction-product-head,
  .creator-network-intro {
    margin-bottom: 52px;
  }

  .product-chapter-discover,
  .product-chapter-scale {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .product-chapter-art-phone {
    min-height: 580px;
  }

  .product-chapter-volt {
    padding: 52px 24px 0;
  }

  .product-chapter-volt > header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-chapter-volt > header .chapter-number {
    margin-bottom: 0;
  }

  .product-desktop-frame figcaption {
    flex-wrap: wrap;
  }

  .product-desktop-frame figcaption span {
    flex-basis: 100%;
  }

  .product-loop-map {
    min-height: 540px;
  }

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

  .creator-index-panel {
    min-height: 360px;
  }

  .creator-phone-pair {
    min-height: 700px;
  }

  .creator-network-notes {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .creator-network-notes article {
    border-bottom: 1px solid #dcddd7;
  }

  .movement-manifesto-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .movement-lines,
  .movement-manifesto-foot {
    margin-left: 0;
  }

  .movement-lines {
    margin-top: 76px;
  }

  .movement-manifesto-foot {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 72px;
  }

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

  .pricing-builder-disclosure > .pricing-builder,
  .pricing-builder-disclosure.is-customizing .pricing-builder {
    grid-template-columns: 1fr;
  }

  .pricing-builder-result,
  .pricing-builder-disclosure.is-customizing .pricing-builder-result {
    border-top: 1px solid #dedfd9;
    border-left: 0;
  }

  .faq-sticky {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-sticky .eyebrow {
    margin-bottom: 0;
  }

  .conviction-cta .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .conviction-cta .eyebrow {
    margin-bottom: 0;
  }
}

@media (max-width: 560px) {
  .pricing {
    overflow: hidden;
  }

  .conviction-product-head h2,
  .creator-network-intro h2,
  .field-proof-head h2,
  .pricing-head h2,
  .faq-sticky h2 {
    font-size: clamp(49px, 14vw, 68px);
  }

  .product-chapter {
    border-radius: 24px;
  }

  .product-chapter-copy {
    padding: 46px 24px;
  }

  .product-chapter h3 {
    font-size: 44px;
  }

  .product-chapter-art-phone {
    min-height: 520px;
    padding-inline: 20px;
  }

  .product-chapter-art-phone img {
    width: min(360px, 92%);
    border-width: 7px;
    border-radius: 42px 42px 0 0;
  }

  .product-chapter-volt {
    padding: 46px 14px 0;
  }

  .product-chapter-volt > header {
    padding-inline: 10px;
  }

  .product-desktop-frame {
    border-radius: 18px 18px 0 0;
  }

  .product-desktop-frame > img {
    width: 900px;
    max-width: none;
    transform: translateX(-27%);
  }

  .product-desktop-frame figcaption strong:nth-of-type(3) {
    display: none;
  }

  .product-loop-map {
    min-height: 0;
    margin: 12px;
    padding: 28px 18px;
  }

  .loop-destinations {
    grid-template-columns: 1fr;
  }

  .loop-destinations > span {
    min-height: 0;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
  }

  .loop-destinations img {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .creator-phone-pair {
    min-height: 590px;
    gap: 8px;
    padding: 54px 10px 0;
  }

  .creator-network-stage {
    gap: 14px;
  }

  .creator-phone-pair figure {
    width: 52%;
  }

  .creator-phone-pair img {
    border-width: 6px;
    border-radius: 30px 30px 0 0;
  }

  .community-highlights-head {
    align-items: flex-end;
  }

  .community-highlights-head h3 {
    max-width: 300px;
    font-size: 48px;
  }

  .community-highlights-rail figure,
  .community-highlights-rail figure:nth-child(even),
  .community-highlights-rail figure:first-child {
    flex-basis: 82vw;
  }

  .movement-lines p {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    font-size: 39px;
  }

  .field-proof-track {
    width: auto;
    overflow-x: auto;
    padding: 0 20px 28px;
    scroll-snap-type: x mandatory;
    animation: none;
  }

  .field-proof-track article:nth-child(even) {
    margin-top: 0;
  }

  .field-proof-track article {
    width: 84vw;
    min-height: 390px;
    scroll-snap-align: start;
  }

  .field-proof-track article[aria-hidden="true"] {
    display: none;
  }

  .plan-presets {
    grid-template-columns: 1fr;
  }

  .pricing-head-calculator {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .pricing-head-calculator > div,
  .pricing-head .lead {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .pricing-head h2 .accent {
    white-space: normal;
  }

  .pricing-head-calculator .builder-billing {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .pricing-head-calculator .toggle-container {
    width: 100%;
    max-width: 100%;
  }

  .plan-presets > button,
  .plan-presets > button:nth-child(2) {
    min-height: 190px;
  }

  .pricing-builder-controls,
  .pricing-builder-result,
  .pricing-builder-disclosure.is-customizing .pricing-builder-result {
    padding: 30px 20px;
  }

  .pricing-paths {
    grid-template-columns: 1fr;
  }

  .pricing-paths article {
    grid-template-columns: 1fr;
  }

  .pricing-paths article a {
    grid-column: 1;
    grid-row: auto;
    margin-top: 15px;
  }

  .conviction-cta {
    padding: 100px 0 92px;
  }

  .conviction-cta h2 {
    font-size: clamp(58px, 17vw, 82px);
  }

  .footer-wordmark {
    font-size: 30vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .field-proof-track {
    animation: none;
  }

  .movement-lines p {
    transition: none;
  }
}
