@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/space-grotesk-latin.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/ibm-plex-mono-400-latin.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/ibm-plex-mono-500-latin.woff2") format("woff2");
}

:root {
  --bg: #101114;
  --panel: #17181c;
  --raised: #1e2025;
  --raised-hover: #23262c;
  --raised-active: #2a2d33;
  --stage: #000000;
  --border: #26282e;
  --border-hover: #383c45;
  --border-strong: #4b4f59;
  --text: #e8e6e1;
  --text-soft: #c7c5c0;
  --dim: #8b8e96;
  --accent: #ff5c38;
  --accent-hover: #ff6b49;
  --accent-text: #1a0c07;
  --blue: #5b8db8;
  --amber: #e8b93e;
  --red: #e5484d;
  --violet: #b07cd8;
  --zoom: #f5a83b;
  --motion: #8f7bff;
  --teal: #3fb5ae;
  --green: #4cc38a;
  --radius-word: 3px;
  --radius-item: 4px;
  --radius: 6px;
  --radius-pill: 999px;
  --shadow-pop: 0 8px 24px rgb(0 0 0 / 50%);
  --shadow-modal: 0 24px 64px rgb(0 0 0 / 55%);
  --font-body: "Space Grotesk", "Avenir Next", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

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

html {
  min-width: 320px;
  background: var(--bg);
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  border: 1px solid transparent;
  content: "";
  pointer-events: none;
}

::selection {
  background: rgb(255 92 56 / 32%);
  color: var(--text);
}

[hidden] {
  display: none !important;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

main {
  overflow: clip;
}

figure {
  margin: 0;
}

fieldset {
  min-width: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--accent-text);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-150%);
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow-container {
  width: min(860px, calc(100% - 48px));
  margin-inline: auto;
}

.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.wordmark span,
.screen-brand span {
  color: var(--accent);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 72px;
  border-bottom: 1px solid var(--border);
  background: rgb(16 17 20 / 96%);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--dim);
  font-size: 13px;
  font-weight: 500;
}

.desktop-nav a,
.footer-inner a,
.dashboard-nav a {
  transition: color 120ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.footer-inner a:hover,
.dashboard-nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  text-align: center;
  transition:
    background-color 120ms ease,
    color 120ms ease,
    border-color 120ms ease,
    transform 120ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.button-primary {
  background: var(--accent);
  color: var(--accent-text);
}

.button-primary:hover {
  background: var(--accent-hover);
}

.button-secondary {
  border-color: var(--border-hover);
  background: var(--raised);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--border-strong);
  background: var(--raised-hover);
}

.button-ghost {
  border-color: var(--border);
  color: var(--dim);
}

.button-ghost:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

.button-large {
  min-height: 52px;
  padding-inline: 24px;
  font-size: 14px;
}

.header-cta {
  min-height: 38px;
  justify-self: end;
}

.eyebrow,
.section-index {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgb(255 92 56 / 12%);
}

.hero {
  position: relative;
  padding: 164px 0 104px;
}

.hero::after {
  position: absolute;
  top: 72px;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 1px;
  background: var(--border);
  content: "";
  opacity: 0.45;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 64px;
  align-items: end;
}

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

.hero h1,
.launch-hero h1 {
  max-width: 980px;
  margin-bottom: 30px;
  font-size: clamp(52px, 6.8vw, 88px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 em,
.launch-hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-lead,
.launch-lead {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: clamp(18px, 2vw, 23px);
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.hero-control {
  margin-bottom: 22px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-hover);
  padding: 8px 0 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  transition:
    color 120ms ease,
    border-color 120ms ease;
}

.text-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-note {
  margin: 18px 0 0;
  color: var(--dim);
  font-size: 11px;
}

.hero-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-steps div {
  display: grid;
  gap: 5px;
}

.hero-steps span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
}

.hero-steps strong {
  font-size: 12px;
  font-weight: 500;
}

.hero-steps i {
  width: 24px;
  height: 1px;
  background: var(--border-hover);
}

.product-stage {
  margin-top: 88px;
  overflow: hidden;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-modal);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.stage-topbar {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-inline: 16px;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  letter-spacing: 0;
  text-transform: none;
}

.stage-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.screen-frame {
  position: relative;
  overflow: hidden;
  background: var(--stage);
}

.screen-frame img {
  width: 100%;
  height: auto;
}

.screen-brand {
  position: absolute;
  top: 1.1%;
  left: 0.85%;
  display: flex;
  width: 7.8%;
  height: 4.2%;
  align-items: center;
  background: var(--panel);
  color: var(--text);
  font-size: clamp(7px, 1.15vw, 16px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.project-example {
  display: grid;
  min-height: 92px;
  grid-template-columns: 1fr repeat(3, minmax(110px, auto));
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding: 18px 22px;
}

.example-label,
.metric {
  display: grid;
  gap: 5px;
}

.example-label span,
.metric span {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.example-label strong {
  font-size: 13px;
  font-weight: 500;
}

.metric strong {
  font-family: var(--font-mono);
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.metric-removed strong {
  color: var(--accent);
}

.metric-final strong {
  color: var(--green);
}

.section {
  border-bottom: 1px solid var(--border);
  padding: 112px 0;
}

.section-panel {
  background: var(--panel);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 58px;
}

.section-heading .section-index {
  margin-bottom: 20px;
}

.section-heading h2,
.split-copy h2,
.launch-copy h2,
.faq-heading h2,
.cta-band h2,
.dashboard-heading h1,
.auth-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-wrap: balance;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.feature-card {
  --feature: var(--accent);
  position: relative;
  min-height: 254px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  background: var(--panel);
  transition: background-color 120ms ease;
}

.feature-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--feature);
  content: "";
  opacity: 0.65;
}

.feature-card:hover {
  background: var(--raised);
}

.tone-blue {
  --feature: var(--blue);
}

.tone-red {
  --feature: var(--red);
}

.tone-green {
  --feature: var(--green);
}

.tone-amber {
  --feature: var(--amber);
}

.tone-violet {
  --feature: var(--motion);
}

.tone-teal {
  --feature: var(--teal);
}

.feature-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 68px;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 10px;
}

.feature-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px 8px;
  text-transform: uppercase;
}

.feature-label i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--feature);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.feature-card p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--dim);
  font-size: 13px;
  line-height: 1.55;
}

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

