:root {
  --ink: #1b1b1f;
  --muted: #6b6f7a;
  --line: #ebe6de;
  --paper: #ffffff;
  --soft: #f3f1ec;
  --card: #f3f1ec;
  --accent: #3a3f4a;
  --wrap: 1040px;
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 80;
  padding: 8px 14px;
  background: var(--paper);
  border-radius: 999px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.btn-solid {
  background: var(--ink);
  color: var(--paper);
}

.btn-solid:hover {
  background: #2a2a2a;
  color: var(--paper);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: #746ce6;
  color: #fff;
}

.btn-ghost {
  background: #fff;
  border-color: #d8d4ee;
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0;
  background: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-lockup {
  display: block;
  width: auto;
  height: auto;
  max-height: 24px;
  max-width: min(168px, calc(100vw - 128px));
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  width: 28px;
  height: 28px;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #3a3f4a;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  cursor: pointer;
}

.duna .site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  right: auto;
  z-index: 50;
  width: min(1040px, calc(100% - 32px));
  margin: 0;
  padding: 8px 8px 8px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 40px rgba(20, 30, 40, 0.12);
  backdrop-filter: blur(24px) saturate(160%);
  transform: translateX(-50%);
  transition:
    padding 0.28s ease,
    top 0.28s ease,
    border-radius 0.28s ease,
    width 0.28s ease,
    box-shadow 0.28s ease;
}

.duna .site-header.is-compact {
  width: min(720px, calc(100% - 48px));
}

.duna .nav a {
  color: #161616;
  font-weight: 600;
}

.duna .site-header > .btn {
  min-height: 40px;
  padding: 0 18px;
}

.duna .hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 160px 24px 40px;
  overflow: hidden;
}

.duna .hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.duna .hero-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.duna .hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(52%, 420px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.82) 38%,
    #ffffff 68%,
    #ffffff 100%
  );
}

.duna .hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 0;
  text-align: center;
  background: none;
}

.duna .hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 5.6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.duna .hero-copy h1 .line {
  display: block;
  overflow: hidden;
  padding: 0 0 0.16em;
}

.duna .hero-copy h1 .line-inner {
  display: block;
}

.duna .lede {
  margin: 0 auto 28px;
  max-width: 46ch;
  color: #2c2c2c;
  font-size: 18px;
}

.duna .hero-actions {
  position: static;
  transform: none;
  top: auto;
  left: auto;
}

.sq-bar {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: 14px 16px 16px;
  border-radius: 20px;
  background: rgba(28, 34, 26, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 64px rgba(20, 30, 20, 0.22);
  backdrop-filter: blur(36px) saturate(140%);
  color: #f4f6f2;
  text-align: left;
}

.sq-head {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
}

.sq-back {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #e8ece4;
  font-size: 16px;
}

.sq-query {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
}

.sq-query::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 2px;
  background: #f4f6f2;
  vertical-align: -2px;
}

.sq-any {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 600;
}

.sq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 14px;
}

.sq-tabs span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 600;
}

.sq-tabs .is-on {
  background: #60cdff;
  color: #003543;
}

.sq-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 12px;
  min-height: 168px;
}

