:root {
  color-scheme: dark;
  --bg: #060409;
  --bg-lift: #0d0814;
  --panel: #120d19;
  --panel-strong: #191021;
  --ink: #fbfaf7;
  --muted: #afa8b8;
  --soft: #ded9e8;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.24);
  --paper: #f7f3ea;
  --paper-panel: #fffaf1;
  --paper-ink: #09070c;
  --paper-muted: #625b67;
  --violet: #a875ff;
  --violet-soft: #d8c4ff;
  --cyan: #46d8c1;
  --copper: #d6a76c;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.light-document {
  background: var(--paper);
  color: var(--paper-ink);
}

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

a {
  color: inherit;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

body.light-document p,
body.light-document li {
  color: var(--paper-muted);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 50;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 4px;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 4, 9, 0.86);
  backdrop-filter: blur(18px);
}

.light-document .site-header {
  background: rgba(247, 243, 234, 0.9);
  border-bottom-color: rgba(9, 7, 12, 0.13);
}

.nav-shell,
.container,
.footer-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 32px;
  border: 1px solid currentColor;
  border-radius: 3px;
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1;
}

.brand-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.light-document .brand-label {
  color: var(--paper-muted);
}

.site-nav,
.tab-strip,
.footer-links,
.button-row,
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.tab-strip {
  margin-top: 24px;
}

.site-nav {
  justify-content: flex-end;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.language-switcher a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 48px;
  height: 30px;
  padding: 0 7px;
  border-radius: 4px;
  color: var(--muted);
  text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a:focus-visible,
.language-switcher a[aria-current="page"] {
  color: var(--ink);
  background: rgba(168, 117, 255, 0.18);
  outline: none;
}

.language-switcher img {
  width: 22px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1px;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
}

.language-switcher em {
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}

.light-document .language-switcher {
  border-color: rgba(9, 7, 12, 0.14);
  background: rgba(9, 7, 12, 0.025);
}

.light-document .language-switcher a {
  color: var(--paper-muted);
}

.light-document .language-switcher a:hover,
.light-document .language-switcher a:focus-visible,
.light-document .language-switcher a[aria-current="page"] {
  color: var(--paper-ink);
  background: rgba(168, 117, 255, 0.16);
}

.language-switcher-floating {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 30;
  background: rgba(6, 4, 9, 0.88);
  backdrop-filter: blur(14px);
}

.site-nav a,
.tab-strip a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 5px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover,
.site-nav a:focus-visible,
.tab-strip a[aria-current="page"],
.tab-strip a:hover,
.tab-strip a:focus-visible {
  color: var(--ink);
  background: rgba(168, 117, 255, 0.16);
  outline: none;
}

.light-document .site-nav a,
.light-document .tab-strip a {
  color: var(--paper-muted);
}

.light-document .site-nav a[aria-current="page"],
.light-document .site-nav a:hover,
.light-document .site-nav a:focus-visible,
.light-document .tab-strip a[aria-current="page"],
.light-document .tab-strip a:hover,
.light-document .tab-strip a:focus-visible {
  color: var(--paper-ink);
  background: rgba(168, 117, 255, 0.14);
}

.hero {
  position: relative;
  min-height: 70svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(6, 4, 9, 0.98) 0%, rgba(14, 8, 22, 0.92) 44%, rgba(34, 14, 48, 0.72) 100%),
    radial-gradient(circle at 72% 18%, rgba(168, 117, 255, 0.2), transparent 36%),
    var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 72px 0 0 auto;
  width: min(52vw, 620px);
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.045)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 82px);
  opacity: 0.9;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 4, 9, 0.34) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(840px, calc(100% - 32px));
  padding: 76px 0 58px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--violet-soft);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.light-band .section-kicker,
.light-document .section-kicker {
  color: #6d42b7;
}

.hero-title {
  margin: 0;
  max-width: 860px;
  font-size: clamp(2.75rem, 6.7vw, 6.25rem);
  line-height: 1.04;
  font-weight: 950;
}

.page-title {
  margin: 0;
  max-width: 960px;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.94;
  font-weight: 950;
}

.split .page-title {
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
}

.document-title {
  margin: 0;
  max-width: 940px;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 0.96;
  font-weight: 950;
}

.lead {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--soft);
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
  line-height: 1.56;
}

.light-band .lead,
.light-document .lead {
  color: var(--paper-muted);
}

.hero-actions,
.button-row {
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 920;
  text-align: center;
  text-decoration: none;
}

.button.primary {
  color: #10091c;
  background: var(--ink);
  border-color: var(--ink);
}

