@font-face {
  font-family: "Outfit";
  src: url("fonts/Outfit-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #11100d;
  --panel: #1a1814;
  --panel-2: #232018;
  --ink: #f7f1e3;
  --muted: #bdb4a0;
  --quiet: #7e7668;
  --gold: #d8aa45;
  --gold-2: #f1d17a;
  --green: #8fbf9f;
  --signal: #7cc7b2;
  --blue: #96b8ff;
  --oxide: #bd6f47;
  --line: rgba(247, 241, 227, 0.13);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  letter-spacing: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(124, 199, 178, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(216, 170, 69, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 72% 8%, rgba(124, 199, 178, 0.16), transparent 32rem),
    radial-gradient(circle at 14% 68%, rgba(189, 111, 71, 0.12), transparent 30rem),
    linear-gradient(140deg, #10110f 0%, #171610 48%, #0d1110 100%);
  background-size: 56px 56px, 56px 56px, auto, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

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

a:hover {
  color: var(--gold-2);
}

.legal a {
  color: var(--gold-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 200;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 16px;
  background: rgba(247, 241, 227, 0.04);
  color: var(--ink);
  font-size: 14px;
  font-weight: 300;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(241, 209, 122, 0.65);
  background: rgba(216, 170, 69, 0.12);
  color: var(--ink);
}

.button.primary {
  border-color: rgba(216, 170, 69, 0.72);
  background: linear-gradient(180deg, #e1b756, #9c7025);
  color: #171208;
  font-weight: 300;
  box-shadow: 0 14px 40px rgba(216, 170, 69, 0.18);
}

.button.disabled {
  color: var(--quiet);
  cursor: not-allowed;
  opacity: 0.72;
}

.button.disabled:hover {
  transform: none;
  border-color: var(--line);
  background: rgba(247, 241, 227, 0.04);
  color: var(--quiet);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 40px 0 84px;
}

.eyebrow {
  color: var(--signal);
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(56px, 9vw, 112px);
  line-height: 0.9;
  font-weight: 100;
}

h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
  font-weight: 100;
}

h3 {
  font-size: 22px;
  font-weight: 200;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
}

.lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: #d7ccb6;
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.28;
  font-weight: 200;
}

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

.note {
  margin-top: 18px;
  color: var(--quiet);
  font-size: 14px;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.proof-strip span {
  border: 1px solid rgba(124, 199, 178, 0.28);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(247, 241, 227, 0.035);
  color: #d8ccb6;
  font-size: 13px;
  font-weight: 300;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(35, 32, 24, 0.95), rgba(20, 18, 14, 0.98));
  box-shadow: var(--shadow);
}

.product-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.product-top img {
  width: 68px;
  height: 68px;
  border-radius: 14px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(124, 199, 178, 0.14);
}

.dictation-demo {
  padding: 26px 22px 28px;
}

.dictation-window {
  border: 1px solid rgba(247, 241, 227, 0.12);
  border-radius: 8px;
  background: #0b0b09;
}

.window-bar {
  display: flex;
  gap: 7px;
  padding: 12px;
  border-bottom: 1px solid rgba(247, 241, 227, 0.08);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--quiet);
}

.demo-text {
  min-height: 220px;
  padding: 24px;
}

.before-text,
.after-text {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
}

.after-text {
  margin-top: 24px;
  color: var(--signal);
}

.spoken-line {
  margin-top: 8px;
  color: #918875;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 300;
}

.typed {
  margin-top: 8px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.28;
  font-weight: 200;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 4px;
  transform: translateY(3px);
  background: var(--gold-2);
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.meta-row div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.meta-row div:last-child {
  border-right: 0;
}

.meta-row strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 200;
}

.meta-row span {
  color: var(--quiet);
  font-size: 13px;
}

.section {
  padding: 84px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 460px;
  margin: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  min-height: 236px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(26, 24, 20, 0.72);
}

.card .mark {
  width: 32px;
  height: 32px;
  margin-bottom: 30px;
  border: 1px solid rgba(124, 199, 178, 0.5);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(124, 199, 178, 0.42), transparent),
    rgba(247, 241, 227, 0.03);
}

.card p,
.legal p,
.support-list p {
  font-size: 16px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.compare {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: start;
}

.compare p:first-child {
  margin-top: 0;
}

.choice-section {
  align-items: stretch;
}

.position-list {
  display: grid;
  gap: 10px;
}

.position-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(26, 24, 20, 0.62);
}

.position-list .selected {
  border-color: rgba(124, 199, 178, 0.42);
  background:
    linear-gradient(90deg, rgba(124, 199, 178, 0.14), rgba(26, 24, 20, 0.72)),
    rgba(26, 24, 20, 0.72);
}

.position-list span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 200;
}

.position-list p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: start;
}

