:root {
  --bg: #f6f0e8;
  --bg-accent: #efe5d8;
  --panel: rgba(255, 255, 255, 0.74);
  --panel-strong: rgba(255, 252, 247, 0.94);
  --ink: #1d1712;
  --muted: #6a5a4b;
  --line: rgba(29, 23, 18, 0.12);
  --brand: #c16d2d;
  --brand-strong: #8d4314;
  --brand-soft: rgba(193, 109, 45, 0.12);
  --shadow: 0 30px 70px rgba(36, 23, 12, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --heading-font: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body-font: "Segoe UI Variable Text", "Aptos", "Trebuchet MS", sans-serif;
}

body.variant-genz {
  --bg: #fbf1da;
  --bg-accent: #ffe7bf;
  --panel: rgba(255, 252, 240, 0.78);
  --panel-strong: rgba(255, 248, 228, 0.96);
  --ink: #211127;
  --muted: #695370;
  --line: rgba(33, 17, 39, 0.13);
  --brand: #ff5b35;
  --brand-strong: #b52f15;
  --brand-soft: rgba(255, 91, 53, 0.12);
  --shadow: 0 30px 80px rgba(111, 35, 12, 0.16);
}

body.variant-corporate {
  --bg: #edf2f7;
  --bg-accent: #dfe8f2;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: rgba(255, 255, 255, 0.97);
  --ink: #122033;
  --muted: #5b6b80;
  --line: rgba(18, 32, 51, 0.12);
  --brand: #1f5fa7;
  --brand-strong: #0e3a72;
  --brand-soft: rgba(31, 95, 167, 0.12);
  --shadow: 0 30px 70px rgba(19, 42, 77, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, var(--brand-soft), transparent 32%),
    radial-gradient(circle at right 15% top 10%, rgba(255, 255, 255, 0.65), transparent 25%),
    linear-gradient(180deg, var(--bg), var(--bg-accent));
  font-family: var(--body-font);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto auto 8% -8%;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: var(--brand-soft);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

body::after {
  inset: 10% -6% auto auto;
  width: 18rem;
  height: 18rem;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(16, 16, 16, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff6, transparent 35%),
    var(--brand);
  box-shadow: 0 0 0 7px var(--brand-soft);
}

.variant-nav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.variant-nav a,
.nav-cta,
.button {
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.variant-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.variant-nav a:hover,
.variant-nav a.is-active {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 34px;
  align-items: start;
  padding: 72px 0 36px;
}

.hero-copy {
  padding: 28px 0 0;
}

.eyebrow {
  margin: 0 0 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-strong);
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading-font);
  line-height: 0.98;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
}

.lede {
  max-width: 60ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink);
}

.button.wide {
  width: 100%;
}

.stat-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.stat-list li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.stat-list strong {
  display: block;
  font-size: 1.35rem;
  font-family: var(--heading-font);
}

.stat-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.hero-side {
  position: relative;
  padding-top: 112px;
}

.signal-card,
.brief-card,
.panel,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.signal-card {
  position: absolute;
  top: 0;
  right: 18px;
  width: min(360px, 100%);
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72)),
    var(--panel);
  z-index: 2;
}

.signal-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.8rem;
  font-weight: 700;
}

.signal-card h2 {
  margin-top: 14px;
  font-size: 2rem;
}

.signal-card p,
.signal-card li {
  color: var(--muted);
  line-height: 1.65;
}

.signal-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.brief-card {
  position: relative;
  z-index: 1;
  padding: 34px;
  background: var(--panel-strong);
}

.brief-head h2 {
  margin-top: 6px;
  font-size: 2.2rem;
}

.brief-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.brief-form label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
}

.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--brand) 45%, white);
  outline-offset: 1px;
}

