:root {
  --ink: #191816;
  --muted: #69655f;
  --paper: #f4f0e8;
  --paper-deep: #e9e2d6;
  --white: #fffdf8;
  --coral: #f26452;
  --coral-dark: #d84d3d;
  --green: #173d35;
  --green-soft: #d9e8dd;
  --line: rgba(25, 24, 22, 0.13);
  --shadow: 0 28px 70px rgba(37, 28, 20, 0.15);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.36;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 8px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

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

.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 760;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  border-radius: 10px;
}

.site-header nav {
  display: flex;
  gap: 32px;
}

.site-header nav a,
footer nav a,
.footer-link {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.site-header nav a:hover,
footer nav a:hover,
.footer-link:hover {
  color: var(--ink);
}

.language-link {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.button {
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
summary:focus-visible,
.price-switch button:focus-visible {
  outline: 3px solid rgba(242, 100, 82, 0.35);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 0.82rem;
}

.button-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 30px rgba(216, 77, 61, 0.2);
}

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

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.48);
}

.button-secondary:hover {
  border-color: rgba(25, 24, 22, 0.3);
  background: var(--white);
}

.button-wide {
  width: 100%;
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 700px;
  margin: 0 auto;
  padding: 80px 0 90px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  display: inline-block;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(242, 100, 82, 0.12);
}

.eyebrow-light {
  color: #e7bda9;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(4rem, 7vw, 6.6rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 550px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.text-link {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 730;
  text-decoration: none;
}

.text-link span {
  margin-left: 6px;
  color: var(--coral);
}

.trust-list {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: var(--muted);
  font-size: 0.78rem;
  list-style: none;
}

.trust-list span {
  color: var(--green);
  font-weight: 900;
}

.hero-visual {
  min-width: 0;
  position: relative;
}

.app-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(25, 24, 22, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.app-shot img {
  width: 100%;
}

.shot-bar {
  height: 34px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #e5e5e5;
  background: #f8f8f7;
}

.shot-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7d7d4;
}

.shot-bar p {
  margin: 0 auto 0 calc(50% - 60px);
  color: #858581;
  font-size: 0.62rem;
}

.dictation-pill {
  position: absolute;
  right: -20px;
  bottom: -28px;
  z-index: 2;
  min-width: 330px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--green);
  color: white;
  box-shadow: 0 20px 42px rgba(23, 61, 53, 0.28);
}

.dictation-pill > span:nth-child(2) {
  flex: 1;
  font-size: 0.78rem;
  font-weight: 650;
}

kbd {
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-family: inherit;
  font-size: 0.62rem;
}

.wave,
.mini-wave {
  display: flex;
  align-items: center;
  gap: 2px;
}

.wave i {
  width: 2px;
  height: 15px;
  border-radius: 10px;
  display: block;
  background: #f3c7b4;
  animation: pulse 1.2s ease-in-out infinite;
}

.wave i:nth-child(2),
.wave i:nth-child(6) { height: 22px; animation-delay: -0.2s; }
.wave i:nth-child(3),
.wave i:nth-child(5) { height: 30px; animation-delay: -0.4s; }
.wave i:nth-child(4) { height: 20px; animation-delay: -0.6s; }

@keyframes pulse {
  0%, 100% { transform: scaleY(0.6); }
  50% { transform: scaleY(1); }
}

.privacy-orbit {
  position: absolute;
  top: -65px;
  right: 15px;
  width: 118px;
  height: 118px;
  z-index: 3;
  border: 1px dashed rgba(23, 61, 53, 0.32);
  border-radius: 50%;
  display: grid;
  place-items: center;
  animation: spin 18s linear infinite;
}

.orbit-dot {
  position: absolute;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.orbit-copy {
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.proof-strip {
  padding: 25px max(20px, calc((100% - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: rgba(255, 253, 248, 0.4);
}

.proof-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.proof-strip span {
  color: #4c4944;
  font-family: Georgia, serif;
  font-size: 0.96rem;
  font-style: italic;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 115px 0;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 60px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.step-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  list-style: none;
  counter-reset: step;
}

.step-grid li {
  min-height: 280px;
  padding: 24px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.5);
}

.step-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #9d9890;
  font-family: Georgia, serif;
  font-size: 0.8rem;
}

.step-icon {
  width: 65px;
  height: 65px;
  margin: 25px 0 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
  font-size: 1.4rem;
}

.step-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.privacy-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - 1180px) / 2));
  padding-left: max(20px, calc((100% - 1180px) / 2));
  background: var(--green);
}

.privacy-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
  color: white;
}

.privacy-card h2 {
  max-width: 670px;
}

.privacy-card > div > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.7);
}

.privacy-detail {
  max-width: 600px;
  margin-top: 35px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  gap: 16px;
}

.privacy-detail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.privacy-detail strong {
  color: white;
}

.lock {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #efb9a0;
}

