:root {
  --bg: #0b1116;
  --deep: #080d11;
  --surface: #121a20;
  --soft: #182128;
  --line: rgba(244, 239, 229, 0.1);
  --text: #f4efe5;
  --muted: #c8c3b8;
  --quiet: #939d99;
  --gold: #d4b06a;
  --ice: #8db5ca;
  --amber: #c99a58;
  --content-max: 1120px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--deep);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  width: min(var(--content-max), calc(100% - 36px));
  margin: 28px auto 0;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.site-header.simple {
  position: static;
  transform: none;
  width: min(var(--content-max), calc(100% - 32px));
  margin: 18px auto 0;
}

.site-header.simple .site-nav {
  background: rgba(8, 13, 17, 0.72);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark,
.phone-header b,
.form-head b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  font-weight: 950;
  font-size: 13px;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1;
}

.eyebrow {
  display: block;
  margin: 0;
  color: var(--quiet);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.gold {
  color: var(--gold);
}

.eyebrow + h1,
.eyebrow + h2,
.eyebrow + h3 {
  margin-top: 10px;
}

.site-nav,
.footer nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.site-header .site-nav {
  gap: 4px;
  border: 1px solid rgba(244, 239, 229, 0.1);
  border-radius: 999px;
  background: rgba(8, 13, 17, 0.42);
  padding: 5px;
  backdrop-filter: blur(18px);
}

.site-header .site-nav a {
  display: grid;
  place-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 13px;
}

.nav-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 14px;
  background: rgba(244, 239, 229, 0.08);
  color: var(--text);
}

.site-header .nav-button {
  min-height: 34px;
  padding: 0 14px;
  background: rgba(244, 239, 229, 0.12);
}

.language-menu {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(244, 239, 229, 0.08);
  padding: 0 10px;
  color: var(--text);
}

.language-menu select {
  width: auto;
  min-width: 58px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  padding: 0;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  outline: none;
  cursor: pointer;
}

.language-menu option {
  background: var(--surface);
  color: var(--text);
}

.footer-language {
  min-height: 32px;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
}

.hero picture,
.hero img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 13, 17, 0.94) 0%, rgba(8, 13, 17, 0.74) 52%, rgba(8, 13, 17, 0.38) 100%),
    linear-gradient(180deg, rgba(8, 13, 17, 0.3) 0%, rgba(8, 13, 17, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 92svh;
  display: grid;
  align-content: center;
  width: min(var(--content-max), calc(100% - 32px));
  padding: 158px 0 92px;
  margin: 0 auto;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  font-size: clamp(40px, 6.1vw, 66px);
  line-height: 0.99;
}

h2 {
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
}

.hero-copy,
.section p,
.footer p,
.request-intro p {
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.62;
}

.hero-copy {
  max-width: 520px;
  margin: 28px 0 0;
}

.chip-row,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-row {
  margin-top: 34px;
}

.chip-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  padding: 8px 12px;
  font-size: 13px;
}

.hero-loop-mobile {
  display: none;
}

.cta-row {
  margin-top: 40px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 158px;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 920;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  background: var(--text);
  color: var(--bg);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(244, 239, 229, 0.08);
  color: var(--text);
}

.section {
  padding: 58px clamp(16px, 5vw, 64px);
  background: var(--deep);
}

.section:nth-of-type(odd) {
  background: var(--bg);
}

.split,
.visual-band,
.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

#how-it-works.split {
  align-items: center;
}

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

.steps article {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.feature-system {
  display: grid;
  gap: 28px;
}

.section-head.compact {
  align-items: end;
}

.loop-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 50%, rgba(212, 176, 106, 0.14), transparent 24%),
    radial-gradient(circle at 88% 50%, rgba(141, 181, 202, 0.13), transparent 26%),
    rgba(244, 239, 229, 0.035);
}

.loop-strip::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 176, 106, 0.46), rgba(141, 181, 202, 0.48), transparent);
  transform: translateY(-50%);
}

.loop-strip::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 18px;
  top: 50%;
  width: 90px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--ice), transparent);
  box-shadow: 0 0 24px rgba(141, 181, 202, 0.38);
  transform: translate(-120%, -50%);
  animation: workflow-signal 5.8s ease-in-out infinite;
}