.band {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.section {
  padding: 88px 0 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.section-head.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section-note {
  max-width: 32ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.panel,
.pricing-card {
  padding: 28px;
}

.panel-index {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-weight: 800;
}

.panel h3,
.pricing-card h3 {
  margin-top: 18px;
  font-size: 1.7rem;
}

.panel p,
.pricing-card strong,
.pricing-card li {
  color: var(--muted);
  line-height: 1.7;
}

.pricing-tier {
  margin: 0;
  color: var(--brand-strong);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card strong {
  display: block;
  margin-top: 12px;
}

.pricing-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.pricing-card.featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78)),
    var(--panel);
  transform: translateY(-10px);
}

@media (max-width: 1280px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-side {
    padding-top: 0;
  }

  .signal-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-bottom: 20px;
  }

  .brief-card {
    padding-top: 34px;
  }
}

@media (max-width: 980px) {
  .topbar,
  .section-head.split {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    border-radius: 26px;
  }

  .band,
  .grid.three,
  .stat-list {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
  }

  .brief-card,
  .signal-card,
  .panel,
  .pricing-card {
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 1rem, 1180px);
    padding-top: 12px;
  }

  .hero {
    gap: 22px;
    padding-top: 42px;
  }

  .hero-copy {
    padding-top: 10px;
  }

  .brief-card,
  .signal-card {
    padding: 22px;
  }

  .brief-head h2,
  .signal-card h2 {
    font-size: 1.8rem;
  }
}

body.apply-page {
  --apply-bg: #155fcf;
  --apply-panel: rgba(21, 57, 141, 0.26);
  --apply-panel-strong: rgba(18, 48, 116, 0.42);
  --apply-line: rgba(255, 255, 255, 0.2);
  --apply-line-strong: rgba(255, 255, 255, 0.28);
  --apply-ink: #f8fbff;
  --apply-muted: rgba(234, 244, 255, 0.78);
  --apply-accent: #67c8ff;
  --apply-green: #38d4a4;
  --apply-violet: #5c2df8;
  margin: 0;
  min-height: 100vh;
  color: var(--apply-ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.26), transparent 22%),
    radial-gradient(circle at right 12% top 16%, rgba(255, 255, 255, 0.14), transparent 18%),
    radial-gradient(circle at left 14% bottom 18%, rgba(92, 45, 248, 0.2), transparent 20%),
    linear-gradient(135deg, #492df5 0%, #1c7fe8 52%, #15b6a0 100%);
  font-family: "Aptos", "Segoe UI Variable Text", "Trebuchet MS", sans-serif;
  overflow-x: hidden;
}

body.apply-page::before,
body.apply-page::after {
  display: none;
}

.apply-page h1,
.apply-page h2 {
  margin: 0;
  font-family: "Baskerville Old Face", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.creator-shell {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: 14px 0 42px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 28px);
  padding: 26px;
  border: 1px solid var(--apply-line);
  border-radius: 36px;
  background:
    linear-gradient(160deg, rgba(72, 48, 226, 0.42), rgba(18, 122, 214, 0.28) 46%, rgba(18, 181, 160, 0.24) 100%),
    rgba(9, 19, 52, 0.34);
  box-shadow: 0 38px 100px rgba(20, 31, 91, 0.22);
  isolation: isolate;
  backdrop-filter: blur(18px);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-panel::before {
  top: -9rem;
  left: -7rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(92, 45, 248, 0.42), transparent 68%);
  filter: blur(8px);
  animation: orb-drift 18s ease-in-out infinite;
}

.hero-panel::after {
  right: -8rem;
  bottom: -10rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(56, 212, 164, 0.24), transparent 66%);
  filter: blur(8px);
  animation: orb-drift 20s ease-in-out infinite reverse;
}

.apply-topbar,
.hero-grid,
.ticker {
  position: relative;
  z-index: 1;
}

.apply-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.apply-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--apply-ink);
  text-decoration: none;
}

.brand-mark-wrap {
  width: 78px;
  height: 78px;
  padding: 3px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(92, 45, 248, 0.85), rgba(39, 140, 255, 0.8), rgba(51, 208, 167, 0.76));
  box-shadow: 0 20px 40px rgba(8, 15, 28, 0.44);
  flex: none;
}

.brand-mark-wrap img,
.logo-shield img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 1.14rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff 0%, #d7ebff 52%, #7ad3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  color: var(--apply-muted);
  font-size: 0.86rem;
}

