:root {
  color-scheme: light;
  --bg: #f3f5f9;
  --surface: #ffffff;
  --surface-muted: #e9eeff;
  --ink: #1b1f2d;
  --muted: #626b7e;
  --line: #dbe1ee;
  --line-strong: #a7afbf;
  --teal: #4156ff;
  --teal-dark: #3348f2;
  --uhero-blue: #4156ff;
  --blue: #4156ff;
  --amber: #a7afbf;
  --amber-soft: #e9eeff;
  --shadow: 0 22px 70px rgba(27, 31, 45, 0.10);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(27, 31, 45, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(27, 31, 45, 0.045) 1px, transparent 1px),
    var(--bg);
  background-size: 44px 44px;
  line-height: 1.45;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(167, 175, 191, 0.34);
  background: rgba(243, 245, 249, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell,
.hero-grid,
.why-section,
.workflow-section,
.prototype-section,
.company-section,
.use-case-section,
.beta-section,
.faq-section,
.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo,
.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.brand-logo {
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(65, 86, 255, 0.18);
}

.brand-mark {
  display: block;
  overflow: visible;
}

.brand-mark-tile {
  fill: #fff;
  filter: drop-shadow(0 12px 18px rgba(65, 86, 255, 0.18));
}

.brand-mark-line {
  fill: none;
  stroke: var(--teal);
  stroke-width: 24;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark-dot {
  fill: var(--teal);
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 16px;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--ink);
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.language-switch button {
  min-width: 40px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  background: var(--teal-dark);
  color: #fff;
}

.nav-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 760;
  font-size: 14px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.nav-button,
.primary-button {
  color: #fff;
  background: var(--teal-dark);
  box-shadow: 0 12px 28px rgba(65, 86, 255, 0.22);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  color: var(--ink);
}

.nav-button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 28px 0 46px;
  border-bottom: 1px solid var(--line);
}

main section[id],
#join {
  scroll-margin-top: 96px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.scene-window {
  position: absolute;
  width: 330px;
  padding: 18px;
  border: 1px solid rgba(16, 20, 19, 0.10);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.scene-window-a {
  left: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 24px;
  transform: rotate(-2deg);
}

.scene-window-b {
  right: max(24px, calc((100vw - var(--max)) / 2));
  top: 92px;
  transform: rotate(2deg);
}

.scene-bar {
  width: 70px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  margin-bottom: 18px;
}

.scene-bar.amber {
  background: var(--amber);
}

.scene-line {
  height: 10px;
  border-radius: 999px;
  background: #dfe6e3;
  margin-top: 12px;
  width: 74%;
}

.scene-line.wide {
  width: 94%;
}

.scene-line.short {
  width: 48%;
}

.scene-meter {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 54px;
}

.scene-meter span {
  width: 10px;
  border-radius: 999px;
  background: var(--blue);
}

.scene-meter span:nth-child(1) { height: 18px; }
.scene-meter span:nth-child(2) { height: 42px; }
.scene-meter span:nth-child(3) { height: 28px; }
.scene-meter span:nth-child(4) { height: 50px; }
.scene-meter span:nth-child(5) { height: 24px; }

.scene-caption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 440px);
  gap: 42px;
  align-items: start;
}

.hero-copy {
  padding: 52px 0 0;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 770px;
  margin-bottom: 24px;
  font-size: 64px;
  line-height: 0.96;
  font-weight: 880;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 12px;
  color: #36413d;
  font-size: 21px;
}

.brand-note {
  display: inline-flex;
  max-width: 650px;
  margin: 0 0 22px;
  padding: 9px 11px;
  border: 1px solid rgba(65, 86, 255, 0.20);
  border-radius: var(--radius);
  background: rgba(65, 86, 255, 0.07);
  color: #3348F2;
  font-size: 13px;
  font-weight: 760;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  min-height: 82px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.hero-points strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 13px;
}

.hero-points span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 0;
}

.hero-facts div {
  min-height: 76px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.hero-facts dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-size: 14px;
  font-weight: 760;
}

.local-proof {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 760px;
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius);
  background: #1B1F2D;
  color: #fff;
  box-shadow: var(--shadow);
}

