:root {
  --bg: #0b0f14;
  --panel: #101723;
  --panel-2: #0f141d;
  --text: #e8eef7;
  --muted: rgba(232, 238, 247, 0.72);
  --faint: rgba(232, 238, 247, 0.5);
  --accent: #ffd84a;
  --accent-2: #7cf0c6;
  --hot: #ff4d6d;
  --danger: #ff6b6b;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-strong: 0 22px 70px rgba(0, 0, 0, 0.58);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(1200px 600px at 18% -8%, rgba(255, 216, 74, 0.18), transparent 62%),
    radial-gradient(900px 560px at 80% 16%, rgba(124, 240, 198, 0.12), transparent 58%),
    radial-gradient(900px 520px at 70% 120%, rgba(255, 77, 109, 0.14), transparent 55%),
    linear-gradient(180deg, #05070b 0%, #0b0f14 45%, #04060a 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.4;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(900px 520px at 50% 12%, rgba(255, 216, 74, 0.12), transparent 60%),
    radial-gradient(900px 560px at 30% 88%, rgba(124, 240, 198, 0.1), transparent 60%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 3px,
      transparent 7px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 2px,
      transparent 11px
    );
  mix-blend-mode: overlay;
  opacity: 0.18;
  animation: filmDrift 10s ease-in-out infinite;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(closest-side at 50% 50%, transparent 58%, rgba(0, 0, 0, 0.55) 100%);
  opacity: 0.9;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

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

a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  transform: translateY(-200%);
  background: var(--accent);
  color: #101216;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  z-index: 10;
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
}

.promo-banner {
  background: var(--accent);
  color: #0b0f14;
  text-align: center;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  z-index: 101;
  position: relative;
}

.promo-banner.hidden {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(7, 10, 15, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 238, 247, 0.08);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 216, 74, 1), rgba(124, 240, 198, 1));
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #0b0f14;
  letter-spacing: -0.04em;
  font-size: 20px;
}