.topbar-badge {
  margin: 0;
  padding: 10px 16px;
  border: 1px solid var(--apply-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--apply-accent);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  gap: 34px;
  align-items: center;
  padding-top: 40px;
}

.hero-copy {
  max-width: 48rem;
  animation: fade-up 780ms ease both;
}

.hero-kicker,
.form-kicker,
.note-label,
.tile-label {
  margin: 0;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-kicker {
  color: var(--apply-accent);
}

.hero-copy h1 {
  max-width: 9ch;
  margin-top: 18px;
  font-size: clamp(4.35rem, 6.9vw, 6.85rem);
}

.hero-lede {
  max-width: 60ch;
  margin: 30px 0 0;
  color: var(--apply-muted);
  font-size: 1.14rem;
  line-height: 1.82;
}

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

.hero-tags span {
  padding: 10px 14px;
  border: 1px solid var(--apply-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f6fbff;
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 260px);
  gap: 20px;
  margin-top: 30px;
  align-items: end;
}

.hero-note {
  padding: 22px 24px;
  border: 1px solid var(--apply-line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(16px);
}

.note-label {
  color: var(--apply-green);
}

.note-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.note-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #edf4ff;
  line-height: 1.55;
}

.note-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--apply-accent), var(--apply-green));
  box-shadow: 0 0 0 6px rgba(103, 200, 255, 0.08);
  flex: none;
}

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

.spotlight-tile,
.logo-shield {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--apply-line);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 38px rgba(18, 40, 103, 0.18);
}

.spotlight-tile {
  padding: 20px;
  display: grid;
  gap: 10px;
  backdrop-filter: blur(14px);
}

.tile-label {
  color: #d4b7ff;
}

.spotlight-tile strong {
  font-size: 1.12rem;
  font-weight: 700;
}

.logo-shield {
  aspect-ratio: 1 / 1;
  width: 100%;
  padding: 3px;
  background:
    linear-gradient(135deg, rgba(92, 45, 248, 0.96), rgba(39, 140, 255, 0.9), rgba(51, 208, 167, 0.86));
  animation: float-shield 8s ease-in-out infinite;
}

.form-stage {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.form-card {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--apply-line-strong);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(12, 39, 100, 0.3), rgba(8, 28, 79, 0.38)),
    var(--apply-panel-strong);
  box-shadow: 0 30px 90px rgba(12, 45, 126, 0.18);
  backdrop-filter: blur(18px);
  animation: fade-up 880ms ease 120ms both;
}

.form-shell-glow {
  position: absolute;
  inset: auto -4rem -5rem auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 200, 255, 0.22), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.form-head {
  position: relative;
  z-index: 1;
}

.form-kicker {
  color: var(--apply-accent);
}

.form-head h2 {
  margin-top: 16px;
  font-size: clamp(2.4rem, 4vw, 3.35rem);
}

.form-copy,
.form-footnote {
  color: var(--apply-muted);
  line-height: 1.72;
}

.form-copy {
  margin: 18px 0 0;
}

.form-alert {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--apply-line);
  font-weight: 700;
  line-height: 1.6;
}

.form-alert.is-success {
  background: rgba(52, 212, 164, 0.16);
  color: #edfff8;
}

.form-alert.is-error {
  background: rgba(255, 90, 120, 0.16);
  color: #fff0f3;
}

.creator-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.field {
  display: grid;
  gap: 9px;
}

.field span {
  color: #eef5ff;
  font-size: 0.98rem;
  font-weight: 800;
}

.field strong {
  color: #ff6e96;
}