.local-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.device {
  width: 290px;
  height: 230px;
  padding: 34px 25px 25px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.035);
}

.device-notch {
  width: 70px;
  height: 8px;
  position: absolute;
  top: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
}

.device img {
  width: 68px;
  height: 68px;
  margin-bottom: 12px;
  border-radius: 18px;
}

.device p {
  margin-bottom: 14px;
  font-size: 0.77rem;
  font-weight: 700;
}

.mini-wave i {
  width: 2px;
  height: 10px;
  display: block;
  background: #eeb69d;
}

.mini-wave i:nth-child(2),
.mini-wave i:nth-child(4) { height: 18px; }
.mini-wave i:nth-child(3) { height: 25px; }

.no-cloud {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.no-cloud span {
  margin-right: 5px;
  color: #efb9a0;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
  align-items: center;
}

.feature-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.feature-list {
  margin: 35px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
}

.feature-list li > span {
  color: var(--coral-dark);
  font-family: Georgia, serif;
  font-size: 0.72rem;
}

.feature-list strong {
  display: block;
  font-size: 0.92rem;
}

.feature-list p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.feature-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.subscription-bridge {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - 1180px) / 2));
  padding-left: max(20px, calc((100% - 1180px) / 2));
  background: var(--ink);
}

.bridge-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: center;
  color: white;
}

.bridge-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.66);
}

.bridge-copy ul {
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.bridge-copy li {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.bridge-copy li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bridge-copy li span {
  margin-right: 18px;
  color: #efb9a0;
  font-family: Georgia, serif;
  font-size: 0.7rem;
}

.client-stack {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.client-stack > p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.client-stack > div {
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.client-stack span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}

.client-stack strong {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.client-stack small {
  margin-top: 20px;
  display: block;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.64rem;
}

.pricing {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - 980px) / 2));
  padding-left: max(20px, calc((100% - 980px) / 2));
  background: var(--paper-deep);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  align-items: stretch;
}

.price-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  background: rgba(255, 253, 248, 0.68);
}

.price-card-pro {
  position: relative;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(42, 34, 25, 0.1);
}

.founder-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  padding: 7px 12px;
  border-radius: 99px;
  background: var(--green);
  color: white;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.plan-name {
  margin-bottom: 14px;
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price {
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.price strong {
  font-family: Georgia, serif;
  font-size: 3.1rem;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 0.7rem;
}

.plan-description {
  min-height: 52px;
  color: var(--muted);
  font-size: 0.84rem;
}

.price-card ul {
  margin: 24px 0 32px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  flex: 1;
  list-style: none;
}

.price-card li {
  margin: 11px 0;
  padding-left: 22px;
  position: relative;
  color: #484540;
  font-size: 0.82rem;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.price-switch {
  margin: -46px 0 19px auto;
  padding: 3px;
  width: max-content;
  border: 1px solid var(--line);
  border-radius: 9px;
  display: flex;
  background: var(--paper);
}

.price-switch button {
  padding: 6px 9px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 750;
}

.price-switch button.active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(25, 24, 22, 0.08);
}

.renewal-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.67rem;
  text-align: center;
}

.founder-note {
  padding-top: 85px;
  padding-bottom: 85px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: end;
}

.founder-note h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.founder-note > p {
  margin: 0;
  color: var(--muted);
}

.faq {
  padding-top: 90px;
}

.faq-list {
  max-width: 800px;
  margin-left: auto;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 23px 40px 23px 0;
  position: relative;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 1.13rem;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  color: var(--coral-dark);
  font-family: system-ui;
  font-size: 1.25rem;
  font-weight: 300;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 670px;
  padding: 0 0 25px;
  color: var(--muted);
  font-size: 0.88rem;
}

.final-cta {
  width: 100%;
  max-width: none;
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--coral);
  color: white;
  text-align: center;
}

.final-cta img {
  margin-bottom: 28px;
  border-radius: 22px;
  box-shadow: 0 16px 35px rgba(90, 28, 22, 0.18);
}

.final-cta h2 {
  margin-bottom: 15px;
}

.final-cta > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .button {
  margin-top: 16px;
}

.final-cta small {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.67);
}

footer {
  min-height: 150px;
  padding: 45px max(20px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 35px;
  align-items: center;
  background: var(--ink);
  color: white;
}

footer .brand {
  color: white;
}

footer > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
}

footer nav {
  display: flex;
  gap: 20px;
}

footer nav a {
  color: rgba(255, 255, 255, 0.58);
}

.footer-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}

.copyright {
  white-space: nowrap;
}