.button.dark {
  color: var(--paper);
  background: var(--paper-ink);
  border-color: var(--paper-ink);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.band {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

.band.compact {
  padding: 42px 0 56px;
}

.light-band {
  background: var(--paper);
  color: var(--paper-ink);
  border-bottom-color: rgba(9, 7, 12, 0.12);
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head h2,
.split-copy h2,
.legal-card h2,
.document-section h2,
.feature-card h3,
.app-tile h3 {
  margin: 0;
  color: inherit;
}

.section-head h2,
.split-copy h2 {
  font-size: clamp(1.9rem, 4.6vw, 4.1rem);
  line-height: 1;
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 1.04fr) minmax(0, 0.96fr);
}

.split.reverse .split-copy {
  order: 2;
}

.split-copy {
  min-width: 0;
}

.project-intro {
  align-items: stretch;
}

.home-tabs,
.feature-grid,
.legal-grid,
.readiness-grid {
  display: grid;
  gap: 12px;
}

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

.feature-grid,
.legal-grid,
.readiness-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.feature-card,
.legal-card,
.app-tile,
.source-card,
.status-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel);
  padding: 22px;
}

.light-band .feature-card,
.light-band .legal-card,
.light-band .app-tile,
.light-band .source-card,
.light-band .status-card,
.light-document .feature-card,
.light-document .legal-card,
.light-document .app-tile,
.light-document .source-card,
.light-document .status-card {
  background: var(--paper-panel);
  border-color: rgba(9, 7, 12, 0.14);
}

.feature-card h3,
.legal-card h2,
.app-tile h3,
.source-card h3,
.status-card h3 {
  font-size: 1.08rem;
  line-height: 1.3;
}

.feature-card p,
.legal-card p,
.app-tile p,
.source-card p,
.status-card p {
  margin-bottom: 0;
}

.accent-line {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 16px;
  background: var(--violet);
}

.feature-card:nth-child(2) .accent-line,
.legal-card:nth-child(2) .accent-line,
.status-card:nth-child(2) .accent-line {
  background: var(--cyan);
}

.feature-card:nth-child(3) .accent-line,
.legal-card:nth-child(3) .accent-line,
.status-card:nth-child(3) .accent-line {
  background: var(--copper);
}

.home-tab {
  display: grid;
  min-height: 170px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 22px;
  background: rgba(18, 13, 25, 0.78);
  text-decoration: none;
}

.home-tab strong {
  display: block;
  font-size: 1.18rem;
}

.home-tab span {
  color: var(--muted);
  line-height: 1.55;
}

.home-tab em {
  color: var(--violet-soft);
  font-style: normal;
  font-weight: 950;
}

.brief-panel {
  min-height: 100%;
  display: grid;
  gap: 24px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.brief-logo {
  width: min(100%, 340px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.brief-steps {
  display: grid;
  gap: 18px;
}

.brief-steps div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2px 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.brief-steps span {
  grid-row: span 2;
  color: var(--violet-soft);
  font-size: 0.78rem;
  font-weight: 950;
}

.brief-steps strong {
  font-size: 1.05rem;
}

.brief-steps p {
  margin: 0;
}

.app-visual {
  position: relative;
  min-height: 520px;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.phone-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #120d19;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
}

.phone-shot.offset {
  margin-top: 52px;
}

.phone-shot img {
  width: 100%;
  height: auto;
}

.app-tile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.app-tile .button-row {
  margin-top: 0;
  justify-content: flex-end;
}

.work-visual {
  position: relative;
  min-height: 520px;
}

.identity-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-content: center;
  justify-self: end;
  width: min(100%, 500px);
  min-height: 340px;
}

.identity-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-content: center;
  gap: 22px;
  min-height: 136px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
  color: inherit;
  padding: 22px 24px;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.identity-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
}

.tazz-identity::before {
  background:
    radial-gradient(circle at 50% 26%, rgba(239, 45, 50, 0.2), transparent 34%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.26));
}

.question-identity::before {
  background:
    radial-gradient(circle at 50% 28%, rgba(168, 117, 255, 0.28), transparent 36%),
    radial-gradient(circle at 68% 68%, rgba(70, 216, 193, 0.14), transparent 34%);
}

.identity-tile span,
.identity-tile img,
.identity-tile strong {
  position: relative;
  z-index: 1;
}

.identity-tile span {
  display: grid;
  gap: 6px;
  min-width: 118px;
  color: var(--muted);
  text-decoration: none;
}

.identity-tile strong {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1;
}

.identity-tile em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.identity-logo {
  flex: 0 1 auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.tazz-logo {
  width: min(48%, 210px);
}

.question-identity img {
  width: 88px;
  border-radius: 31%;
  box-shadow: 0 22px 64px rgba(168, 117, 255, 0.28);
}

.browser-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #09070c;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.browser-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--line-strong);
}