.brand-name {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-tag {
  font-size: 13px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 14px;
  font-weight: 650;
  color: var(--muted);
}

.nav .nav-button {
  padding: 10px 12px;
  letter-spacing: 0.03em;
}

.nav .nav-button.ghost {
  background: rgba(232, 238, 247, 0.04);
  border-color: rgba(232, 238, 247, 0.12);
  box-shadow: none;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 76px 0 0;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40px 0 -10px;
  background: radial-gradient(800px 420px at 10% 10%, rgba(255, 216, 74, 0.22), transparent 62%),
    radial-gradient(760px 500px at 90% 20%, rgba(124, 240, 198, 0.16), transparent 58%),
    linear-gradient(120deg, rgba(255, 77, 109, 0.14), transparent 45%);
  opacity: 0.9;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -30px 0 -30px;
  background: conic-gradient(
    from 220deg at 50% 30%,
    rgba(255, 216, 74, 0.12),
    transparent 35%,
    rgba(124, 240, 198, 0.1),
    transparent 70%
  );
  opacity: 0.55;
  filter: blur(18px);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  justify-items: center;
  padding: 46px 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
}

.hero-copy .lede,
.hero-copy .fineprint {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy .cta-row {
  justify-content: center;
}

.kicker {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 216, 74, 0.98);
  border: 1px solid rgba(255, 216, 74, 0.22);
  background: rgba(255, 216, 74, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 10px;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.2vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-weight: 950;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.6), 0 0 28px rgba(255, 216, 74, 0.08);
}

h2 {
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.section-heading {
  margin: 0 0 8px;
}

.section-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  cursor: pointer;
}

.section-toggle:focus-visible {
  outline: none;
  border-radius: 10px;
  box-shadow: 0 0 0 4px rgba(255, 216, 74, 0.12);
}

.section-toggle::after {
  content: "›";
  font-size: 28px;
  line-height: 1;
  color: var(--muted);
  transform: rotate(0deg);
  transition: transform 160ms ease;
}

.section-toggle[aria-expanded="true"]::after {
  transform: rotate(90deg);
}

.collapsible-body[hidden] {
  display: none;
}

h3 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.accent {
  background: linear-gradient(90deg, rgba(255, 216, 74, 1), rgba(255, 77, 109, 0.92), rgba(124, 240, 198, 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  max-width: 60ch;
}

.hero-monologue {
  margin: 0 0 18px;
}

.hero-monologue .lede {
  margin: 0 0 14px;
  font-size: 19px;
}

.hero-build {
  margin: 0 auto 14px;
  max-width: 60ch;
}

.build-line {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  letter-spacing: -0.01em;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
  line-height: 1.5;
}

.pre-reveal {
  margin: 6px 0 10px;
  color: var(--muted);
  font-size: 18px;
  letter-spacing: 0.02em;
}

.reveal {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.05;
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.68), 0 0 34px rgba(255, 216, 74, 0.1);
}

.reveal-lead,
.reveal-team {
  display: block;
}

.reveal-team {
  margin-top: 6px;
  font-size: clamp(44px, 6vw, 78px);
  letter-spacing: 0.08em;
  line-height: 0.95;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3em;
}

.reveal-article {
  display: inline-block;
  margin-right: 0.22em;
}

.reveal-team .reveal-article {
  margin-right: 0;
}

.reveal-word {
  display: inline-block;
  transform-origin: 50% 60%;
  will-change: transform, opacity, filter;
  min-width: 0;
  text-align: center;
}

.reveal-word.type-hidden {
  opacity: 0;
  transform: scale(0.78);
  filter: blur(4px);
}

.reveal-word.is-punched {
  animation: punchIn 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.type-hidden {
  opacity: 0;
}

.is-typing {
  position: relative;
}

.is-typing::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 0.95em;
  margin-left: 4px;
  border-right: 2px solid rgba(255, 216, 74, 0.9);
  transform: translateY(0.08em);
  animation: caretBlink 0.9s steps(2, end) infinite;
}

.fineprint {
  display: none;
  margin: 14px 0 0;
  color: var(--faint);
  font-size: 14px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(232, 238, 247, 0.16);
  padding: 12px 16px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  background: rgba(232, 238, 247, 0.06);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transform: translateZ(0);
}

.button:hover {
  text-decoration: none;
  border-color: rgba(232, 238, 247, 0.3);
  background: rgba(232, 238, 247, 0.1);
  transform: translateY(-1px);
}

.button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.button.primary {
  background: linear-gradient(135deg, rgba(255, 216, 74, 1), rgba(255, 77, 109, 0.92), rgba(124, 240, 198, 1));
  border: none;
  color: #0b0f14;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 216, 74, 0.12) inset;
}

.button.primary:hover {
  filter: brightness(1.03);
}

.button.ghost {
  background: transparent;
}

.button.full {
  width: 100%;
}

.hero-card {
  display: none;
  background: linear-gradient(180deg, rgba(16, 23, 35, 0.86), rgba(12, 16, 24, 0.86));
  border: 1px solid rgba(255, 216, 74, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 216, 74, 0.12), transparent 35%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06), transparent 40%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 10px, transparent 14px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-card-header,
.hero-card-footer {
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero-card-footer {
  border-top: 1px solid rgba(232, 238, 247, 0.08);
}

.hero-card-footer.hero-card-actions {
  display: block;
}

.hero-card-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.hero-card-cta .button {
  width: 100%;
}

.hero-card-cta .button.ghost {
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  padding-left: 12px;
  padding-right: 12px;
  letter-spacing: 0.03em;
}

.hero-card-cta-primary {
  grid-column: 1 / -1;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 750;
  background: rgba(255, 216, 74, 0.12);
  color: rgba(255, 216, 74, 0.98);
  border: 1px solid rgba(255, 216, 74, 0.24);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pill.subtle {
  background: rgba(232, 238, 247, 0.06);
  color: var(--muted);
  border-color: rgba(232, 238, 247, 0.14);
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 6px 16px 16px;
  display: grid;
  gap: 10px;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(124, 240, 198, 0.14);
  border: 1px solid rgba(124, 240, 198, 0.25);
  color: rgba(124, 240, 198, 0.95);
  flex: 0 0 auto;
  margin-top: 1px;
  box-shadow: 0 0 0 1px rgba(124, 240, 198, 0.1) inset, 0 10px 26px rgba(0, 0, 0, 0.4);
}

.section {
  padding: 42px 0;
  scroll-margin-top: 92px;
}

.section-contrast {
  background: radial-gradient(800px 500px at 30% 0%, rgba(255, 216, 74, 0.12), transparent 60%),
    radial-gradient(900px 600px at 80% 40%, rgba(124, 240, 198, 0.1), transparent 55%),
    rgba(11, 15, 20, 0.4);
  border-top: 1px solid rgba(232, 238, 247, 0.08);
  border-bottom: 1px solid rgba(232, 238, 247, 0.08);
}

.section-intro {
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 70ch;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.applycall-media {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid rgba(232, 238, 247, 0.12);
  background: rgba(7, 10, 15, 0.35);
  margin-top: 12px;
}

audio.applycall-media {
  height: 44px;
}

video.applycall-media {
  height: auto;
}

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

.how-visual {
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid rgba(232, 238, 247, 0.12);
  background: radial-gradient(320px 200px at 30% 20%, rgba(255, 216, 74, 0.12), transparent 55%),
    radial-gradient(360px 240px at 80% 60%, rgba(124, 240, 198, 0.1), transparent 60%),
    rgba(7, 10, 15, 0.35);
  padding: 10px;
  margin: 0 0 14px;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}

.how-visual svg {
  width: min(220px, 100%);
  height: auto;
}

@media (max-width: 900px) {
  .how-steps {
    grid-template-columns: 1fr;
  }
}

.step {
  background: rgba(16, 23, 35, 0.55);
  border: 1px solid rgba(232, 238, 247, 0.1);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 216, 74, 0.12), transparent 30%, rgba(124, 240, 198, 0.08));
  opacity: 0.45;
  pointer-events: none;
}

.step-number {
  font-weight: 900;
  color: rgba(255, 216, 74, 0.9);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.6);
}

.step p {
  margin: 0;
  color: var(--muted);
}

.card {
  background: rgba(16, 23, 35, 0.72);
  border: 1px solid rgba(232, 238, 247, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form {
  padding: 18px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.span-2 {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0 0 14px;
}

.step-header {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 10px;
}

.pitch-card {
  margin-top: 16px;
}

#outcomeSection .status {
  margin-bottom: 12px;
}

.or-group {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: end;
}

.or-divider {
  align-self: center;
  justify-self: center;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--faint);
}

.field label {
  display: block;
  font-weight: 750;
  margin-bottom: 8px;
}

fieldset.field {
  border: 0;
  padding: 0;
  margin: 0;
  min-inline-size: 0;
}

.field legend {
  display: block;
  font-weight: 750;
  margin-bottom: 8px;
  padding: 0;
}

.choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.choice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232, 238, 247, 0.14);
  background: rgba(11, 15, 20, 0.45);
  cursor: pointer;
  user-select: none;
}

.choice:hover {
  border-color: rgba(232, 238, 247, 0.26);
  background: rgba(11, 15, 20, 0.55);
}

.choice input {
  margin-top: 3px;
  accent-color: var(--accent);
}

.choice input:disabled,
.choice input:disabled + .choice-body {
  cursor: not-allowed;
}

.choice input:disabled + .choice-body {
  opacity: 0.55;
}

.choice input:disabled + .choice-body .choice-meta {
  color: rgba(232, 238, 247, 0.35);
}

.choice-body {
  display: grid;
  gap: 2px;
}

.choice-title {
  font-weight: 750;
}

.choice-meta {
  color: var(--faint);
  font-size: 13px;
}

@media (max-width: 420px) {
  .choices {
    gap: 8px;
  }

  .choice {
    padding: 10px;
  }

  .choice-meta {
    font-size: 12px;
  }
}

.field input[type="text"],
.field input[type="email"],
.field input[type="url"],
.field input[type="date"],
.field input[type="file"] {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232, 238, 247, 0.16);
  background: rgba(11, 15, 20, 0.55);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
}