.loop-strip span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  place-items: center;
  min-height: 38px;
  border: 1px solid rgba(244, 239, 229, 0.1);
  border-radius: 8px;
  background: rgba(16, 23, 29, 0.88);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.loop-strip span::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(212, 176, 106, 0.08);
}

.loop-strip span:nth-child(2)::before,
.loop-strip span:nth-child(4)::before {
  background: var(--ice);
  box-shadow: 0 0 0 5px rgba(141, 181, 202, 0.08);
}

.loop-strip span:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 176, 106, 0.36);
  background: rgba(21, 31, 39, 0.95);
}

.mobile-loop-summary {
  display: none;
}

@keyframes workflow-signal {
  0% {
    transform: translate(-120%, -50%);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  100% {
    transform: translate(calc(1120px - 20px), -50%);
    opacity: 0;
  }
}

.feature-grid,
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 12px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.feature-grid.connected {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid.connected::before {
  content: none;
}

.feature-grid article,
.phone-card,
.request-card,
.request-photo-grid div {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #131d24 0%, #10171d 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.feature-grid article {
  position: relative;
  min-height: 0;
  padding: 12px;
}

.feature-grid.connected article {
  display: grid;
  grid-template-rows: auto auto auto auto minmax(96px, 1fr) auto;
  align-content: start;
  min-height: 455px;
  padding: 14px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(19, 29, 36, 0.96) 0%, rgba(13, 20, 26, 0.98) 100%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-grid.connected article:not(:last-child)::after {
  content: none;
}

.feature-grid.connected article:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 176, 106, 0.28);
  background:
    linear-gradient(180deg, rgba(22, 34, 42, 0.98) 0%, rgba(13, 20, 26, 1) 100%);
}

.step-badge {
  position: static;
  display: inline-grid;
  place-items: center;
  justify-self: start;
  min-width: 34px;
  height: 24px;
  margin-bottom: 12px;
  border: 1px solid rgba(212, 176, 106, 0.5);
  border-radius: 999px;
  background: rgba(212, 176, 106, 0.08);
  color: var(--gold);
  font-size: 10px;
  font-weight: 950;
}

.feature-grid article img {
  width: 100%;
  aspect-ratio: 1 / 0.62;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
  margin-bottom: 16px;
  filter: saturate(0.9) contrast(1.02);
}

.feature-grid article h3 {
  font-size: 18px;
  line-height: 1.18;
}

.feature-grid p {
  font-size: 14px;
}

.feature-grid.connected article > p:not(.eyebrow) {
  margin-bottom: 0;
}

.feature-grid small {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  align-self: end;
  margin-top: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ice);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
}

.feature-grid small::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 0 5px rgba(141, 181, 202, 0.07);
  flex: 0 0 auto;
}

.visual-band {
  align-items: center;
}

.visual-band > div:first-child {
  max-width: 520px;
}

.photo-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.photo-collage figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.photo-collage figure:nth-child(3) {
  grid-column: 1 / span 2;
  min-height: 210px;
}

.photo-collage img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}

.photo-collage figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 13, 17, 0.68);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 850;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 30px;
}

.section-head p {
  max-width: 280px;
  font-size: 13px;
}

.phone-card {
  border-radius: 18px;
  padding: 18px;
  min-height: 360px;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 22px;
}

.phone-header small {
  display: block;
  color: var(--quiet);
  font-weight: 850;
  font-size: 11px;
  margin-bottom: 4px;
}

.phone-header strong {
  color: var(--ice);
  font-size: 24px;
}

.mock-hero {
  display: grid;
  align-content: end;
  min-height: 130px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(141, 181, 202, 0.18), rgba(8, 13, 17, 0.82));
}

.mock-hero span,
.quote {
  font-size: 18px;
  font-weight: 900;
}

.mock-hero em {
  color: var(--muted);
  font-style: normal;
  margin-top: 6px;
}

.mock-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.mock-list span {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 239, 229, 0.05);
}