.step-card {
  min-height: 320px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--panel);
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 68px;
  border: 1px solid var(--border-hover);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
}

.step-action {
  margin-bottom: 9px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.step-card > p:last-child {
  max-width: 310px;
  margin-bottom: 0;
  color: var(--dim);
  font-size: 13px;
  line-height: 1.6;
}

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

.section-copy {
  margin-bottom: 32px;
  color: var(--dim);
  font-size: 16px;
  line-height: 1.65;
}

.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 13px;
  border-top: 1px solid var(--border);
  padding: 15px 0;
  color: #c4c2bd;
  font-size: 13px;
}

.check-list li:last-child {
  border-bottom: 1px solid var(--border);
}

.check-list span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.9;
}

.transcript-demo {
  overflow: hidden;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow-pop);
}

.demo-toolbar {
  display: flex;
  height: 44px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 0 18px;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.07em;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding: 14px 18px;
  color: var(--dim);
  font-size: 10px;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend i {
  width: 7px;
  height: 7px;
  border-radius: 2px;
}

.legend .blue {
  background: var(--blue);
}

.legend .amber {
  background: var(--amber);
}

.legend .red {
  background: var(--red);
}

.legend .violet {
  background: var(--violet);
}

.transcript-copy {
  min-height: 330px;
  margin-bottom: 0;
  padding: 32px 28px 38px;
  color: var(--text);
  font-size: 16px;
  line-height: 2.15;
}

.transcript-copy mark {
  border-radius: var(--radius-word);
  padding: 3px 5px;
  color: var(--text);
}

.transcript-copy .silence {
  border: 1px solid rgb(91 141 184 / 65%);
  background: rgb(91 141 184 / 24%);
  color: #9fc8e9;
  font-family: var(--font-mono);
  font-size: 10px;
  white-space: nowrap;
}

.transcript-copy .hesitation {
  background: rgb(232 185 62 / 22%);
  box-shadow: inset 0 -2px 0 var(--amber);
}

.transcript-copy .restart {
  background: rgb(229 72 77 / 22%);
  box-shadow: inset 0 -2px 0 var(--red);
}

.transcript-copy .selected {
  background: rgb(255 92 56 / 32%);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.transcript-copy .suspect {
  background: rgb(176 124 216 / 22%);
  box-shadow: inset 0 -2px 0 var(--violet);
}

.transcript-copy del {
  color: #5f6269;
  text-decoration-color: var(--dim);
}

.timeline {
  border-top: 1px solid var(--border);
  padding: 12px 18px 16px;
}

.timeline-ruler {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  color: #63666e;
  font-family: var(--font-mono);
  font-size: 8px;
}

.timeline-track {
  position: relative;
  height: 42px;
  overflow: hidden;
  background: var(--raised);
}

.timeline-track::before {
  position: absolute;
  inset: 10px 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 9px,
    #555963 10px,
    transparent 11px
  );
  content: "";
  opacity: 0.75;
}

.timeline-track i,
.timeline-track b {
  position: absolute;
  inset-block: 0;
}

.track-blue {
  left: 8%;
  width: 8%;
  background: rgb(91 141 184 / 42%);
}

.track-amber {
  left: 31%;
  width: 11%;
  background: rgb(232 185 62 / 40%);
}

.track-red {
  left: 55%;
  width: 8%;
  background: rgb(229 72 77 / 40%);
}

.track-violet {
  left: 80%;
  width: 10%;
  background: rgb(176 124 216 / 38%);
}

.timeline-track b {
  left: 48%;
  width: 2px;
  background: var(--accent);
}

.demo-footer {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding: 0 18px;
  font-size: 11px;
}

.demo-footer > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dim);
}

.demo-footer > span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.demo-footer strong {
  font-weight: 500;
}

.audio-grid {
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
}

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

.plain-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 13px;
}

.plain-list i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.audio-card {
  overflow: hidden;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow-pop);
}

.audio-card-header {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 12px 18px;
}

.audio-card-header > div {
  display: grid;
  gap: 3px;
}

.audio-card-header span,
.wave-label span {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.audio-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 5px 8px;
  color: var(--green) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.audio-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.wave-row {
  display: grid;
  min-height: 128px;
  grid-template-columns: 125px 1fr;
  align-items: center;
  gap: 22px;
  padding: 22px 20px;
}

.wave-label {
  display: grid;
  gap: 5px;
}

.wave-label strong {
  font-size: 13px;
  font-weight: 500;
}

.waveform {
  display: flex;
  height: 64px;
  align-items: center;
  gap: 4px;
}

.waveform i {
  min-width: 2px;
  flex: 1;
  border-radius: 1px;
  background: var(--dim);
}

.wave-row.before .waveform {
  opacity: 0.46;
}

.wave-row.after {
  background: var(--raised);
}

.wave-row.after .waveform i {
  background: var(--green);
}

.audio-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-inline: 20px;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.audio-divider i {
  height: 1px;
  flex: 1;
  background: var(--border);
}

.audio-caption {
  margin: 0;
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  color: var(--dim);
  font-size: 10px;
}

.effects-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(310px, 0.64fr);
  align-items: center;
  gap: 72px;
}

