:root {
  --bg: #050711;
  --bg-soft: #080c1d;
  --surface: rgba(13, 18, 40, 0.82);
  --surface-strong: rgba(17, 23, 52, 0.94);
  --surface-card: rgba(255, 255, 255, 0.07);
  --line: rgba(164, 178, 255, 0.18);
  --line-strong: rgba(126, 148, 255, 0.42);
  --ink: #f7f9ff;
  --ink-soft: #c0c8e8;
  --ink-muted: #8994ba;
  --violet: #6967ff;
  --blue: #5bb7ff;
  --mint: #4fe0b2;
  --amber: #f3ba64;
  --rose: #ff7da5;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --radius-panel: 14px;
  --shell: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    linear-gradient(115deg, rgba(105, 103, 255, 0.14), transparent 28%),
    linear-gradient(245deg, rgba(79, 224, 178, 0.1), transparent 24%),
    linear-gradient(180deg, #050711 0%, #080b19 44%, #060815 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      transparent 0%,
      transparent 42%,
      rgba(91, 183, 255, 0.12) 49%,
      rgba(79, 224, 178, 0.08) 52%,
      transparent 60%,
      transparent 100%
    );
  opacity: 0.8;
  transform: translateX(-18%);
  animation: ambientSweep 18s ease-in-out infinite alternate;
}

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

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

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

p,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #11172f;
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(var(--shell), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 6.5rem 0;
}