.proof-meter {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 7px;
  min-height: 108px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.proof-meter span {
  width: 10px;
  border-radius: 999px;
  background: var(--amber-soft);
}

.proof-meter span:nth-child(1) { height: 26px; }
.proof-meter span:nth-child(2) { height: 62px; }
.proof-meter span:nth-child(3) { height: 42px; background: #8db7d8; }
.proof-meter span:nth-child(4) { height: 78px; }
.proof-meter span:nth-child(5) { height: 34px; background: #8db7d8; }

.local-proof p {
  margin: 0 0 6px;
  color: var(--amber-soft);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.local-proof h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
}

.local-proof ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.signup-panel {
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.panel-header {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}

.panel-header h2 {
  margin-bottom: 6px;
  font-size: 25px;
  line-height: 1.08;
}

.panel-header p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.field-label,
.choice-group legend {
  display: block;
  color: #26302c;
  font-size: 13px;
  font-weight: 800;
}

.field-label span {
  color: var(--muted);
  font-weight: 600;
}

.form-intent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 10px;
  padding: 9px 11px;
  border: 1px solid rgba(65, 86, 255, 0.18);
  border-radius: var(--radius);
  background: #f5faf7;
}

.form-intent p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intent-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.intent-chips span {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border: 1px solid rgba(65, 86, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #33413c;
  font-size: 11px;
  font-weight: 760;
}

.field-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 9px 0 5px;
}

.field-note,
.choice-group legend small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  text-align: right;
}

input[type="text"],
select,
textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 9px 12px;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="text"]:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(65, 86, 255, 0.14);
}

input[type="text"][aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #a33a2a;
  box-shadow: 0 0 0 3px rgba(163, 58, 42, 0.12);
}

.choice-group {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 12px 0 0;
  border: 0;
}

.choice-group.inline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.choice-group legend {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  grid-column: 1 / -1;
}

.choice-group label {
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 34px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-muted);
  font-size: 12px;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.choice-group label:has(input:checked) {
  border-color: rgba(65, 86, 255, 0.48);
  background: rgba(65, 86, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(65, 86, 255, 0.08);
}

.choice-group label:has(input:focus-visible) {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(65, 86, 255, 0.14);
}

.choice-group.is-invalid label {
  border-color: rgba(163, 58, 42, 0.44);
  background: #fff7f4;
}

.choice-group.is-invalid input {
  border-color: #a33a2a;
}

.choice-group label span {
  min-width: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.choice-group input {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  place-content: center;
  width: 15px;
  height: 15px;
  margin: 0;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.choice-group input::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  transform: scale(0);
  transition: transform 120ms ease;
}

.choice-group input:checked {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}

.choice-group input:checked::before {
  transform: scale(1);
}

.choice-group input:focus-visible {
  outline: none;
}

.optional-context {
  margin-top: 12px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(238, 242, 240, 0.64);
}

.optional-context summary {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  cursor: pointer;
  color: #26302c;
  font-size: 13px;
  font-weight: 800;
}

.optional-context[open] {
  padding: 0 12px 12px;
}

.optional-context[open] summary {
  margin: 0 -12px 2px;
  border-bottom: 1px solid var(--line);
}

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

.form-submit {
  width: 100%;
  margin-top: 14px;
  border: 0;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status.success {
  color: var(--teal);
}

.form-status.error {
  color: #a33a2a;
}

.why-section,
.workflow-section,
.prototype-section,
.company-section,
.use-case-section,
.beta-section,
.faq-section {
  padding: 92px 0;
}

.company-section {
  padding-top: 28px;
}

.company-panel {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(65, 86, 255, 0.20);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 48px rgba(12, 21, 18, 0.06);
}

.company-logo-card {
  min-height: 108px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.company-logo {
  width: 112px;
  max-height: 86px;
  object-fit: contain;
}

.company-copy .eyebrow {
  margin-bottom: 8px;
}

.company-copy h2 {
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.05;
}

.company-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.company-facts {
  display: grid;
  gap: 8px;
  margin: 0;
}

.company-facts div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-muted);
}

.company-facts dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.company-facts dd {
  margin: 0;
  font-size: 13px;
  font-weight: 760;
}

.company-facts a {
  color: var(--uhero-blue);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1.02;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.comparison-grid,
.why-point-grid,
.workflow-grid,
.use-case-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

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

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

.comparison-card,
.why-point-grid article,
.workflow-grid article,
.use-case-grid article,
.faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 48px rgba(12, 21, 18, 0.06);
}

.comparison-card {
  padding: 28px;
}

.why-point-grid article {
  min-height: 160px;
  padding: 22px;
}

.why-point-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--blue);
  font-weight: 850;
}

.why-point-grid h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.why-point-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.comparison-card.local {
  background: #0f2f2b;
  color: #fff;
  border-color: #0f2f2b;
}

.comparison-card h3 {
  margin-bottom: 24px;
  font-size: 28px;
}

.comparison-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.comparison-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.comparison-card span {
  color: var(--muted);
}

.comparison-card.local li {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.comparison-card.local span {
  color: rgba(255, 255, 255, 0.72);
}

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

.workflow-grid article,
.use-case-grid article {
  padding: 24px;
}

.workflow-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--blue);
  font-weight: 850;
}

.workflow-grid h3,
.use-case-grid h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.workflow-grid p,
.use-case-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.prototype-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 48px rgba(12, 21, 18, 0.06);
}

.prototype-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.prototype-copy h2 {
  margin-bottom: 12px;
  font-size: 40px;
  line-height: 1.02;
}

.prototype-copy p:not(.eyebrow) {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 17px;
}

.prototype-copy .primary-button {
  margin-top: auto;
}

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