.effects-visual {
  overflow: hidden;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-pop);
}

.visual-label {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 0 15px;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visual-label .mono {
  color: var(--zoom);
  letter-spacing: 0;
}

.effect-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.effect-tags span {
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-pill);
  padding: 7px 10px;
  color: #b9b7b2;
  font-size: 11px;
}

.effect-tags span:nth-child(1) {
  border-color: rgb(245 168 59 / 52%);
}

.effect-tags span:nth-child(2) {
  border-color: rgb(143 123 255 / 52%);
}

.effect-tags span:nth-child(3) {
  border-color: rgb(76 195 138 / 52%);
}

.control-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  color: var(--dim);
  font-size: 12px;
}

.control-line i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.cta-section {
  padding: 88px 0;
  background: var(--panel);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  border: 1px solid var(--border-hover);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 42px;
  background:
    linear-gradient(105deg, rgb(255 92 56 / 9%), transparent 60%),
    var(--bg);
  box-shadow: var(--shadow-pop);
}

.cta-band .section-index {
  margin-bottom: 14px;
  color: var(--accent);
}

.cta-band h2 {
  max-width: 740px;
  margin-bottom: 12px;
}

.cta-band p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--dim);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--panel);
}

.footer-inner {
  display: grid;
  gap: 20px;
}

.footer-primary {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer-primary p {
  margin-bottom: 0;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--dim);
  font-size: 11px;
}

.footer-links a[aria-current="page"] {
  color: var(--text);
}

.footer-primary > a:last-child {
  justify-self: end;
  color: var(--dim);
  font-size: 11px;
  overflow-wrap: anywhere;
}

/* Páginas institucionais e legais */

.legal-main {
  overflow: visible;
}

.legal-hero {
  padding: 164px 0 76px;
  border-bottom: 1px solid var(--border);
}

.legal-hero-compact {
  padding-bottom: 68px;
}

.legal-hero .section-index,
.contact-section .section-index,
.contact-guidance .section-index {
  margin-bottom: 18px;
  color: var(--accent);
}

.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(54px, 8vw, 88px);
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.legal-lead {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--text-soft);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
}

.legal-updated,
.legal-note {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.7;
}

.legal-hero .legal-note {
  margin-bottom: 28px;
}

.legal-hero .button {
  margin-top: 18px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 820px);
  justify-content: space-between;
  gap: 72px;
  padding-top: 72px;
  padding-bottom: 112px;
}

.legal-toc {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 20px 0 20px 18px;
  border-left: 1px solid var(--border-strong);
}

.legal-toc > p {
  margin-bottom: 14px;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-toc ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: legal-toc;
}

.legal-toc li {
  counter-increment: legal-toc;
}

.legal-toc a {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 4px;
  color: var(--dim);
  font-size: 12px;
  line-height: 1.4;
}

.legal-toc a::before {
  color: var(--dim);
  content: counter(legal-toc, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1.8;
}

.legal-toc a:hover {
  color: var(--text);
}

.legal-article {
  min-width: 0;
}

.legal-article section {
  padding-bottom: 54px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 54px;
  scroll-margin-top: 96px;
}

.legal-article section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}

.legal-article h2,
.contact-section h2,
.contact-guidance h2 {
  margin-bottom: 24px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.legal-article h3 {
  margin-bottom: 10px;
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.legal-article p,
.legal-article li {
  color: var(--text-soft);
  line-height: 1.75;
}

.legal-article p {
  margin-bottom: 20px;
}

.legal-article ul,
.legal-article ol {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 24px;
}

.legal-article a,
.contact-guidance a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgb(255 92 56 / 55%);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-article a:hover,
.contact-guidance a:hover {
  text-decoration-color: var(--accent);
}

.legal-article code {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2px 5px;
  background: var(--raised);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.85em;
}

.legal-callout {
  padding: 24px 26px;
  border: 1px solid var(--border-hover);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  margin-bottom: 24px;
  background: var(--panel);
}

.legal-callout-warning {
  border-left-color: var(--amber);
  background:
    linear-gradient(110deg, rgb(232 185 62 / 7%), transparent 55%),
    var(--panel);
}

.legal-callout p:last-child,
.legal-card p:last-child,
.support-contact-band p:last-child {
  margin-bottom: 0;
}

.legal-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.legal-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.legal-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.legal-table-wrap table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  background: var(--panel);
}

.legal-table-wrap caption {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}

.legal-table-wrap th,
.legal-table-wrap td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  text-align: left;
}