.mock-photo {
  width: 100%;
  height: 106px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.thumb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.thumb-grid img,
.thumb-grid div {
  aspect-ratio: 1 / 0.82;
  border: 1px solid var(--line);
  border-radius: 10px;
  object-fit: cover;
  background: var(--soft);
}

.thumb-grid div {
  display: grid;
  align-items: end;
  padding: 14px;
  font-weight: 900;
}

.quote {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.35;
}

.bars {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.bars span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
}

.bars span:nth-child(2) {
  background: var(--ice);
}

.bars span:nth-child(3) {
  background: var(--amber);
}

.line-chart {
  height: 112px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(145deg, transparent 48%, rgba(141, 181, 202, 0.5) 49%, rgba(141, 181, 202, 0.5) 51%, transparent 52%),
    linear-gradient(20deg, transparent 58%, rgba(212, 176, 106, 0.55) 59%, rgba(212, 176, 106, 0.55) 61%, transparent 62%);
}

.app-preview-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.84fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.app-shot-stage {
  position: relative;
  min-height: 610px;
}

.app-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 229, 0.14);
  border-radius: 22px;
  background: #090f14;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.app-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: saturate(0.9) contrast(1.02);
}

.app-shot figcaption {
  display: none;
}

.primary-shot {
  position: relative;
  z-index: 3;
  width: min(360px, 78%);
  height: 560px;
}

.secondary-shot,
.tertiary-shot {
  position: absolute;
  width: min(270px, 56%);
  height: 410px;
  opacity: 0.72;
}

.secondary-shot {
  right: 2%;
  top: 42px;
  z-index: 2;
}

.tertiary-shot {
  right: 16%;
  bottom: 0;
  z-index: 1;
  opacity: 0.5;
}

.feature-accordion {
  display: grid;
  border-top: 1px solid var(--line);
}

.feature-accordion details {
  border-bottom: 1px solid var(--line);
}

.feature-accordion summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  list-style: none;
  cursor: pointer;
}

.feature-accordion summary::-webkit-details-marker {
  display: none;
}

.feature-accordion summary span {
  color: var(--text);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 900;
  line-height: 1.12;
}

.feature-accordion summary b {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(244, 239, 229, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(141, 181, 202, 0.12), transparent 58%),
    rgba(244, 239, 229, 0.03);
  color: transparent;
  font-size: 0;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-accordion summary b::before,
.feature-accordion summary b::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.feature-accordion summary b::after {
  transform: rotate(90deg);
}

.feature-accordion details[open] summary b {
  border-color: rgba(141, 181, 202, 0.42);
  background:
    radial-gradient(circle at 50% 50%, rgba(141, 181, 202, 0.2), transparent 58%),
    rgba(244, 239, 229, 0.08);
  transform: rotate(45deg);
}

.feature-accordion p {
  max-width: 560px;
  margin: -4px 50px 22px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(8, 13, 17, 0.72), rgba(8, 13, 17, 0.92)),
    url("/images/progress-review.png") center / cover;
}