.setup-dialog {
  width: min(680px, calc(100% - 30px));
  max-height: min(860px, calc(100vh - 30px));
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-y: auto;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.setup-dialog::backdrop {
  background: rgba(20, 19, 17, 0.68);
  backdrop-filter: blur(5px);
}

.setup-dialog h2 {
  font-size: 2.8rem;
}

.setup-dialog > p:not(.eyebrow) {
  color: var(--muted);
}

.setup-dialog small {
  margin-top: 12px;
  display: block;
  color: var(--muted);
  text-align: center;
}

.compatibility-grid {
  margin: 25px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.compatibility-grid div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
}

.compatibility-grid strong {
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compatibility-grid span {
  font-size: 0.84rem;
  font-weight: 700;
}

.pilot-warning {
  margin: 0 0 20px;
  padding: 16px 18px;
  border-left: 3px solid var(--coral);
  background: rgba(242, 100, 82, 0.08);
}

.pilot-warning strong {
  display: block;
  font-size: 0.84rem;
}

.pilot-warning p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.install-guide {
  border-color: var(--line);
}

.install-guide summary {
  padding: 17px 34px 17px 0;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 750;
}

.install-guide ol {
  margin-top: 0;
  padding: 0 0 18px 20px;
  color: var(--muted);
  font-size: 0.78rem;
}

.install-guide code {
  padding: 10px;
  border-radius: 8px;
  display: block;
  overflow-wrap: anywhere;
  background: var(--paper);
  font-size: 0.66rem;
}

.dialog-support {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.consent-banner {
  width: min(1000px, calc(100% - 30px));
  padding: 22px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 80;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: var(--ink);
  color: white;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.32);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner .eyebrow {
  margin-bottom: 4px;
}

.consent-banner strong {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.consent-banner p:last-child {
  max-width: 620px;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.consent-actions {
  min-width: 290px;
  display: grid;
  gap: 8px;
}

.consent-actions .button {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.74rem;
}

.consent-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
  color: white;
}

.consent-actions > a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  text-align: center;
}

.dialog-close {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  font-size: 1.3rem;
}

.toast {
  max-width: calc(100% - 30px);
  padding: 12px 16px;
  position: fixed;
  bottom: 20px;
  left: 50%;
  z-index: 90;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.legal-page {
  min-height: calc(100vh - 230px);
}

.legal-hero {
  padding-bottom: 55px;
}

.legal-hero h1 {
  max-width: 850px;
  font-size: clamp(3.4rem, 7vw, 6rem);
}

.legal-warning {
  margin: 0 0 45px;
  padding: 18px 20px;
  border: 1px solid #d88b31;
  border-radius: 12px;
  background: #fff2d7;
  color: #69400d;
  font-size: 0.85rem;
}

.legal-warning[hidden] {
  display: none;
}

.legal-content {
  padding-top: 45px;
}

.legal-content article {
  max-width: 800px;
  margin: 0 0 75px;
  scroll-margin-top: 30px;
}

.legal-content h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.legal-content h3 {
  margin-top: 35px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content li {
  margin: 8px 0;
}

.legal-identity {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.55);
}

.legal-identity p {
  margin: 5px 0;
}

.success-page {
  min-height: 100vh;
  padding: 30px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: white;
}

.success-page main {
  width: min(680px, 100%);
  padding: 65px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.success-page img {
  margin-bottom: 32px;
  border-radius: 22px;
}

.success-page h1 {
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 8vw, 5.8rem);
}

.success-page main > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.success-note {
  margin: 30px 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.success-note p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

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

.text-link-light {
  color: white;
}

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

  .hero {
    padding-top: 60px;
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    margin-top: 30px;
  }

  .privacy-card,
  .bridge-card,
  .feature-showcase,
  .founder-note {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .feature-image {
    order: -1;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 28px);
  }

  .site-header > .button {
    display: none;
  }

  .hero,
  .section {
    width: calc(100% - 28px);
  }

  .hero {
    min-height: auto;
    padding: 55px 0 75px;
    gap: 45px;
  }

  h1 {
    font-size: clamp(3.7rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .privacy-orbit {
    width: 90px;
    height: 90px;
    top: -42px;
    right: -4px;
  }

  .dictation-pill {
    width: calc(100% - 20px);
    min-width: 0;
    right: 10px;
    bottom: -35px;
  }

  .proof-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-strip div {
    justify-content: flex-start;
    gap: 12px 20px;
  }

  .section {
    padding-top: 85px;
    padding-bottom: 85px;
  }

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

  .step-grid li {
    min-height: 230px;
  }

  .step-icon {
    margin-bottom: 32px;
  }

  .privacy-section,
  .pricing,
  .final-cta {
    width: 100%;
  }

  .privacy-card {
    gap: 45px;
  }

  .device {
    width: 270px;
  }

  .price-card {
    padding: 28px 22px;
  }

  .price-switch {
    margin: 0 0 18px;
  }

  .founder-note {
    width: calc(100% - 28px);
  }

  .faq-list {
    margin: 0;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  footer nav {
    flex-wrap: wrap;
  }

  .setup-dialog {
    padding: 38px 25px 28px;
  }

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

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

  .consent-actions {
    min-width: 0;
  }

  .success-page {
    padding: 15px;
  }

  .success-page main {
    padding: 38px 24px;
  }

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

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