.legal-table-wrap th {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-table-wrap td {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.legal-table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.preference-panel,
.support-contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 26px;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  background: var(--panel);
}

.preference-panel h3,
.support-contact-band h3 {
  margin-bottom: 6px;
}

.preference-panel p,
.support-contact-band p {
  margin-bottom: 0;
  color: var(--dim);
  font-size: 13px;
}

.preference-panel .button {
  min-width: 164px;
  flex: 0 0 auto;
}

.legal-article details {
  border-top: 1px solid var(--border);
}

.legal-article details:last-of-type {
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.legal-article summary {
  position: relative;
  padding: 18px 42px 18px 0;
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.legal-article summary::-webkit-details-marker {
  display: none;
}

.legal-article summary::after {
  position: absolute;
  top: 17px;
  right: 4px;
  color: var(--accent);
  content: "+";
  font-family: var(--font-mono);
  font-size: 20px;
}

.legal-article details[open] summary::after {
  content: "−";
}

.legal-article details > p {
  padding: 0 34px 18px 0;
}

.support-contact-band {
  margin-top: 30px;
}

.support-contact-band .button {
  flex: 0 0 auto;
  text-decoration: none;
}

.contact-hero {
  padding-bottom: 84px;
}

.contact-email-display {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: clamp(15px, 2.3vw, 22px);
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.contact-section {
  padding-top: 78px;
  padding-bottom: 82px;
}

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

.contact-card {
  display: flex;
  min-height: 242px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  transition:
    background-color 120ms ease,
    border-color 120ms ease,
    transform 120ms ease;
}

.contact-card:hover {
  border-color: var(--border-hover);
  background: var(--raised);
  transform: translateY(-2px);
}

.contact-card > span {
  margin-bottom: 34px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.contact-card p {
  margin-bottom: 22px;
  color: var(--dim);
}

.contact-card strong {
  margin-top: auto;
  color: var(--text-soft);
  font-size: 12px;
}

.contact-guidance {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 72px;
  padding-top: 72px;
  padding-bottom: 104px;
  border-top: 1px solid var(--border);
}

.contact-guidance p {
  color: var(--text-soft);
  line-height: 1.75;
}

.contact-guidance p:last-child {
  margin-bottom: 0;
}

/* Pré-lançamento */

.launch-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 92px;
  border-bottom: 1px solid var(--border);
}

.launch-hero::before {
  position: absolute;
  inset: 72px 0 0;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 49.9%, rgb(38 40 46 / 65%) 50%, transparent 50.1%),
    radial-gradient(circle at 78% 28%, rgb(255 92 56 / 10%), transparent 26%);
  content: "";
}

.launch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: 72px;
}

.launch-copy h1 {
  font-size: clamp(52px, 6.6vw, 84px);
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.offer-panel {
  border: 1px solid rgb(255 92 56 / 48%);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(135deg, rgb(255 92 56 / 14%), transparent 58%),
    var(--panel);
  box-shadow: var(--shadow-modal);
}

.offer-kicker {
  margin-bottom: 20px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-value {
  margin-bottom: 8px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: clamp(56px, 7vw, 82px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.offer-panel h2 {
  margin-bottom: 14px;
  font-size: 24px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.offer-panel > p {
  margin-bottom: 22px;
  color: var(--dim);
  font-size: 13px;
  line-height: 1.55;
}

.offer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  border-top: 1px solid rgb(255 92 56 / 22%);
  padding: 18px 0 0;
  list-style: none;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 12px;
}

.offer-list li::before {
  display: grid;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-text);
  content: "✓";
  font-family: var(--font-mono);
  font-size: 10px;
}

.offer-panel .button {
  width: 100%;
  margin-top: 22px;
}

.video-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 408px));
  justify-content: center;
  gap: 48px;
}

.video-comparison-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px;
  background: var(--panel);
  box-shadow: var(--shadow-pop);
}

.video-comparison-card--after {
  border-color: rgb(255 92 56 / 52%);
}

.video-card-header {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.video-card-header > div {
  display: grid;
  gap: 3px;
}

.video-card-header > div span {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-card-header strong {
  font-size: 14px;
  font-weight: 500;
}

.video-card-badge {
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-pill);
  padding: 5px 8px;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-card-badge--accent {
  border-color: rgb(255 92 56 / 52%);
  color: var(--accent);
}

.vertical-video-slot {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 9 / 16;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  background: var(--stage);
}

.vertical-video-slot--after {
  border-color: rgb(255 92 56 / 48%);
  background: #0b0c0e;
}

.vertical-video-slot video {
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: cover;
}

.video-comparison-card > p {
  min-height: 40px;
  margin: 14px 3px 3px;
  color: var(--dim);
  font-size: 12px;
  line-height: 1.55;
}

.waitlist-section {
  padding: 86px 0;
  background: var(--panel);
}

.waitlist-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: 64px;
  border: 1px solid var(--border-hover);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 54px;
  background: var(--bg);
  box-shadow: var(--shadow-pop);
}

.waitlist-copy {
  position: sticky;
  top: 110px;
}

.waitlist-copy .section-index {
  margin-bottom: 20px;
  color: var(--accent);
}

.waitlist-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.1vw, 50px);
}

.waitlist-copy > p {
  max-width: 500px;
  margin-bottom: 28px;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.6;
}

.waitlist-copy strong {
  color: var(--text);
}

.waitlist-benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  border: 1px solid rgb(255 92 56 / 42%);
  border-radius: var(--radius);
  padding: 16px;
  background:
    linear-gradient(110deg, rgb(255 92 56 / 10%), transparent 74%),
    var(--panel);
}

.waitlist-benefit > span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.waitlist-benefit div {
  display: grid;
  gap: 2px;
  border-left: 1px solid rgb(255 92 56 / 28%);
  padding-left: 16px;
}

.waitlist-benefit strong {
  font-size: 13px;
}

.waitlist-benefit small {
  color: var(--dim);
  font-size: 10px;
}

.waitlist-form {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--panel);
}