.final-cta > * {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta h2 {
  font-size: clamp(36px, 5.1vw, 62px);
  line-height: 1.08;
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 20px;
  color: var(--text);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

.cta-proof {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.cta-proof span {
  border: 1px solid rgba(244, 239, 229, 0.14);
  border-radius: 999px;
  background: rgba(8, 13, 17, 0.54);
  color: var(--muted);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 850;
}

.final-cta .cta-row {
  margin-top: 30px;
}

.center {
  justify-content: center;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--deep);
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: max(18px, calc((100% - var(--content-max)) / 2));
  padding-right: max(18px, calc((100% - var(--content-max)) / 2));
}

.footer p {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 800;
}

.request-page {
  background:
    radial-gradient(circle at 20% 0%, rgba(141, 181, 202, 0.12), transparent 32%),
    var(--deep);
}

.request-layout {
  padding: clamp(28px, 5vw, 68px) 0 72px;
}

.request-intro h1 {
  max-width: 560px;
  font-size: clamp(36px, 4.6vw, 54px);
  line-height: 1.08;
  overflow-wrap: normal;
  text-wrap: balance;
}

.request-photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  margin-top: 26px;
}

.request-photo-grid img,
.request-photo-grid div {
  border-radius: 10px;
  border: 1px solid var(--line);
}

.request-photo-grid img {
  width: 100%;
  height: 100%;
  max-height: 330px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.request-photo-grid img:first-child {
  grid-row: span 2;
}

.request-photo-grid div {
  display: grid;
  align-content: space-between;
  min-height: 132px;
  padding: 16px;
}

.request-photo-grid strong {
  font-size: 20px;
  line-height: 1.25;
}

.lead-capture {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(244, 239, 229, 0.04);
  padding: 14px;
}

.lead-capture label {
  margin: 0;
}

.lead-capture span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.request-card {
  padding: clamp(20px, 4vw, 36px);
}

.form-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-head h2 {
  font-size: 26px;
}

form {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.intake-rest[hidden] {
  display: none;
}

.intake-rest {
  display: grid;
  gap: 18px;
  padding-top: 8px;
}

fieldset {
  display: grid;
  gap: 14px;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(244, 239, 229, 0.1);
  border-radius: 10px;
  padding: 16px;
}

legend {
  padding: 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.form-grid {
  display: grid;
  gap: 12px;
}

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

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

.field-help {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.5;
}

.intake-explainer {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(204, 173, 104, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(204, 173, 104, 0.1), transparent 46%),
    rgba(244, 239, 229, 0.04);
  padding: clamp(18px, 3vw, 24px);
}

.intake-explainer h3 {
  max-width: 620px;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
}

.intake-explainer p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

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

.form-actions .button {
  width: auto;
}

.save-status {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--ice);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

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

.choice-grid label,
.check-row {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(244, 239, 229, 0.1);
  border-radius: 8px;
  background: rgba(8, 13, 17, 0.44);
  padding: 10px 11px;
  color: var(--muted);
}

.choice-grid input,
.check-row input {
  width: auto;
  flex: 0 0 auto;
  accent-color: var(--gold);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 13, 17, 0.72);
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
  font-weight: 760;
  outline: none;
}

textarea {
  min-height: 138px;
  resize: vertical;
  line-height: 1.5;
}

input[type="file"] {
  padding: 11px;
}

.footer.compact {
  padding-top: 22px;
  padding-bottom: 22px;
}

@media (max-width: 1100px) {
  .feature-grid.connected {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid.connected article {
    min-height: 430px;
  }
}

@media (max-width: 900px) {
  .footer,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    gap: 18px;
    padding-inline: 18px;
  }

  .site-nav,
  .footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .split,
  .visual-band,
  .request-layout,
  .app-preview-showcase {
    grid-template-columns: 1fr;
  }

  #how-it-works.split {
    align-items: start;
  }

  .section-head p {
    max-width: 560px;
  }

  .section-head.compact {
    align-items: flex-start;
  }

  .app-shot-stage {
    min-height: 520px;
  }

  .primary-shot {
    height: 500px;
  }

  .secondary-shot,
  .tertiary-shot {
    height: 350px;
  }

}

@media (max-width: 700px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 0;
    gap: 10px;
    border-radius: 0;
  }

  .brand-mark,
  .phone-header b,
  .form-head b {
    width: 36px;
    height: 36px;
    border-radius: 7px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand .eyebrow {
    display: none;
  }

  .site-nav {
    width: auto;
    margin-left: auto;
    display: flex;
    gap: 0;
    font-size: 12px;
    padding: 4px;
  }

  .site-header .site-nav a {
    display: none;
  }

  .site-header .site-nav .language-menu {
    display: inline-flex;
    min-height: 36px;
    padding-inline: 10px;
  }

  .site-header .site-nav .nav-button {
    display: grid;
    place-items: center;
    min-height: 36px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 13px;
    background: rgba(244, 239, 229, 0.11);
    color: var(--text);
    white-space: nowrap;
  }

  .nav-button {
    padding: 0 13px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 42px;
    background: var(--deep);
  }

  .hero picture {
    inset: 0 0 auto;
    height: 58%;
    min-height: 430px;
  }

  .hero img {
    object-position: 64% 0;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 13, 17, 0.22) 0%, rgba(8, 13, 17, 0.62) 36%, rgba(8, 13, 17, 0.96) 74%, #080d11 100%),
      linear-gradient(90deg, rgba(8, 13, 17, 0.92) 0%, rgba(8, 13, 17, 0.56) 68%, rgba(8, 13, 17, 0.34) 100%);
  }

  .hero-content {
    min-height: auto;
    width: min(390px, calc(100% - 40px));
    margin: 0 auto;
    padding: 172px 0 0;
    align-content: start;
  }

  .hero h1 {
    max-width: 380px;
    font-size: clamp(34px, 8.6vw, 39px);
    line-height: 1.14;
  }

  .hero-copy {
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.6;
  }

  .chip-row {
    display: none;
  }

  .hero-loop-mobile {
    display: block;
    margin: 28px 0 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 13px 0;
    color: var(--ice);
    font-size: 14px;
    font-weight: 850;
    line-height: 1.4;
  }

  .cta-row {
    margin-top: 34px;
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .final-cta {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .final-cta .eyebrow {
    margin-bottom: 16px;
  }

  .final-cta h2 {
    max-width: 360px;
    font-size: clamp(32px, 9.4vw, 40px);
    line-height: 1.16;
  }

  .final-cta p:not(.eyebrow) {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.58;
  }

  .cta-proof {
    margin-top: 30px;
  }

  .final-cta .cta-row {
    margin-top: 36px;
  }

  .photo-collage,
  .request-photo-grid,
  .feature-grid.connected {
    grid-template-columns: 1fr;
  }

  .request-layout {
    gap: 24px;
    padding-top: 18px;
    padding-bottom: 48px;
  }

  .request-intro h1 {
    max-width: 370px;
    font-size: clamp(32px, 8.5vw, 38px);
    line-height: 1.08;
  }

  .request-intro p:not(.eyebrow) {
    max-width: 360px;
    font-size: 16px;
    line-height: 1.55;
  }

  .request-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .request-photo-grid img {
    max-height: 138px;
    aspect-ratio: 1.2;
  }

  .request-photo-grid div {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 12px;
  }

  .request-photo-grid strong {
    font-size: 16px;
  }

  .lead-capture span,
  .form-grid.two,
  .form-grid.three,
  .choice-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-grid.connected article {
    min-height: auto;
  }

  .loop-strip {
    display: none;
  }

  .mobile-loop-summary {
    display: block;
    width: min(100%, calc(100% - 32px));
    margin: -4px auto 8px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
    color: var(--ice);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.45;
    text-align: center;
  }

  .app-shot-stage {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .primary-shot {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    width: 100%;
    height: min(520px, 112vw);
    opacity: 1;
  }

  .secondary-shot,
  .tertiary-shot {
    position: relative;
    inset: auto;
    width: 100%;
    height: 148px;
    opacity: 1;
    border-radius: 14px;
  }

  .secondary-shot img,
  .tertiary-shot img {
    object-position: top;
    filter: saturate(0.88) contrast(1.02) brightness(0.84);
  }

  .app-shot figcaption {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 2;
    display: block;
    border: 1px solid rgba(244, 239, 229, 0.16);
    border-radius: 999px;
    background: rgba(8, 13, 17, 0.72);
    color: var(--text);
    padding: 6px 9px;
    font-size: 11px;
    font-weight: 900;
  }

  .feature-accordion summary {
    grid-template-columns: minmax(0, 1fr) 32px;
    padding: 16px 0;
  }

  .feature-accordion summary span {
    font-size: 20px;
  }

  .feature-accordion summary b {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .feature-accordion p {
    margin-right: 0;
  }

  .photo-collage figure:nth-child(3),
  .request-photo-grid img:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .phone-card {
    min-height: auto;
  }

  .footer {
    gap: 16px;
  }

  .footer nav {
    gap: 12px;
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .loop-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@keyframes workflow-signal-vertical {
  0% {
    transform: translate(-50%, -120%);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 260px);
    opacity: 0;
  }
}

@keyframes workflow-signal-mobile {
  0% {
    transform: translate(-120%, -50%);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  100% {
    transform: translate(560px, -50%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loop-strip::after {
    animation: none;
    opacity: 0.55;
    transform: translate(-50%, -50%);
  }

  .loop-strip span {
    transition: none;
  }
}