.section-soft {
  border-block: 1px solid rgba(164, 178, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    linear-gradient(90deg, rgba(105, 103, 255, 0.05), rgba(79, 224, 178, 0.035));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(164, 178, 255, 0.1);
  background: rgba(5, 7, 17, 0.78);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.25rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.25rem;
  border: 1px solid rgba(164, 178, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(24, 31, 70, 0.95), rgba(10, 14, 34, 0.95));
  box-shadow: 0 14px 32px rgba(105, 103, 255, 0.24);
}

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

.brand-mark--footer {
  width: 2.4rem;
  height: 2.4rem;
}

.brand-copy {
  font-size: 1.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.platform-menu {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.platform-menu__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.9rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.platform-menu__item:hover {
  transform: translateY(-2px);
}

.platform-menu__item--available {
  border-color: rgba(91, 183, 255, 0.42);
  background: linear-gradient(135deg, rgba(105, 103, 255, 0.92), rgba(91, 183, 255, 0.82));
}

.platform-menu__item--soon {
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink-soft);
}

.platform-menu__item--soon:hover {
  border-color: rgba(79, 224, 178, 0.38);
}

.platform-menu__item span {
  display: grid;
  line-height: 1.05;
}

.platform-menu__item small {
  color: currentColor;
  font-size: 0.64rem;
  font-weight: 700;
}

.platform-menu__item strong {
  margin-top: 0.18rem;
  color: var(--ink);
  font-size: 0.78rem;
}

.platform-icon,
.button-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.button-icon {
  margin-right: 0.55rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.82rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background:
    linear-gradient(135deg, rgba(105, 103, 255, 0.96), rgba(91, 183, 255, 0.92));
  box-shadow: 0 18px 34px rgba(91, 183, 255, 0.2);
}

.button-secondary {
  border-color: rgba(164, 178, 255, 0.24);
  background: rgba(255, 255, 255, 0.055);
}

.button-small {
  min-height: 2.65rem;
  padding: 0.62rem 1rem;
  background:
    linear-gradient(135deg, rgba(105, 103, 255, 0.9), rgba(79, 224, 178, 0.72));
}

.button-full {
  width: 100%;
}

.hero {
  padding-top: 5rem;
  background:
    linear-gradient(115deg, rgba(105, 103, 255, 0.12), transparent 34%),
    linear-gradient(245deg, rgba(79, 224, 178, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(10, 14, 34, 0.28), rgba(5, 7, 17, 0));
}

.hero-shell,
.product-story,
.coach-shell,
.waitlist-shell,
.thanks-shell,
.support-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.thanks-copy h1,
.support-copy h1 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: 5.35rem;
  line-height: 0.96;
}

.section-heading h2 {
  max-width: 14ch;
  font-size: 3.45rem;
  line-height: 1.02;
}

.thanks-copy h1,
.support-copy h1 {
  font-size: 4.2rem;
  line-height: 1;
}

.hero-eyebrow,
.section-eyebrow,
.console-label {
  margin: 0 0 1rem;
  color: #aab5ff;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-body,
.section-body,
.hero-microcopy,
.insight-card p,
.story-bullets p,
.decision-row p,
.creator-card p,
.difference-card p,
.faq-item p,
.workflow-card p,
.waitlist-copy p,
.form-note,
.contact-line,
.footer-copy,
.footer-meta,
.signal-pill,
.metric-card span,
.signal-lane span,
.coach-message p,
.support-footer {
  color: var(--ink-soft);
}

.hero-body {
  margin: 1.45rem 0 0;
  max-width: 37rem;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1rem;
}

.hero-microcopy {
  margin: 0;
  max-width: 38rem;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.signal-pill {
  padding: 0.68rem 0.9rem;
  border: 1px solid rgba(164, 178, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 41rem;
  overflow: hidden;
  contain: paint;
  isolation: isolate;
}

.coach-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(164, 178, 255, 0.2);
  border-radius: var(--radius-panel);
  background:
    linear-gradient(180deg, rgba(21, 28, 64, 0.96), rgba(8, 12, 30, 0.96)),
    linear-gradient(135deg, rgba(105, 103, 255, 0.18), rgba(79, 224, 178, 0.1));
  box-shadow: var(--shadow);
}

.coach-console::before,
.signal-board::before,
.coach-thread::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0%, transparent 42%, rgba(255, 255, 255, 0.12) 50%, transparent 58%, transparent 100%);
  transform: translateX(-120%);
  animation: surfaceScan 7s ease-in-out infinite;
  pointer-events: none;
}

.coach-console--hero {
  width: min(28rem, 88%);
  margin: 5rem auto 0;
  animation: consoleFloat 6s ease-in-out infinite;
}

.coach-console__topline,
.coach-console__footer,
.signal-board__header,
.coach-thread__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(164, 178, 255, 0.13);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.coach-console__topline strong {
  color: var(--mint);
}

.live-dot {
  width: 0.65rem;
  height: 0.65rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(79, 224, 178, 0.42);
  animation: pulseDot 1.8s ease-out infinite;
}

.coach-console__body {
  padding: 1.45rem;
}

.coach-console__body h2 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.coach-console__body p:last-child {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
}

.coach-console__footer {
  border-top: 1px solid rgba(164, 178, 255, 0.13);
  border-bottom: 0;
}

.coach-console__footer span:last-child {
  color: var(--amber);
}

.orbit-stack {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit-signal {
  position: absolute;
  width: 10.5rem;
  padding: 0.9rem;
  border: 1px solid rgba(164, 178, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 10, 24, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  animation: orbitDrift 5.5s ease-in-out infinite;
}

.orbit-signal span,
.coach-cues span,
.metric-card span,
.creator-strip span,
.signal-lane p,
.coach-message span,
.support-list dt {
  display: block;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.orbit-signal strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--ink);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.35rem;
}

.orbit-signal--1 {
  top: 2rem;
  left: 0;
}

.orbit-signal--2 {
  top: 5.4rem;
  right: 0.4rem;
  animation-delay: -1.8s;
}

.orbit-signal--3 {
  right: 1.2rem;
  bottom: 5.2rem;
  animation-delay: -3s;
}

.orbit-signal--4 {
  left: 1.4rem;
  bottom: 3.5rem;
  animation-delay: -4.3s;
}

.orbit-signal--blue {
  border-color: rgba(91, 183, 255, 0.36);
}

.orbit-signal--green {
  border-color: rgba(79, 224, 178, 0.36);
}

.orbit-signal--amber {
  border-color: rgba(243, 186, 100, 0.36);
}

.orbit-signal--rose {
  border-color: rgba(255, 125, 165, 0.36);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.4rem;
}

.section-body {
  margin: 1rem 0 0;
  max-width: 42rem;
  font-size: 1.04rem;
}

.insight-grid,
.creator-grid,
.difference-grid,
.workflow-grid {
  display: grid;
  gap: 1.1rem;
}

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

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

.insight-card,
.creator-card,
.difference-card,
.workflow-card,
.waitlist-panel,
.faq-item,
.metric-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 24, 58, 0.82), rgba(9, 13, 32, 0.86));
  box-shadow: var(--shadow-soft);
}