.field input[type="file"] {
  padding: 10px;
}

.field input:focus {
  border-color: rgba(255, 216, 74, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 216, 74, 0.12);
}

.hint {
  margin-top: 8px;
  font-size: 13px;
  color: var(--faint);
}

.form-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  flex-wrap: wrap;
}

.status {
  color: var(--muted);
  min-height: 20px;
}

.status.error {
  color: var(--danger);
}

.success {
  padding: 18px;
  margin-top: 16px;
}

.success p {
  color: var(--muted);
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background: rgba(255, 216, 74, 0.1);
  border: 1px solid rgba(255, 216, 74, 0.2);
  padding: 2px 8px;
  border-radius: 999px;
  color: rgba(255, 216, 74, 0.95);
}

.hidden {
  display: none;
}

.voice {
  padding: 14px;
  margin-top: 12px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}

.voice.is-locked {
  opacity: 0.6;
}

.voice-top {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.voice-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.voice-timer {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}

.voice-total {
  color: var(--faint);
}

.voice-playback {
  width: 100%;
  margin-top: 12px;
}

.voice-fallback {
  margin-top: 12px;
}

.pitch-confirm {
  margin-top: 12px;
  width: 100%;
}

.agent-transcript {
  margin-top: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232, 238, 247, 0.12);
  background: rgba(11, 15, 20, 0.45);
  padding: 10px 12px;
  max-height: 220px;
  overflow: auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.agent-transcript:empty {
  display: none;
}

.agent-transcript > div {
  padding: 6px 0;
  border-top: 1px solid rgba(232, 238, 247, 0.08);
}

.agent-transcript > div:first-child {
  border-top: 0;
}

.transcript-toggle {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .agent-transcript {
    max-height: calc(5 * 1.4em + 24px);
  }

  .agent-transcript.is-expanded {
    max-height: 220px;
  }

  .transcript-toggle {
    width: 100%;
    justify-content: center;
  }

  .transcript-toggle.hidden {
    display: none;
  }
}

.elevenlabs-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(232, 238, 247, 0.12);
  background: rgba(11, 15, 20, 0.55);
}

.elevenlabs-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-top: 1px solid rgba(232, 238, 247, 0.08);
  padding-top: 22px;
}

.footer-brand {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.footer-note {
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-weight: 650;
}

.footer-links a {
  color: var(--muted);
  text-decoration: underline;
}

.legal-frame {
  width: 100%;
  height: min(82vh, 900px);
  background: rgba(7, 10, 15, 0.35);
  border: 1px solid rgba(232, 238, 247, 0.12);
  border-radius: calc(var(--radius) - 6px);
}

.legal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

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

  .or-group {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
  }

  .button:hover {
    transform: none;
  }

  .is-typing::after {
    animation: none;
    border-right-color: transparent;
  }
}

@keyframes filmDrift {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.16;
  }
  50% {
    transform: translate3d(-1%, 0.6%, 0);
    opacity: 0.2;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.16;
  }
}

@keyframes caretBlink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes punchIn {
  0% {
    opacity: 0;
    transform: scale(0.78);
    filter: blur(4px);
  }
  60% {
    opacity: 1;
    transform: scale(1.08);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