.prototype-steps article {
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-muted);
}

.prototype-steps span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--blue);
  font-weight: 850;
}

.prototype-steps h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.12;
}

.prototype-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.beta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: start;
  padding: 34px;
  border-radius: var(--radius);
  background: #1B1F2D;
  color: #fff;
  box-shadow: var(--shadow);
}

.beta-panel .eyebrow {
  color: var(--amber-soft);
}

.beta-panel h2 {
  margin-bottom: 14px;
  font-size: 42px;
  line-height: 1.02;
}

.beta-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.beta-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.beta-panel dl div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.beta-panel dt {
  margin-bottom: 5px;
  color: var(--amber-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.beta-panel dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.faq-grid details {
  padding: 18px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.privacy-hero-section {
  padding: 68px 0 56px;
  border-bottom: 1px solid var(--line);
}

.privacy-hero-grid,
.privacy-content-section,
.download-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.privacy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 42px;
  align-items: start;
}

.privacy-hero-copy h1 {
  max-width: 760px;
  font-size: 58px;
}

.privacy-principles {
  display: grid;
  gap: 10px;
}

.privacy-principles article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.privacy-principles span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.privacy-principles h2 {
  margin: 5px 0 5px;
  font-size: 18px;
}

.privacy-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.privacy-content-section {
  padding: 76px 0;
}

.language-panel[hidden] {
  display: none;
}

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

.privacy-grid article {
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.privacy-grid h3 {
  margin-bottom: 9px;
  font-size: 18px;
}

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

.privacy-grid a {
  color: var(--teal-dark);
  font-weight: 800;
}

.download-section {
  min-height: calc(100vh - 190px);
  padding: 74px 0 84px;
  border-bottom: 1px solid var(--line);
}

.download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 44px;
  align-items: center;
}

.download-copy h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 58px;
}

.download-button {
  margin-top: 20px;
}

.download-panel {
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.download-icon {
  display: grid;
  place-items: center;
  min-height: 116px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-muted);
}

.download-icon .brand-mark {
  width: 88px;
  height: 88px;
}

.download-meta {
  display: grid;
  gap: 8px;
  margin: 0;
}

.download-meta div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.download-meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.download-meta dd {
  margin: 0;
  font-size: 13px;
  font-weight: 760;
  text-align: right;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  color: var(--ink);
  margin-bottom: 8px;
}

.site-footer p {
  margin: 0;
}

.footer-company {
  margin-top: 5px !important;
  font-size: 12px;
}

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

.footer-links a {
  color: var(--teal-dark);
  font-weight: 800;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 56px;
  }

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

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

  .hero-facts,
  .hero-points {
    grid-template-columns: 1fr;
  }

  .local-proof {
    max-width: 620px;
  }

  .section-heading,
  .comparison-grid,
  .why-point-grid,
  .prototype-panel,
  .company-panel,
  .beta-panel,
  .privacy-hero-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .workflow-grid,
  .why-point-grid,
  .prototype-steps,
  .use-case-grid,
  .faq-grid,
  .privacy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-shell,
  .hero-grid,
  .privacy-hero-grid,
  .privacy-content-section,
  .download-grid,
  .why-section,
  .workflow-section,
  .prototype-section,
  .company-section,
  .use-case-section,
  .beta-section,
  .faq-section,
  .site-footer {
    width: min(100% - 32px, var(--max));
  }

  .nav-shell {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-button {
    display: none;
  }

  .hero-section {
    padding: 42px 0 58px;
  }

  .privacy-hero-section {
    padding: 48px 0 48px;
  }

  .download-section {
    padding: 48px 0 58px;
  }

  .hero-backdrop {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .privacy-hero-copy h1 {
    font-size: 40px;
  }

  .download-copy h1 {
    font-size: 40px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-copy {
    padding-top: 0;
  }

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

  .proof-meter {
    min-height: 78px;
  }

  .form-intent {
    align-items: flex-start;
    flex-direction: column;
  }

  .intent-chips {
    justify-content: flex-start;
  }

  .field-row,
  .choice-group legend {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .field-note,
  .choice-group legend small {
    text-align: left;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .why-section,
  .workflow-section,
  .prototype-section,
  .company-section,
  .use-case-section,
  .beta-section,
  .faq-section {
    padding: 64px 0;
  }

  .workflow-grid,
  .why-point-grid,
  .prototype-steps,
  .use-case-grid,
  .faq-grid,
  .privacy-grid,
  .choice-group.inline,
  .choice-group.multi {
    grid-template-columns: 1fr;
  }

  .signup-panel,
  .comparison-card,
  .why-point-grid article,
  .workflow-grid article,
  .prototype-panel,
  .company-panel,
  .download-panel,
  .prototype-steps article,
  .use-case-grid article,
  .beta-panel,
  .privacy-grid article {
    padding: 20px;
  }

  .prototype-copy h2 {
    font-size: 32px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