.sq-label {
  margin: 0 0 8px;
  padding: 0 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.sq-file {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 600;
}

.sq-preview {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.sq-page {
  width: min(190px, 100%);
  margin: 0 auto;
  padding: 14px 12px;
  border-radius: 4px;
  background: #fff;
  color: #222;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.sq-page .sq-k {
  margin: 0 0 6px;
  color: #5a5a5a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sq-page strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

.sq-page p {
  margin: 0;
  color: #5f5f5f;
  font-size: 11px;
  line-height: 1.4;
}

.sq-actions {
  display: flex;
  gap: 8px;
}

.sq-open,
.sq-more {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.sq-open {
  background: #60cdff;
  color: #003543;
}

.sq-more {
  background: rgba(255, 255, 255, 0.12);
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 20px;
  padding: 0 14px;
  border-radius: 999px;
  background: #2a2a2a;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.trust-line {
  margin: 8px auto 0;
  text-align: center;
  color: #9aa0aa;
  font-size: 13px;
  font-weight: 500;
}

.proof h2 {
  margin: 0 0 40px;
  max-width: 18ch;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.05em;
}

.stats span {
  color: var(--muted);
  font-size: 14px;
}

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

.big-cards article {
  padding: 40px 28px 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.big-cards article:first-child {
  border-left: 1px solid var(--line);
}

.card-ico {
  display: grid;
  place-items: start;
  margin-bottom: 28px;
  color: #2a2a30;
}

.big-cards h3 {
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.big-cards p {
  margin: 0;
  max-width: 32ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.pic-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  margin: 0 0 48px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--card);
}

.pic-card-flip {
  grid-template-columns: 0.95fr 1.05fr;
}

.pic-card-flip .pic-copy {
  order: 2;
}

.pic-card-flip img {
  order: 1;
}

.pic-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
}

.pic-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.pic-copy p {
  margin: 0;
  max-width: 36ch;
  color: var(--muted);
  font-size: 16px;
}

.pic-card img {
  width: calc(100% - 48px);
  height: auto;
  min-height: 0;
  max-height: 420px;
  margin: 24px;
  border-radius: 12px;
  object-fit: contain;
  object-position: center;
  background: #e8e6e1;
}

#features-more {
  padding-top: 8px;
}

.footer-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-scene img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.footer-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  width: min(1200px, calc(100% - clamp(32px, 12vw, 240px)));
  margin-inline: auto;
  padding: 0;
  color: #fff;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 22px;
  max-width: min(168px, 70vw);
  object-fit: contain;
  object-position: left center;
}

.footer-email {
  display: inline-block;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.footer-email:hover {
  color: #fff;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: normal;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 48px;
  justify-self: end;
}

.footer-cols > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid .footer-cols a {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
}

.footer-grid .footer-cols a:hover {
  color: #fff;
}

.hero-copy {
  width: min(680px, calc(100% - 48px));
  margin: 0 auto 8px;
  text-align: center;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(40px, 5.2vw, 60px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

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

.hero-stage {
  position: relative;
  width: min(1120px, 100%);
  height: 520px;
  margin: 8px auto 0;
}

.hero-land {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 14%, rgba(255, 255, 255, 0) 70%, #ffffff 100%);
  pointer-events: none;
}

.hero-actions {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-card {
  position: absolute;
  top: 88px;
  left: 50%;
  z-index: 2;
  width: min(720px, 70%);
  margin: 0;
  padding: 16px 18px 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(40, 50, 80, 0.16);
  transform: translateX(-50%);
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #eceaf3;
  border-radius: 12px;
  background: #faf9fd;
}

.dash-query {
  font-size: 14px;
  font-weight: 600;
}

.dash-any {
  color: var(--muted);
  font-size: 12px;
}

.dash-tabs {
  display: flex;
  gap: 8px;
  margin: 12px 0 14px;
}

.dash-tabs span {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f3f1f8;
  color: #5c5f6a;
  font-size: 12px;
  font-weight: 600;
}

.dash-tabs .is-on {
  background: var(--accent);
  color: #fff;
}

.dash-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
  min-height: 168px;
}

.dash-list,
.dash-preview {
  border-radius: 12px;
  background: #f6f4fb;
}

.dash-file {
  margin: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
}

.dash-page {
  margin: 16px auto;
  width: min(180px, 70%);
  padding: 16px 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(40, 40, 60, 0.08);
}

.dash-page .dash-k {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.dash-page strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

.dash-page p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.hero-meta {
  margin: 28px 0 0;
  text-align: center;
  color: #9aa0b0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.section {
  padding: 72px 0 8px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-head h2,
.closing h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

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

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

.steps h3,
.feature-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.steps p,
.feature-grid p {
  margin: 0;
  color: var(--muted);
}

.step-k {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-grid article {
  padding: 28px;
  border-radius: 20px;
  background: var(--soft);
}

.media-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
  box-shadow: 0 20px 60px rgba(30, 40, 60, 0.12);
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: auto;
  display: block;
}

.media-frame img[hidden],
.media-frame video[hidden],
.sound-toggle[hidden] {
  display: none !important;
}

.sound-toggle {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 24, 20, 0.72);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.sound-toggle:hover {
  background: rgba(20, 24, 20, 0.88);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.split-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 280px;
  border-radius: 28px;
  background: var(--soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 28px;
}

.split-visual span {
  padding: 12px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(80, 70, 160, 0.12);
}

.split-visual small {
  color: var(--muted);
}

.split-copy h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.split-copy p {
  margin: 0 0 24px;
  color: var(--muted);
}

.split-copy p:last-child {
  margin-bottom: 0;
}

.split-card {
  margin-bottom: 24px;
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(80, 70, 160, 0.08);
}

.split-card p {
  margin: 0;
}

.split {
  padding-bottom: 48px;
  background: linear-gradient(180deg, transparent 40%, #f6f2fc 100%);
}

.cta-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  margin: 48px auto;
  padding: 36px 40px;
  border-radius: 28px;
  background: var(--soft);
  overflow: hidden;
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.03em;
}

.cta-band p {
  margin: 0 0 20px;
  color: var(--muted);
}

.cta-band img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 20px;
}

.footer-art {
  position: relative;
  height: 180px;
  margin-bottom: 24px;
  overflow: hidden;
}

.footer-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.footer-art p {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.still-frame {
  overflow: hidden;
  border-radius: 24px;
  background: #111;
  box-shadow: 0 20px 60px rgba(20, 30, 50, 0.1);
}

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

.faq .section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.faq .section-head h2 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.faq .section-head p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #8b8f97;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 0;
  border-radius: 24px;
  background: var(--card);
  padding: 8px 8px 8px 4px;
}

.faq-item button {
  width: 100%;
  min-height: 56px;
  padding: 14px 20px 14px 16px;
  border: 0;
  background: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #161616;
  cursor: pointer;
  border-radius: 20px;
}

.faq-item button:hover {
  color: #000;
}

.faq-item button:focus-visible {
  outline: 2px solid #161616;
  outline-offset: 2px;
}

.faq-mark {
  flex: 0 0 auto;
  width: 18px;
  color: #161616;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.faq-item .answer {
  display: none;
  padding: 0 20px 20px 46px;
  color: #8b8f97;
  font-size: 15px;
  line-height: 1.65;
}

.faq-item .answer p {
  margin: 0;
}

.faq-item.open .answer {
  display: block;
}

.faq-item.open {
  padding-bottom: 4px;
}

.closing {
  padding: 72px 0 80px;
  text-align: center;
}

.closing .lede {
  margin-bottom: 28px;
}

#beta {
  position: relative;
  scroll-margin-top: 80px;
}

.anchor-alias {
  position: absolute;
  top: 0;
}

.beta-form {
  display: grid;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
  padding: 28px;
  text-align: left;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
}

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

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

.field label {
  font-size: 14px;
  font-weight: 600;
}

.field .optional {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #d9d4ca;
  border-radius: 12px;
}

.field textarea {
  resize: vertical;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
.field-check input:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.field [aria-invalid="true"] {
  border-color: #b3261e;
}

.field-hint {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.field-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
}

.field-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: none;
  accent-color: var(--ink);
}

.beta-submit {
  justify-self: start;
}

.beta-submit[disabled] {
  opacity: 0.6;
  cursor: progress;
  transform: none;
}

.beta-status {
  margin: 0;
  min-height: 1.5em;
  font-size: 14px;
}

.beta-status.is-error {
  color: #b3261e;
}

.beta-form.is-done .field,
.beta-form.is-done .field-row,
.beta-form.is-done .field-check,
.beta-form.is-done .beta-submit {
  display: none;
}

.beta-form.is-done .beta-status {
  font-size: 16px;
  font-weight: 600;
}

.beta-foot {
  margin: 20px 0 0;
  font-size: 14px;
  color: var(--muted);
}

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

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

.site-footer {
  position: relative;
  margin-top: 0;
  padding: clamp(56px, 8vw, 120px) 0 clamp(32px, 4vw, 56px);
  min-height: clamp(280px, 42vw, 440px);
  border-top: 0;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.site-footer nav a {
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
}

.legal-meta {
  margin: 20px auto 0;
  color: #9aa0aa;
  font-size: 13px;
}

.inner {
  padding-bottom: 0;
}

.page-hero {
  padding: 48px 0 24px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.04em;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prose {
  max-width: 68ch;
  overflow-wrap: break-word;
}

.prose h2 {
  margin: 32px 0 10px;
  font-size: 22px;
}

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

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

.card {
  padding: 24px;
  border-radius: 20px;
  background: var(--soft);
}

.card h3 {
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: break-word;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    margin-left: auto;
    color: var(--ink);
    background: #fff;
  }

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

  .site-header,
  .duna .site-header,
  .duna .site-header.is-compact {
    gap: 12px;
    width: calc(100% - 16px);
    max-width: calc(100vw - 16px);
    min-width: 0;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 60;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    border-radius: 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(20, 30, 40, 0.12);
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 10px;
  }

  .nav a:hover {
    background: var(--soft);
  }

  .nav.is-open {
    display: flex;
  }

  .stats,
  .trio,
  .big-cards,
  .footer-grid,
  .steps,
  .feature-grid,
  .grid-3,
  .footer-row,
  .split,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .footer-row {
    display: grid;
  }

  .site-footer {
    padding: 56px 0 36px;
    min-height: 0;
  }

  .footer-grid {
    width: min(1200px, calc(100% - 32px));
    gap: 32px;
  }

  .footer-cols {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    justify-self: stretch;
    width: 100%;
    gap: 20px 24px;
  }

  .faq-list,
  .pic-card,
  .pic-card-flip {
    grid-template-columns: 1fr;
  }

  .pic-card-flip .pic-copy,
  .pic-card-flip img {
    order: unset;
  }

  .pic-copy {
    padding: 28px 24px;
  }

  .pic-card img {
    width: calc(100% - 32px);
    margin: 16px;
  }

  .big-cards article {
    padding: 28px 22px 32px;
  }

  .big-cards article:first-child {
    border-top: 1px solid var(--line);
  }

  .hero-copy {
    padding: 8px 0 24px;
  }

  .section,
  .closing {
    padding-top: 56px;
  }

  .duna .hero {
    min-height: 100svh;
    padding: 128px 16px 32px;
  }

  .duna .site-header,
  .duna .site-header.is-compact {
    top: max(8px, env(safe-area-inset-top));
    padding: 6px 6px 6px 14px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 32px));
  }

  .duna .hero-copy h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .duna .lede {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .pic-card {
    margin-bottom: 20px;
  }

  .pic-copy {
    padding: 22px 18px 8px;
  }

  .pic-card img {
    width: calc(100% - 24px);
    margin: 12px;
    max-height: 280px;
  }

  .faq-item button {
    min-height: 48px;
    padding: 12px 12px 12px 8px;
    font-size: 15px;
  }

  .closing {
    padding: 48px 0 56px;
  }

  .duna .hero-actions,
  .closing .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .site-footer {
    padding: 48px 0 max(28px, env(safe-area-inset-bottom));
  }

  .footer-brand {
    gap: 12px;
  }

  .footer-logo {
    max-height: 20px;
  }

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

  .footer-grid .footer-cols a {
    padding: 2px 0;
  }
}

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

  * {
    animation: none !important;
    transition: none !important;
  }
}