.insight-card,
.creator-card,
.difference-card,
.workflow-card,
.metric-card {
  padding: 1.35rem;
}

.insight-card h3,
.creator-card h3,
.difference-card h3,
.workflow-card h3,
.faq-item summary {
  margin: 0 0 0.7rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.22rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.story-bullets,
.waitlist-benefits,
.coach-decision-list {
  display: grid;
  gap: 1rem;
}

.bullet-row,
.decision-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.bullet-row p,
.decision-row p {
  margin: 0;
}

.bullet-dot {
  width: 0.8rem;
  height: 0.8rem;
  flex: 0 0 auto;
  margin-top: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  box-shadow: 0 0 0 0.35rem rgba(79, 224, 178, 0.1);
}

.story-visual {
  position: relative;
}

.signal-board {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(164, 178, 255, 0.18);
  border-radius: var(--radius-panel);
  background:
    linear-gradient(135deg, rgba(91, 183, 255, 0.13), transparent 36%),
    linear-gradient(180deg, rgba(17, 23, 52, 0.94), rgba(8, 12, 28, 0.96));
  box-shadow: var(--shadow);
}

.signal-board__header {
  padding: 0.6rem 0.25rem 1rem;
  border-bottom: 0;
}

.signal-board__header strong {
  color: var(--mint);
}

.signal-board__lanes {
  display: grid;
  gap: 0.85rem;
}

.signal-lane {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(164, 178, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.signal-lane h3 {
  margin: 0.35rem 0 0.45rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.strategy-rail {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.8fr;
  gap: 0.7rem;
  margin-top: 1rem;
}

.strategy-rail span {
  height: 0.5rem;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(105, 103, 255, 0.95), rgba(79, 224, 178, 0.8));
  transform-origin: left center;
  animation: railFill 4.4s ease-in-out infinite;
}

.strategy-rail span:nth-child(2) {
  animation-delay: -1.4s;
}

.strategy-rail span:nth-child(3) {
  animation-delay: -2.7s;
}

.coach-section {
  position: relative;
  border-block: 1px solid rgba(164, 178, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(79, 224, 178, 0.08), transparent 30%),
    linear-gradient(270deg, rgba(105, 103, 255, 0.1), transparent 32%);
}

.decision-row span {
  flex: 0 0 auto;
  width: 2.4rem;
  color: var(--mint);
  font-weight: 900;
}

.coach-thread {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(164, 178, 255, 0.18);
  border-radius: var(--radius-panel);
  background: rgba(8, 12, 28, 0.88);
  box-shadow: var(--shadow);
}

.coach-thread__header {
  justify-content: flex-start;
}

.coach-messages {
  display: grid;
  gap: 0.95rem;
  padding: 1.1rem;
}

.coach-message {
  max-width: 88%;
  padding: 1rem;
  border: 1px solid rgba(164, 178, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.coach-message--creator {
  justify-self: end;
  border-color: rgba(91, 183, 255, 0.25);
}

.coach-message--coach {
  border-color: rgba(79, 224, 178, 0.25);
}

.coach-message p {
  margin: 0.3rem 0 0;
}

.coach-cues {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0 1.1rem 1.1rem;
}

.coach-cues div {
  padding: 0.85rem;
  border: 1px solid rgba(164, 178, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.coach-cues strong {
  display: block;
  margin-top: 0.2rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.creator-strip,
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.creator-strip {
  padding: 1rem;
  border: 1px solid rgba(164, 178, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.creator-strip div {
  padding: 1rem;
  border-left: 2px solid rgba(79, 224, 178, 0.58);
}

.creator-strip strong,
.metric-card strong {
  display: block;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: 0;
}

.creator-strip strong {
  font-size: 1.35rem;
}

.workflow-card {
  position: relative;
  overflow: hidden;
}

.workflow-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--mint), var(--amber));
}

.workflow-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(164, 178, 255, 0.16);
  border-radius: 50%;
  background: rgba(105, 103, 255, 0.16);
  color: #d9deff;
  font-weight: 900;
}

.metric-card strong {
  font-size: 2.55rem;
  color: var(--ink);
}

.metric-card span {
  display: block;
  margin-top: 0.35rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.25rem 1.35rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding-top: 0.85rem;
}

.waitlist-panel {
  padding: 1.55rem;
}

.thanks-section {
  min-height: calc(100vh - 8rem);
}

.thanks-name,
.thanks-body {
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.thanks-body {
  font-weight: 800;
}

.thanks-visual {
  display: flex;
  justify-content: center;
}

.thanks-card {
  position: relative;
  overflow: hidden;
  width: min(28rem, 100%);
  padding: 2rem;
  border: 1px solid rgba(164, 178, 255, 0.18);
  border-radius: var(--radius-panel);
  background:
    linear-gradient(135deg, rgba(79, 224, 178, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(18, 24, 58, 0.92), rgba(8, 12, 28, 0.96));
  box-shadow: var(--shadow);
}

.thanks-card p {
  margin: 1rem 0 0.35rem;
  color: var(--ink-muted);
  font-weight: 800;
  text-transform: uppercase;
}

.thanks-card strong {
  display: block;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}

.thanks-card__rail {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.thanks-card__rail span {
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--mint));
}

.message-stack {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.flash,
.form-error-summary {
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: var(--radius);
  font-size: 0.96rem;
}

.flash-success {
  background: rgba(79, 224, 178, 0.12);
  color: #c9ffe9;
}

.flash-error,
.form-error-summary {
  background: rgba(255, 125, 165, 0.12);
  color: #ffd3e0;
}

.waitlist-form {
  display: grid;
  gap: 1rem;
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #d6ddff;
  font-size: 0.92rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(164, 178, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.9rem 1rem;
  color: var(--ink);
}

.form-field textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 3rem;
  background-image:
    linear-gradient(45deg, transparent 50%, #b5c0ff 50%),
    linear-gradient(135deg, #b5c0ff 50%, transparent 50%);
  background-position:
    calc(100% - 1.2rem) calc(50% - 0.12rem),
    calc(100% - 0.82rem) calc(50% - 0.12rem);
  background-size: 0.42rem 0.42rem, 0.42rem 0.42rem;
  background-repeat: no-repeat;
}

.field-error {
  margin: 0;
  color: #ffb8ce;
  font-size: 0.9rem;
}

.contact-line {
  margin-top: 1.4rem;
}

.contact-line a,
.support-list a,
.support-footer a {
  color: #e4e8ff;
  text-decoration: underline;
  text-decoration-color: rgba(164, 178, 255, 0.45);
  text-underline-offset: 4px;
}

.site-footer {
  padding: 2.4rem 0;
  border-top: 1px solid rgba(164, 178, 255, 0.08);
  background: rgba(5, 7, 17, 0.9);
}

.footer-shell,
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  margin: 0;
  font-size: 1.1rem;
}

.footer-brand-wrap {
  display: grid;
  gap: 0.5rem;
}

.footer-copy {
  margin: 0.4rem 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--ink-soft);
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-meta {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(164, 178, 255, 0.08);
  font-size: 0.92rem;
}

.support-section {
  min-height: calc(100vh - 14rem);
}

.support-panel {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 24, 58, 0.88), rgba(9, 13, 32, 0.9));
  box-shadow: var(--shadow-soft);
}

.support-panel h2 {
  margin: 0 0 1.2rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.support-list {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.4rem;
}

.support-list div {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(164, 178, 255, 0.12);
}

.support-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.support-list dd {
  margin: 0.3rem 0 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(91, 183, 255, 0.85);
  outline-offset: 3px;
}

@supports (animation-timeline: view()) {
  .section-heading,
  .insight-card,
  .creator-card,
  .difference-card,
  .workflow-card,
  .metric-card,
  .signal-board,
  .coach-thread,
  .waitlist-panel {
    opacity: 0;
    transform: translateY(18px);
    animation: revealUp linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 28%;
  }
}

@keyframes ambientSweep {
  from {
    transform: translateX(-18%);
  }
  to {
    transform: translateX(18%);
  }
}

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

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

@keyframes surfaceScan {
  0%,
  55% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 224, 178, 0.42);
  }
  80%,
  100% {
    box-shadow: 0 0 0 0.75rem rgba(79, 224, 178, 0);
  }
}

@keyframes railFill {
  0%,
  100% {
    transform: scaleX(0.56);
    opacity: 0.7;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

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

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

  .hero-shell,
  .product-story,
  .coach-shell,
  .waitlist-shell,
  .thanks-shell,
  .support-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .section-heading h2,
  .thanks-copy h1,
  .support-copy h1 {
    max-width: 16ch;
  }

  .hero-visual {
    min-height: 36rem;
  }
}

@media (max-width: 920px) {
  .insight-grid,
  .creator-grid,
  .difference-grid,
  .workflow-grid,
  .creator-strip,
  .metric-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-shell,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4.75rem 0;
  }

  .hero {
    padding: 2.8rem 0 4rem;
  }

  .hero-shell {
    gap: 1.25rem;
  }

  .hero-copy {
    display: contents;
  }

  .hero-eyebrow {
    order: 1;
    margin-bottom: 0.35rem;
  }

  .hero-copy h1 {
    order: 2;
    max-width: none;
    font-size: 3.4rem;
  }

  .hero-body {
    order: 3;
    margin-top: 0.9rem;
    font-size: 1.03rem;
  }

  .section-heading h2 {
    max-width: none;
    font-size: 2.45rem;
  }

  .thanks-copy h1,
  .support-copy h1 {
    font-size: 3rem;
  }

  .hero-visual {
    order: 4;
    min-height: auto;
    margin-top: 0.35rem;
    overflow: visible;
    contain: none;
  }

  .coach-console--hero {
    width: 100%;
    margin: 0;
  }

  .orbit-stack {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
  }

  .orbit-signal {
    position: static;
    width: auto;
    animation: none;
  }

  .hero-actions {
    order: 5;
    margin: 1rem 0 0.35rem;
  }

  .hero-microcopy {
    order: 6;
    font-size: 0.96rem;
  }

  .signal-list {
    order: 7;
    gap: 0.6rem;
    margin-top: 0.9rem;
  }

  .signal-pill {
    flex: 1 1 11rem;
    padding: 0.65rem 0.75rem;
    text-align: center;
  }

  .coach-cues {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 1.25rem, var(--shell));
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .header-shell {
    gap: 0.65rem;
  }

  .brand-copy,
  .platform-menu__item span {
    display: none;
  }

  .platform-menu__item {
    min-width: 2.8rem;
    justify-content: center;
    padding: 0.55rem;
  }

  .hero-copy h1 {
    font-size: 2.75rem;
  }

  .section-heading h2 {
    font-size: 2.05rem;
  }

  .coach-console__body h2,
  .thanks-card strong {
    font-size: 1.55rem;
  }

  .coach-console__topline,
  .coach-console__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .coach-message {
    max-width: 100%;
  }
}

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