.proof-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(18, 19, 17, 0.68);
}

.proof-table div {
  min-height: 164px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-table div:nth-child(2n) {
  border-right: 0;
}

.proof-table div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.proof-table strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  font-weight: 200;
}

.proof-table span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.requirements-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 34px;
  align-items: start;
}

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

.requirements-list div {
  min-height: 156px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(26, 24, 20, 0.72);
}

.requirements-list strong {
  display: block;
  color: var(--ink);
  font-size: 21px;
  font-weight: 200;
}

.requirements-list span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.price-panel {
  border: 1px solid rgba(216, 170, 69, 0.35);
  border-radius: 8px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(216, 170, 69, 0.14), rgba(26, 24, 20, 0.72));
}

.price {
  color: var(--ink);
  font-size: clamp(46px, 7vw, 86px);
  line-height: 1;
  font-weight: 100;
}

.beta-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 130px);
  padding: 44px 0 76px;
}

.beta-side {
  border: 1px solid rgba(216, 170, 69, 0.34);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(216, 170, 69, 0.13), rgba(26, 24, 20, 0.82)),
    rgba(26, 24, 20, 0.72);
  box-shadow: var(--shadow);
}

.beta-side img {
  width: 74px;
  height: 74px;
  margin-bottom: 26px;
  border-radius: 16px;
}

.beta-side h2 {
  font-size: 34px;
}

.beta-side ul,
.check-panel {
  margin: 24px 0 0;
}

.beta-side li {
  margin: 12px 0;
  color: #ded3bd;
  line-height: 1.45;
}

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

.step-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(26, 24, 20, 0.72);
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(216, 170, 69, 0.5);
  border-radius: 50%;
  color: var(--gold-2);
  font-size: 20px;
  font-weight: 200;
}

.step-row p {
  margin: 8px 0 0;
  font-size: 16px;
}

.step-row strong {
  color: var(--ink);
  font-weight: 300;
}

.check-panel {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(26, 24, 20, 0.74);
}

.check-panel label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #ded3bd;
  font-size: 17px;
  line-height: 1.42;
}

.check-panel input {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: var(--gold);
}

.beta-help {
  max-width: 900px;
}

.beta-help p {
  max-width: 780px;
}

.legal {
  max-width: 820px;
  padding: 48px 0 86px;
}

.legal h1 {
  font-size: clamp(44px, 7vw, 86px);
}

.legal h2 {
  margin-top: 42px;
  font-size: 30px;
}

.legal ul {
  color: var(--muted);
  line-height: 1.6;
}

.legal li {
  margin: 8px 0;
}

.footer {
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero,
  .beta-hero,
  .split,
  .compare,
  .proof-grid,
  .requirements-section,
  .section-head {
    display: block;
  }

  .hero,
  .beta-hero {
    min-height: auto;
    padding-top: 42px;
  }

  .product-card,
  .price-panel,
  .beta-side {
    margin-top: 34px;
  }

  .compare > div + div {
    margin-top: 28px;
  }

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

  .proof-table {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .proof-table div,
  .proof-table div:nth-child(2n),
  .proof-table div:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-table div:last-child {
    border-bottom: 0;
  }

  .requirements-list {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .requirements-list div {
    min-height: auto;
  }

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

  .meta-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 560px) {
  .nav {
    display: block;
  }

  .nav-links {
    justify-content: flex-start;
    margin-top: 16px;
  }

  h1 {
    font-size: 52px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }
}