.form-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.form-heading > span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-heading > strong {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

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

.field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > label,
.field legend,
.other-platform-field label {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field-hint {
  margin: -2px 0 2px;
  color: #6f727a;
  font-size: 10px;
}

/* ---------- alinhamento das linhas do formulário ----------
   Os inputs já alinhavam (medidos: todos 50px, a 22px do topo do campo). O que
   ficava torto era a ALTURA do campo: 72px sem dica, 95px com dica de uma linha
   e 110px quando a dica quebrava em duas. Numa linha de duas colunas isso deixa
   um lado até 38px mais alto que o outro, e a linha seguinte começa desalinhada.

   A correção dá a todo campo de entrada a mesma altura mínima — 72 do conteúdo
   + 8 do gap + 13 da faixa da dica — e trava a dica em uma linha. Campos sem
   dica passam a ocupar a mesma caixa, com a faixa vazia.

   `:has()` evita ter de marcar cada campo com uma classe no HTML só para o CSS
   saber quais têm input de texto. */
.form-grid > .field:has(> .text-input),
.form-grid > .field:has(> .select-input) {
  align-content: start;
  min-height: 93px;
}

.form-grid > .field > .field-hint {
  margin: 0;
  min-height: 13px;
  line-height: 1.3;
}

.text-input,
.select-input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 0 15px;
  background: var(--raised);
  color: var(--text);
  font-size: 14px;
  transition:
    background-color 120ms ease,
    border-color 120ms ease;
}

.text-input:hover,
.select-input:hover {
  border-color: var(--border-strong);
}

.text-input:focus,
.select-input:focus {
  border-color: var(--accent);
  background: var(--raised-hover);
  outline: none;
}

.text-input::placeholder {
  color: #666972;
}

.text-input:disabled,
.select-input:disabled,
.platform-option:has(input:disabled) {
  cursor: not-allowed;
  opacity: 0.62;
}

.platform-fieldset {
  margin: 2px 0 0;
  border: 0;
  padding: 0;
}

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

.platform-option {
  position: relative;
  cursor: pointer;
}

.platform-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.platform-option span {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 0 11px;
  background: var(--raised);
  color: #b9b7b2;
  font-size: 11px;
  font-weight: 500;
  transition:
    background-color 120ms ease,
    border-color 120ms ease,
    color 120ms ease;
}

.platform-option span::before {
  display: grid;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  place-items: center;
  border: 1px solid #555963;
  border-radius: 3px;
  content: "";
  color: var(--accent-text);
  font-family: var(--font-mono);
  font-size: 9px;
}

.platform-option:hover span {
  border-color: #555963;
  background: var(--raised-hover);
}

.platform-option input:checked + span {
  border-color: rgb(255 92 56 / 72%);
  background: rgb(255 92 56 / 9%);
  color: var(--text);
}

.platform-option input:checked + span::before {
  border-color: var(--accent);
  background: var(--accent);
  content: "✓";
}

.platform-option input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.other-platform-field {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.field-error,
.platform-error {
  min-height: 14px;
  margin: 0;
  color: #ff8d91;
  font-size: 10px;
}

.form-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  color: var(--dim);
  font-size: 11px;
}

.form-benefit strong {
  border: 1px solid rgb(255 92 56 / 48%);
  border-radius: var(--radius-pill);
  padding: 5px 8px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
}

.waitlist-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 14px;
  font-size: 14px;
}

.form-status {
  min-height: 18px;
  margin: 12px 0 0;
  font-size: 11px;
}

.form-status[data-state="error"] {
  color: #ff8d91;
}

.form-status[data-state="success"] {
  color: var(--green);
}

.form-status[data-state="loading"] {
  color: var(--dim);
}

.form-note {
  margin-bottom: 0;
  color: #6f727a;
  font-size: 10px;
}

.consent-field {
  padding-top: 2px;
}

.consent-field > label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-soft);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.consent-field input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.honeypot {
  position: absolute;
  top: 0;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.64fr) minmax(0, 1.36fr);
  align-items: start;
  gap: 92px;
}

.faq-heading {
  position: sticky;
  top: 110px;
}

.faq-heading > p:last-child {
  margin-bottom: 0;
  color: var(--dim);
  font-size: 13px;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  display: grid;
  min-height: 76px;
  grid-template-columns: 32px 1fr 20px;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  list-style: none;
}

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

.faq-list summary > span {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 9px;
}

.faq-list summary i {
  position: relative;
  width: 14px;
  height: 14px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 6px;
  left: 2px;
  width: 10px;
  height: 1px;
  background: var(--dim);
  content: "";
  transition: transform 120ms ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary {
  color: var(--accent);
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-list details > p {
  max-width: 680px;
  margin: -4px 40px 26px 44px;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.65;
}

/* Painel de controle */

.dashboard-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 8%, rgb(255 92 56 / 7%), transparent 23%),
    var(--bg);
}

.dashboard-topbar {
  height: 64px;
  border-bottom: 1px solid var(--border);
  background: rgb(16 17 20 / 96%);
}

.dashboard-topbar-inner {
  display: flex;
  width: min(1440px, calc(100% - 40px));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.dashboard-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--dim);
  font-size: 12px;
}

.auth-view {
  display: grid;
  min-height: calc(100vh - 64px);
  place-items: center;
  padding: 56px 24px;
}

.auth-shell {
  display: grid;
  width: min(980px, 100%);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  overflow: hidden;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-modal);
}

.auth-copy {
  min-height: 550px;
  border-right: 1px solid var(--border);
  padding: 56px;
  background:
    linear-gradient(145deg, rgb(255 92 56 / 11%), transparent 50%),
    var(--bg);
}

.auth-copy h1 {
  margin-top: 110px;
  font-size: clamp(38px, 5vw, 58px);
}

.auth-copy > p:last-of-type {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--dim);
  line-height: 1.65;
}

.auth-security {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 32px;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.auth-security i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.auth-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.auth-panel h2 {
  margin-bottom: 8px;
  font-size: 26px;
  letter-spacing: -0.035em;
}

.auth-panel > p {
  margin-bottom: 28px;
  color: var(--dim);
  font-size: 13px;
}

.auth-form {
  display: grid;
  gap: 18px;
}

.auth-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
}

.auth-note {
  margin: 22px 0 0;
  color: #6f727a;
  font-size: 10px;
  line-height: 1.5;
}

.dashboard-app {
  min-height: calc(100vh - 64px);
  padding: 42px 0 72px;
}

.dashboard-container {
  width: min(1440px, calc(100% - 40px));
  margin-inline: auto;
}

.dashboard-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.dashboard-heading .section-index {
  margin-bottom: 12px;
}

.dashboard-heading h1 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 50px);
}

.dashboard-heading-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-updated {
  margin: 0 0 2px;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 9px;
}