.browser-preview > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.browser-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-top: 1px solid var(--line);
}

.browser-caption img {
  width: min(42%, 168px);
  height: auto;
}

.browser-caption span {
  color: var(--muted);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.mini-phone-preview {
  position: absolute;
  right: 28px;
  bottom: -24px;
  width: min(33%, 180px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #120d19;
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.38);
}

.mini-phone-preview img {
  width: 100%;
  height: auto;
}

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

.case-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(9, 7, 12, 0.14);
  border-radius: 7px;
  background: var(--paper-panel);
}

.case-media {
  display: block;
  overflow: hidden;
  background: #09070c;
  text-decoration: none;
}

.case-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.phone-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.icon-media {
  display: grid;
  min-height: 280px;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 26%, rgba(168, 117, 255, 0.22), transparent 38%),
    linear-gradient(145deg, #171020, #0d0814);
}

.icon-media img {
  width: min(42%, 172px);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 31%;
  box-shadow: 0 22px 64px rgba(168, 117, 255, 0.28);
}

.icon-media span {
  color: var(--ink);
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  font-weight: 950;
  line-height: 1;
}

.case-card:hover .case-media img {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.025);
}

.case-copy {
  display: grid;
  align-content: start;
  padding: 24px;
}

.case-copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  line-height: 0.98;
}

.case-copy p {
  margin-bottom: 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(9, 7, 12, 0.13);
  border-radius: 999px;
  background: #fffdf8;
  color: var(--paper-muted);
  padding: 0 11px;
  font-size: 0.78rem;
  font-weight: 900;
}

.auto-case .section-kicker,
.auto-hero .section-kicker,
.auto-car-card span {
  color: #d94743;
}

.case-hero {
  overflow: hidden;
}

.auto-hero {
  background:
    linear-gradient(115deg, rgba(6, 4, 9, 0.98), rgba(24, 14, 15, 0.94) 55%, rgba(62, 17, 19, 0.42)),
    var(--bg);
}

.auto-showpiece {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #111;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.auto-logo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.auto-logo-strip img {
  width: min(48%, 190px);
  height: auto;
}

.auto-logo-strip span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.auto-hero-car {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

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

.metric-strip span {
  display: grid;
  gap: 4px;
  min-height: 86px;
  align-content: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.metric-strip span:last-child {
  border-right: 0;
}

.metric-strip strong {
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.9;
}

.auto-car-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.auto-car-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel);
}

.auto-car-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.auto-car-card div {
  padding: 18px;
}

.auto-car-card span {
  display: block;
  margin-bottom: 9px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.auto-car-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.22;
}

.auto-car-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

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

.sold-mini-grid figure {
  margin: 0;
}

.sold-mini-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(9, 7, 12, 0.14);
  border-radius: 7px;
  background: #09070c;
}

.sold-mini-grid figcaption {
  margin-top: 9px;
  color: var(--paper-muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.gallery figure {
  min-width: 180px;
  margin: 0;
}

.gallery img {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #120d19;
}

.gallery figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.light-band .gallery figcaption {
  color: var(--paper-muted);
}

.legal-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.legal-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel);
  text-decoration: none;
}

.light-band .legal-link,
.light-document .legal-link {
  background: var(--paper-panel);
  border-color: rgba(9, 7, 12, 0.14);
}

.legal-link strong {
  display: block;
  font-size: 1.05rem;
}

.legal-link span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
}

.light-band .legal-link span,
.light-document .legal-link span {
  color: var(--paper-muted);
}

.legal-link em {
  color: var(--violet);
  font-style: normal;
  font-weight: 950;
}

.document-hero {
  padding: 70px 0 46px;
  border-bottom: 1px solid rgba(9, 7, 12, 0.12);
}

.document-shell {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 76px;
}

.document-meta {
  margin-top: 18px;
  color: var(--paper-muted);
  line-height: 1.7;
}

.document-section {
  padding: 26px 0;
  border-bottom: 1px solid rgba(9, 7, 12, 0.12);
}

.document-section h2 {
  font-size: clamp(1.35rem, 3vw, 1.95rem);
  line-height: 1.18;
}

.document-section ul {
  padding-left: 22px;
}

.document-section li {
  margin: 10px 0;
}

.notice {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(9, 7, 12, 0.16);
  border-radius: 7px;
  background: var(--paper-panel);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--violet);
}

.url-box {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.url-box code {
  display: block;
  overflow-wrap: anywhere;
  padding: 14px;
  border: 1px solid rgba(9, 7, 12, 0.14);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--paper-ink);
}

.delete-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.project-form {
  display: grid;
  gap: 24px;
  border: 1px solid rgba(9, 7, 12, 0.14);
  border-radius: 7px;
  background: var(--paper-panel);
  padding: clamp(18px, 3vw, 30px);
}

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