.field input {
  width: 100%;
  padding: 17px 18px;
  border: 1px solid var(--apply-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.field input::placeholder {
  color: rgba(233, 243, 255, 0.6);
}

.field input:focus {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(103, 200, 255, 0.54);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 5px rgba(103, 200, 255, 0.1);
}

.submit-button {
  margin-top: 8px;
  padding: 18px 22px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(120deg, #5c2df8 0%, #278cff 44%, #33d0a7 100%);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 22px 38px rgba(52, 94, 255, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
  box-shadow: 0 28px 44px rgba(52, 94, 255, 0.3);
}

.submit-button:focus-visible {
  outline: 3px solid rgba(103, 200, 255, 0.24);
  outline-offset: 4px;
}

.form-footnote {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  font-size: 0.92rem;
}

.ticker {
  margin-top: 28px;
  padding: 16px 0 2px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-track {
  display: inline-flex;
  gap: 18px;
  min-width: max-content;
  color: rgba(239, 246, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  animation: ticker-roll 22s linear infinite;
}

.ticker-track span::after {
  content: "+";
  margin-left: 18px;
  color: rgba(103, 200, 255, 0.8);
}

.creator-content {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}

.content-intro,
.content-card,
.content-band {
  border: 1px solid var(--apply-line);
  border-radius: 32px;
  background:
    linear-gradient(160deg, rgba(68, 44, 219, 0.2), rgba(23, 122, 207, 0.16) 50%, rgba(20, 181, 160, 0.14) 100%),
    rgba(10, 31, 82, 0.28);
  box-shadow: 0 26px 60px rgba(17, 42, 108, 0.14);
  backdrop-filter: blur(16px);
}

.content-intro {
  padding: 34px 36px;
}

.section-kicker,
.card-kicker {
  margin: 0 0 14px;
  color: var(--apply-green);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
}

.content-intro h2,
.content-band h2 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.content-intro p:last-child {
  max-width: 70ch;
  margin: 20px 0 0;
  color: var(--apply-muted);
  font-size: 1.05rem;
  line-height: 1.84;
}

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

.content-card {
  padding: 28px;
}

.card-kicker {
  color: var(--apply-accent);
}

.content-card h3 {
  margin: 0;
  font-family: "Baskerville Old Face", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 2rem;
  line-height: 1.02;
}

.content-card p:last-child {
  margin: 16px 0 0;
  color: var(--apply-muted);
  line-height: 1.75;
}

.content-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  padding: 34px 36px;
  align-items: end;
}

.band-list {
  display: grid;
  gap: 16px;
}

.band-list p {
  margin: 0;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #f5fbff;
  font-size: 1.04rem;
  line-height: 1.72;
}

.band-list p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orb-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(24px, -18px, 0) scale(1.08);
  }
}

@keyframes float-shield {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1.5deg);
  }
}

@keyframes ticker-roll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .form-stage {
    justify-content: stretch;
  }

  .form-card {
    width: 100%;
  }

  .content-grid,
  .content-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .creator-shell {
    width: min(100% - 0.75rem, 1380px);
  }

  .hero-panel {
    min-height: auto;
    padding: 18px;
    border-radius: 28px;
  }

  .apply-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-mark-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .hero-grid {
    gap: 20px;
    padding-top: 22px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(3.4rem, 15.5vw, 4.8rem);
  }

  .hero-lede,
  .form-copy,
  .form-footnote,
  .note-list li,
  .content-intro p:last-child,
  .content-card p:last-child,
  .band-list p {
    font-size: 0.95rem;
  }

  .hero-detail-grid {
    display: none;
  }

  .form-card {
    padding: 22px;
    border-radius: 28px;
  }

  .form-head h2 {
    font-size: clamp(2.3rem, 11vw, 3rem);
  }

  .submit-button,
  .field input {
    padding: 16px 17px;
  }

  .ticker {
    margin-top: 22px;
  }

  .creator-content {
    gap: 18px;
    margin-top: 18px;
  }

  .content-intro,
  .content-card,
  .content-band {
    border-radius: 26px;
  }

  .content-intro,
  .content-band {
    padding: 24px 22px;
  }

  .content-card {
    padding: 22px;
  }

  .content-intro h2,
  .content-band h2 {
    max-width: 100%;
    font-size: clamp(2.45rem, 10vw, 3.1rem);
  }

  .content-card h3 {
    font-size: 1.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-panel::before,
  .hero-panel::after,
  .hero-copy,
  .form-card,
  .logo-shield,
  .ticker-track {
    animation: none;
  }

  .field input,
  .submit-button {
    transition: none;
  }
}