.state-card {
  display: grid;
  min-height: 320px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 24px;
  background: var(--panel);
  text-align: center;
}

.state-card-inner {
  display: grid;
  max-width: 430px;
  justify-items: center;
  gap: 12px;
}

.state-card h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.state-card p {
  margin: 0;
  color: var(--dim);
  font-size: 13px;
}

.state-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 6px;
  border: 1px solid var(--border-hover);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 14px;
}

.loading-bars {
  display: flex;
  height: 38px;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.loading-bars i {
  width: 3px;
  border-radius: 2px;
  background: var(--accent);
  animation: loading-wave 900ms ease-in-out infinite alternate;
}

.loading-bars i:nth-child(1) {
  height: 20%;
}

.loading-bars i:nth-child(2) {
  height: 65%;
  animation-delay: 120ms;
}

.loading-bars i:nth-child(3) {
  height: 100%;
  animation-delay: 240ms;
}

.loading-bars i:nth-child(4) {
  height: 52%;
  animation-delay: 360ms;
}

@keyframes loading-wave {
  to {
    height: 25%;
    opacity: 0.55;
  }
}

.dashboard-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--panel);
}

.filter-group {
  display: flex;
  align-items: end;
  gap: 10px;
}

.filter-group .field {
  min-width: 170px;
}

.toolbar-summary {
  margin: 0 4px 5px 0;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 9px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.metric-card {
  position: relative;
  min-height: 155px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--panel);
}

.metric-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: var(--metric-color, var(--accent));
  content: "";
  opacity: 0.75;
}

.metric-card[data-tone="blue"] {
  --metric-color: var(--blue);
}

.metric-card[data-tone="green"] {
  --metric-color: var(--green);
}

.metric-card[data-tone="violet"] {
  --metric-color: var(--motion);
}

.metric-card[data-tone="amber"] {
  --metric-color: var(--amber);
}

.metric-card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.metric-card-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--metric-color, var(--accent));
}

.metric-card-value {
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: clamp(28px, 3vw, 38px);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.metric-card-context {
  margin: 0;
  color: var(--dim);
  font-size: 10px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: 12px;
  margin-bottom: 12px;
}

.chart-card,
.table-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.card-header {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--border);
  padding: 13px 18px;
}

.card-header > div {
  display: grid;
  gap: 3px;
}

.card-header span {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-header h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--dim);
  font-size: 9px;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chart-legend i {
  width: 7px;
  height: 7px;
  border-radius: 2px;
}

.chart-legend .total {
  background: var(--accent);
}

.chart-legend .unique {
  background: var(--blue);
}

.line-chart {
  width: 100%;
  height: auto;
  min-height: 300px;
  padding: 18px;
}

.chart-grid-line {
  stroke: var(--border);
  stroke-width: 1;
}

.chart-axis-label {
  fill: var(--dim);
  font-family: var(--font-mono);
  font-size: 9px;
}

.chart-area {
  fill: url("#accessArea");
}

.chart-line-total {
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.chart-line-unique {
  fill: none;
  stroke: var(--blue);
  stroke-dasharray: 7 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.trend-svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 300px;
  padding: 18px;
}

.chart-line {
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.chart-line-primary {
  stroke: var(--accent);
}

.chart-line-secondary {
  stroke: var(--blue);
  stroke-dasharray: 7 6;
  stroke-width: 2;
}

.chart-legend .legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.chart-legend .legend-item::before {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  content: "";
}

.chart-legend .legend-secondary::before {
  background: var(--blue);
}

#trend-chart > .chart-legend {
  padding: 0 18px 18px;
}

.chart-empty {
  margin: 0;
  padding: 44px 20px;
  color: var(--dim);
  font-size: 12px;
  text-align: center;
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.75fr) minmax(160px, 1.6fr) 56px;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.bar-row:last-child {
  border-bottom: 0;
}

.bar-row .bar-label {
  display: block;
  color: var(--dim);
  font-size: 10px;
  text-align: left;
}

.bar-row .bar-track {
  position: relative;
  height: 10px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--raised-active);
}

.bar-row .bar-fill {
  position: static;
  display: block;
  height: 100%;
  min-height: 0;
  border-radius: var(--radius-pill);
  background: var(--accent);
}

.bar-row strong {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-align: right;
}

.bar-chart:has(> .bar-row),
.video-stats:has(> .bar-row) {
  display: block;
  min-height: 0;
  padding: 8px 0 !important;
}

.bar-chart {
  display: grid;
  min-height: 318px;
  align-items: end;
  grid-template-columns: repeat(4, minmax(50px, 1fr));
  gap: 16px;
  padding: 28px 24px 22px;
}

.bar-item {
  display: grid;
  height: 100%;
  align-items: end;
  gap: 10px;
}

.bar-track {
  position: relative;
  height: 230px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(
      to top,
      transparent 0 44px,
      var(--border) 45px,
      transparent 46px
    ),
    var(--raised);
}

.bar-fill {
  position: absolute;
  inset: auto 0 0;
  min-height: 4px;
  background: var(--bar-color, var(--accent));
}

.bar-item:nth-child(2) {
  --bar-color: var(--blue);
}

.bar-item:nth-child(3) {
  --bar-color: var(--motion);
}

.bar-item:nth-child(4) {
  --bar-color: var(--green);
}

.bar-label {
  display: grid;
  gap: 2px;
  color: var(--dim);
  font-size: 9px;
  text-align: center;
}

.bar-label strong {
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
}

.video-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.video-stat-card {
  display: grid;
  min-height: 150px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--panel);
}

.video-stat-card > div:first-child {
  display: grid;
  gap: 5px;
}