.form-field {
  min-width: 0;
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
  color: var(--paper-ink);
  font-weight: 900;
}

.form-field.span-2,
.terms-consent.span-2 {
  grid-column: 1 / -1;
}

.form-field legend {
  padding: 0;
  color: var(--paper-ink);
  font-weight: 900;
}

.delete-form label {
  display: grid;
  gap: 7px;
  color: var(--paper-ink);
  font-weight: 900;
}

.delete-form input,
.delete-form textarea,
.form-field input:not([type="checkbox"]),
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(9, 7, 12, 0.18);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--paper-ink);
  font: inherit;
  padding: 13px 14px;
}

.delete-form textarea,
.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

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

.choice-grid label {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(9, 7, 12, 0.14);
  border-radius: 6px;
  background: #fffdf8;
  padding: 0 12px;
  color: var(--paper-muted);
  font-weight: 850;
}

.choice-grid input {
  width: 16px;
  height: 16px;
  accent-color: #6d42b7;
}

.terms-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(9, 7, 12, 0.14);
  border-radius: 6px;
  background: #fffdf8;
  padding: 14px;
  color: var(--paper-muted);
  font-weight: 850;
  line-height: 1.55;
}

.terms-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: #6d42b7;
}

.terms-consent a {
  color: #56309c;
  font-weight: 950;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.delete-form button {
  width: fit-content;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  background: var(--paper-ink);
  color: var(--paper);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.form-actions button {
  width: fit-content;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  background: var(--paper-ink);
  color: var(--paper);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

#request-status {
  min-height: 24px;
  color: var(--paper-muted);
  font-weight: 800;
}

#brief-status {
  min-height: 24px;
  margin: 0;
  color: var(--paper-muted);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: var(--bg);
}

.light-document .site-footer {
  background: var(--paper);
  border-top-color: rgba(9, 7, 12, 0.12);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
}

.light-document .footer-shell {
  color: var(--paper-muted);
}

.footer-links a {
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav-shell {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .site-nav {
    justify-content: flex-start;
    padding-right: 106px;
  }

  .language-switcher {
    position: absolute;
    top: 14px;
    right: 0;
  }

  .hero {
    min-height: 64svh;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(6, 4, 9, 0.1), rgba(6, 4, 9, 0.42));
  }

  .hero::before {
    width: 100%;
    opacity: 0.36;
  }

  .home-tabs,
  .feature-grid,
  .legal-grid,
  .readiness-grid,
  .case-grid,
  .auto-car-grid,
  .split,
  .split.reverse,
  .app-tile,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field.span-2,
  .terms-consent.span-2 {
    grid-column: auto;
  }

  .split.reverse .split-copy {
    order: 0;
  }

  .app-visual {
    min-height: 0;
  }

  .work-visual {
    min-height: 0;
    padding-bottom: 24px;
  }

  .identity-preview {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .identity-tile {
    min-height: 128px;
  }

  .mini-phone-preview {
    right: 18px;
    width: min(34%, 150px);
  }

  .app-tile .button-row {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-nav a,
  .tab-strip a {
    padding: 0 8px;
    font-size: 0.85rem;
  }

  .brand-label {
    display: none;
  }

  .site-nav {
    padding-right: 0;
  }

  .hero-content {
    padding: 42px 0 34px;
  }

  .hero-title {
    font-size: clamp(2.45rem, 11.2vw, 3.75rem);
    line-height: 1.08;
  }

  .page-title {
    font-size: clamp(2.75rem, 15vw, 4.7rem);
  }

  .document-title {
    font-size: clamp(2.2rem, 12vw, 4rem);
  }

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

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

  .phone-shot.offset {
    margin-top: 0;
  }

  .browser-caption,
  .auto-logo-strip,
  .metric-strip,
  .sold-mini-grid {
    grid-template-columns: 1fr;
  }

  .browser-caption,
  .auto-logo-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .browser-caption img,
  .auto-logo-strip img {
    width: min(76%, 188px);
  }

  .mini-phone-preview {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(74%, 220px);
    margin: 14px auto 0;
  }

  .identity-tile {
    min-height: 116px;
    gap: 16px;
    padding: 18px;
  }

  .tazz-logo {
    width: min(48%, 170px);
  }

  .question-identity img {
    width: 74px;
  }

  .icon-media img {
    width: min(48%, 140px);
  }

  .icon-media {
    min-height: 220px;
  }

  .metric-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .band {
    padding: 54px 0;
  }

  .band.compact {
    padding: 32px 0 42px;
  }

  .home-tab {
    min-height: 112px;
    padding: 18px;
  }

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

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

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