.video-stat-card span {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.video-stat-card strong {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.video-stat-card p {
  margin: 0;
  color: var(--dim);
  font-size: 10px;
}

.donut {
  --value: 50;
  --donut-color: var(--accent);
  position: relative;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(
    var(--donut-color) calc(var(--value) * 1%),
    var(--raised-active) 0
  );
}

.donut::before {
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--panel);
  content: "";
}

.donut span {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: 10px;
}

.donut-blue {
  --donut-color: var(--blue);
}

.table-card {
  margin-bottom: 12px;
}

.table-meta {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 9px;
}

.table-scroll {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  font-size: 12px;
}

.data-table th {
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: uppercase;
}

.data-table td {
  border-bottom: 1px solid var(--border);
  padding: 15px 16px;
  color: #c5c3be;
  line-height: 1.45;
  vertical-align: top;
}

.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.data-table tbody tr:hover {
  background: var(--raised);
}

/* Código de convite. `color` explícito porque a regra que existia aqui antes
   pintava de --dim, e o código de uso único é justamente o texto que alguém
   precisa LER e copiar sem errar um caractere. */
.data-table .mono-cell {
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.platform-tags span {
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-pill);
  padding: 3px 6px;
  color: var(--dim);
  font-size: 9px;
}

.dashboard-note {
  margin: 18px 0 0;
  color: #6f727a;
  font-size: 10px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .launch-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .offer-panel {
    max-width: 620px;
  }

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

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

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

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

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

  .split-section,
  .audio-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

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

  .effects-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .waitlist-shell {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .waitlist-copy {
    position: static;
  }

  .auth-shell {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .auth-copy {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 38px;
  }

  .auth-copy h1 {
    margin-top: 48px;
  }
}

@media (max-width: 780px) {
  .container,
  .narrow-container {
    width: min(100% - 36px, 680px);
  }

  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-header {
    height: 64px;
  }

  .hero {
    padding: 124px 0 80px;
  }

  .launch-hero {
    padding: 118px 0 76px;
  }

  .hero::after {
    top: 64px;
  }

  .hero h1,
  .launch-copy h1 {
    font-size: clamp(48px, 13vw, 68px);
  }

  .hero-lead,
  .launch-lead {
    font-size: 18px;
  }

  .product-stage {
    margin-top: 62px;
  }

  .screen-frame img {
    width: 780px;
    max-width: none;
    margin-left: -120px;
  }

  .effects-visual .screen-frame img {
    margin-left: -84px;
  }

  .screen-brand {
    display: none;
  }

  .project-example {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .example-label {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

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

  .feature-card {
    min-height: 235px;
  }

  .feature-meta {
    margin-bottom: 56px;
  }

  .step-card {
    min-height: 250px;
  }

  .step-number {
    margin-bottom: 42px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 24px;
  }

  .video-comparison-grid {
    grid-template-columns: minmax(260px, 380px);
    gap: 32px;
  }

  .waitlist-shell {
    padding: 34px 24px;
  }

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

  .field-wide {
    grid-column: auto;
  }

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

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .faq-heading {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    row-gap: 18px;
  }

  .footer-inner p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .dashboard-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-heading-actions {
    flex-wrap: wrap;
  }

  .dashboard-toolbar,
  .filter-group {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-group .field {
    min-width: 0;
  }

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

@media (max-width: 560px) {
  .container,
  .narrow-container {
    width: calc(100% - 28px);
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1,
  .launch-copy h1 {
    margin-bottom: 24px;
    font-size: clamp(44px, 13.6vw, 58px);
    line-height: 1;
  }

  .hero-actions,
  .launch-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .button,
  .launch-actions .button {
    width: 100%;
    min-height: 52px;
  }

  .text-link {
    align-self: center;
  }

  .hero-steps {
    width: 100%;
    justify-content: space-between;
  }

  .hero-steps i {
    width: 16px;
  }

  .stage-topbar {
    padding-inline: 12px;
  }

  .stage-status {
    font-size: 8px;
  }

  .screen-frame img {
    width: 700px;
    margin-left: -132px;
  }

  .effects-visual .screen-frame img {
    margin-left: -110px;
  }

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

  .metric {
    grid-template-columns: 1fr auto;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
  }

  .metric:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .section-heading h2,
  .split-copy h2,
  .launch-copy h2,
  .faq-heading h2,
  .cta-band h2 {
    font-size: 36px;
  }

  .transcript-copy {
    min-height: 0;
    padding: 24px 18px 30px;
    font-size: 15.5px;
    line-height: 2.1;
  }

  .legend {
    gap: 10px;
    padding-inline: 14px;
  }

  .demo-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding-block: 11px;
  }

  .audio-card-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .wave-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .waveform {
    gap: 2px;
  }

  .offer-panel {
    padding: 22px;
  }

  .waitlist-section {
    padding: 64px 0;
  }

  .waitlist-shell {
    width: calc(100% - 20px);
    padding: 24px 14px;
  }

  .waitlist-form {
    padding: 24px 16px;
  }

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

  .faq-list summary {
    min-height: 84px;
    font-size: 14px;
  }

  .faq-list details > p {
    margin-right: 0;
    margin-left: 44px;
  }

  .dashboard-topbar-inner,
  .dashboard-container {
    width: calc(100% - 24px);
  }

  .dashboard-nav a:first-child {
    display: none;
  }

  .auth-view {
    padding: 24px 12px;
  }

  .auth-copy,
  .auth-panel {
    padding: 28px 22px;
  }

  .auth-copy h1 {
    margin-top: 30px;
  }

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

  .dashboard-heading-actions .button {
    flex: 1;
  }

  .bar-chart {
    gap: 8px;
    padding-inline: 12px;
  }

  .bar-row {
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 8px 12px;
    padding: 12px 14px;
  }

  .bar-row .bar-label {
    overflow-wrap: anywhere;
  }

  .bar-row .bar-track {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .bar-row strong {
    grid-column: 2;
    grid-row: 1;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- confirmação da lista de espera ----------
   Substitui o formulário depois do envio. Existe como bloco inteiro, e não
   como uma linha de status, porque a mensagem curta sobre o formulário ainda
   preenchido fazia parecer que nada tinha sido enviado. */
.waitlist-done {
  display: grid;
  gap: 14px;
  padding: 30px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.waitlist-done:focus {
  outline: none;
}

.waitlist-done:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.waitlist-done-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.waitlist-done-check {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgb(76 195 138 / 46%);
  border-radius: var(--radius-pill);
  font-size: 11px;
}

.waitlist-done-title {
  margin: 0;
  color: var(--text);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.waitlist-done-line {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

.waitlist-done-line strong {
  color: var(--text);
  font-weight: 600;
}

.waitlist-done-benefit {
  margin-top: 4px;
}

.waitlist-done-note {
  margin: 0;
  color: var(--dim);
  font-size: 13px;
  line-height: 1.5;
}


/* ---------- navegação interna do painel ----------
   `.dashboard-nav` já tinha cor base e hover, mas nunca entrou na regra de
   aria-current — sem isto a página ativa não se destaca de jeito nenhum. */
.dashboard-nav a[aria-current="page"] {
  color: var(--text);
}

.dashboard-nav-sep {
  color: var(--border-strong);
}

/* ---------- convites ---------- */
.button-sm {
  min-height: 26px;
  padding: 0 10px;
  font-size: 11px;
}

/* A situação do convite fala por cor além do texto — mas o texto vem primeiro,
   porque cor sozinha não é informação para quem não a distingue. */
.data-table td[data-estado="issued"] { color: var(--green); }
.data-table td[data-estado="reserved"] { color: var(--amber); }
.data-table td[data-estado="used"] { color: var(--dim); }
.data-table td[data-estado="revoked"],
.data-table td[data-estado="expirado"] { color: var(--red); }

/* O botão de confirmação muda de cor para que a segunda etapa não pareça a
   primeira. */
.button.is-confirming {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--accent-text);
}

/* ---------- convite e cadastro ----------
   As telas públicas de resgate. O grosso vem de .auth-view/.auth-shell/.field,
   que já existiam para o login do painel; o que segue é só o que faltava. */

/* O código é para ser CONFERIDO caractere a caractere contra o e-mail, então
   vale a fonte mono e o espaçamento largo — aqui a legibilidade ganha da
   estética. Sem `text-transform`, porque o JS já normaliza e a maiúscula
   visual esconderia o que a pessoa realmente digitou. */
.invite-input {
  font-family: var(--font-mono);
  font-size: 17px;
  letter-spacing: 0.16em;
  text-align: center;
}

.invite-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

/* O cadastro tem 10 campos: a coluna de texto do .auth-shell empurraria o
   formulário para uma faixa estreita demais. Aqui a copy vai por cima e o
   formulário fica com a largura toda. */
.signup-shell {
  width: min(100%, 780px);
  margin: 0 auto;
  padding: 0 20px;
}

.signup-intro {
  margin-bottom: 26px;
}

.signup-intro h1 {
  margin: 10px 0 8px;
}

.signup-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--panel);
}

/* País e número são um campo só para quem lê, então dividem a mesma linha. O
   select tem largura fixa porque nomes de país variam de "Chade" a
   "Estados Unidos Menores Distantes" e o número não pode encolher junto. */
.phone-field {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 1fr);
  gap: 8px;
}

.field-optional {
  margin-left: 6px;
  color: #6f727a;
  font-size: 10px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* Requisitos da senha ao vivo. Verde quando cumprido, apagado quando não —
   e nunca vermelho: a senha ainda está sendo digitada, e pintar de erro o que
   a pessoa ainda não terminou de escrever é ansiedade à toa. */
.senha-regras {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.senha-regras li {
  position: relative;
  padding-left: 14px;
  color: #6f727a;
  font-size: 10px;
  transition: color 120ms ease;
}

.senha-regras li::before {
  content: "○";
  position: absolute;
  left: 0;
  font-size: 9px;
}

.senha-regras li[data-ok="true"] {
  color: var(--green);
}

.senha-regras li[data-ok="true"]::before {
  content: "●";
}

@media (max-width: 640px) {
  .signup-form {
    padding: 20px 16px;
  }

  /* Empilhado: em 360px de largura, 40% do espaço não cabe o nome de país
     nenhum e o número fica com 5 dígitos visíveis. */
  .phone-field {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Ajustes responsivos das páginas legais e do rodapé institucional. */

@media (max-width: 1020px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .legal-toc {
    position: static;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--panel);
  }

  .legal-toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-guidance {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

@media (max-width: 780px) {
  .footer-primary {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-primary > a:last-child {
    justify-self: start;
  }

  .legal-hero {
    padding: 124px 0 58px;
  }

  .legal-hero h1 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .legal-layout {
    padding-top: 54px;
    padding-bottom: 80px;
  }

  .legal-card-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding-top: 60px;
    padding-bottom: 64px;
  }

  .contact-guidance {
    padding-top: 58px;
    padding-bottom: 78px;
  }
}

@media (max-width: 560px) {
  .legal-toc ol {
    grid-template-columns: 1fr;
  }

  .legal-article section {
    padding-bottom: 42px;
    margin-bottom: 42px;
  }

  .legal-callout,
  .legal-card,
  .preference-panel,
  .support-contact-band,
  .contact-card {
    padding: 20px;
  }

  .preference-panel,
  .support-contact-band {
    align-items: stretch;
    flex-direction: column;
  }

  .preference-panel .button,
  .support-contact-band .button {
    width: 100%;
    flex-basis: auto;
  }

  .contact-card {
    min-height: 220px;
  }
}
