:root {
  color-scheme: light;
  --bg: #f5f5f6;
  --bg-raise: #ffffff;
  --card: #ffffff;
  --line: rgba(0, 0, 0, 0.1);
  --text: #2a2a2e;
  --muted: #6b6b72;
  --faint: #8a8a93;
  --accent: #468cff;
  --accent-soft: rgba(70, 140, 255, 0.45);
  --ink: #1a1a1e;
  --paper: #f0f0f2;
  --paper-2: #ffffff;
  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --sans: "Segoe UI", system-ui, sans-serif;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  --header: 5.1rem;
  --glow-blue: 0 0 0 1px rgba(70, 140, 255, 0.35), 0 0 14px rgba(70, 140, 255, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(70, 140, 255, 0.06), transparent 55%),
    radial-gradient(700px 380px at -10% 20%, rgba(0, 0, 0, 0.03), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 40%, #ececee 100%);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.55;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

::selection {
  background: rgba(70, 140, 255, 0.25);
  color: var(--ink);
}

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  z-index: 20;
}

.skip:focus {
  top: 0.8rem;
}

.wrap {
  width: min(1120px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.kicker {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.check-kicker {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 100%;
  padding: 0.18rem 0.5rem 0.18rem 0.32rem;
  border: 1px solid rgba(46, 125, 90, 0.18);
  border-radius: 999px;
  background: rgba(46, 125, 90, 0.06);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b746f;
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1;
}

.live-dot-wrap {
  position: relative;
  width: 0.55rem;
  height: 0.55rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.live-dot {
  position: relative;
  z-index: 1;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #2f9e6f;
  box-shadow: 0 0 0 2px rgba(47, 158, 111, 0.14);
}

.live-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.42rem;
  height: 0.42rem;
  margin: -0.21rem 0 0 -0.21rem;
  border-radius: 50%;
  border: 1.5px solid rgba(47, 158, 111, 0.45);
  box-sizing: border-box;
  pointer-events: none;
  transform: scale(1);
  opacity: 0;
}

.live-badge[data-state="idle"] .live-dot {
  animation: live-breathe 2.6s ease-in-out infinite;
}

.live-badge[data-state="idle"] .live-ring {
  animation: live-ping 2.6s ease-out infinite;
}

.live-badge[data-state="running"] .live-dot {
  animation: live-pulse 0.75s ease-in-out infinite;
}

.live-badge[data-state="running"] .live-ring {
  animation: live-ping-fast 0.75s ease-out infinite;
  border-color: rgba(47, 158, 111, 0.55);
}

.live-badge[data-state="running"] .live-label {
  color: #4a5550;
}

@keyframes live-breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.78;
  }
}

@keyframes live-ping {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  70% {
    transform: scale(2.6);
    opacity: 0;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

@keyframes live-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }
}

@keyframes live-ping-fast {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

h1,
h2,
.serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
}

h1 {
  margin: 0;
  font-size: clamp(3.3rem, 7.4vw, 6.35rem);
  line-height: 0.88;
}

h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.4vw, 3.55rem);
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.lede,
.sub {
  color: var(--muted);
}

.accent {
  color: var(--ink);
}

.rule {
  width: 4.2rem;
  height: 3px;
  margin: 1.35rem 0 0;
  background: var(--text);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  width: min(1180px, calc(100% - 2rem));
}

.logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.logo-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.22rem;
  line-height: 1;
}

.logo-d {
  width: 2.05rem;
  height: 2.05rem;
  color: var(--ink);
  display: block;
}

.logo-d-accent {
  color: var(--accent);
  fill: var(--accent);
}

.logo-word {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-indent: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}

.mark {
  font-family: var(--serif);
  font-size: 1.85rem;
  line-height: 1;
}

.logo strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  font-weight: 650;
}

.logo small {
  display: block;
  margin-top: 0.12rem;
  color: var(--faint);
  letter-spacing: 0.12em;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-links .header-cta {
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
}

.nav-links .nav-check {
  margin-left: 0.15rem;
}

.nav-links .nav-ask {
  margin-left: 0.15rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links a.btn-secondary {
  color: var(--ink);
}

.nav-links a.btn-primary {
  color: #fff;
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.15rem;
  background: var(--ink);
  color: #fff;
  font-weight: 650;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background: #3a3a40;
}

.btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.btn.ghost,
.btn-secondary {
  background: #f3f3f5;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn.ghost:hover,
.btn-secondary:hover {
  background: #ececee;
  color: var(--ink);
}

.btn-primary {
  background: #3d6fbf;
  color: #fff;
  box-shadow: 0 6px 16px rgba(61, 111, 191, 0.18);
}

.btn-primary:hover {
  background: #345fa5;
  color: #fff;
}

.btn-primary:focus-visible {
  outline: 2px solid #3d6fbf;
  outline-offset: 3px;
}

.btn.dark {
  background: var(--ink);
  color: #fff;
}

.btn.dark:hover {
  background: #3a3a40;
}

section {
  scroll-margin-top: calc(var(--header) + 1rem);
}

.hero {
  padding: 4.8rem 0 3.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  margin: 0 0 1.4rem;
  color: var(--faint);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 1.35rem 0 0;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  background: var(--bg-raise);
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #3ddc97;
  box-shadow: 0 0 0 4px rgba(61, 220, 151, 0.12);
}

.hero-copy {
  max-width: 38rem;
  margin: 1.1rem 0 0;
  font-size: 1.08rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 40rem;
}

.facts li {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.facts strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.98rem;
}

.facts span {
  color: var(--muted);
  font-size: 0.9rem;
}

.check-card {
  background: linear-gradient(180deg, #ffffff, #f3f3f5);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.check-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  margin-bottom: 0.55rem;
}

.check-card .sub {
  margin: 0 0 1rem;
}

.check-well {
  background: var(--paper);
  color: var(--ink);
  border-radius: 16px;
  padding: 0.95rem;
}

.check-well p {
  margin: 0;
}

.well-label {
  margin-bottom: 0.7rem !important;
  color: #6b6b72;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.check-row {
  display: flex;
  gap: 0.5rem;
}

.check-row input,
.field input,
.field textarea,
.field select,
.search {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #d4d4d8;
  background: var(--paper-2);
  color: var(--ink);
  padding: 0.82rem 1rem;
}

.field textarea {
  border-radius: 16px;
  min-height: 7.5rem;
  resize: vertical;
}

.hint {
  margin: 0.7rem 0 0;
  color: #6b6b72;
  font-size: 0.84rem;
}

.example {
  margin: 0.45rem 0 0;
  color: #8a8a93;
  font-size: 0.8rem;
}

.check-result {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid #dcdce0;
}

.check-result h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}

.check-score {
  margin: 0.4rem 0 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(70, 140, 255, 0.35);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(70, 140, 255, 0.08), rgba(255, 255, 255, 0.9));
  text-align: center;
}

.check-score-label {
  margin: 0 !important;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.check-score-value {
  margin: 0.25rem 0 0.2rem !important;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 8vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.check-score[data-band="high"] .check-score-value {
  color: #2f6fad;
}

.check-score[data-band="mid"] .check-score-value {
  color: #3a5f9a;
}

.check-score[data-band="low"] .check-score-value {
  color: var(--ink);
}

.check-score-unit {
  margin-left: 0.1rem;
  font-size: 0.55em;
  color: var(--accent);
}

.check-score-detail {
  margin: 0.35rem 0 0 !important;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.check-score-note {
  margin: 0.45rem 0 0 !important;
  color: var(--faint);
  font-size: 0.78rem;
  line-height: 1.4;
}

.check-message {
  margin: 0 0 0.8rem !important;
  color: #8a3b2a;
  font-size: 0.9rem;
}

.check-resolved {
  margin: 0 0 0.75rem !important;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  background: rgba(70, 140, 255, 0.08);
  border: 1px solid rgba(70, 140, 255, 0.28);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
}

.check-group {
  margin-bottom: 0.85rem;
}

.check-group-title {
  margin: 0 0 0.35rem !important;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.check-list {
  margin: 0.2rem 0 0.4rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.45rem;
  padding: 0.42rem 0;
  border-top: 1px solid #e4e4e8;
  color: var(--ink);
  font-size: 0.9rem;
}

.check-list li:first-child {
  border-top: 0;
}

.check-list strong {
  font-weight: 650;
  color: var(--text);
}

.check-list .is-ok strong::before,
.check-list .is-miss strong::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.4rem;
  border-radius: 50%;
  vertical-align: 0.05em;
}

.check-list .is-ok strong::before {
  background: #3a9a6a;
}

.check-list .is-miss strong::before {
  background: #b07a2a;
}

.check-status {
  margin: 0.7rem 0 0 !important;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
}

.check-error {
  margin: 0 0 0.9rem;
  color: #8a3b2a;
  font-size: 0.92rem;
}

.check-optional {
  margin-top: 0.75rem;
}

.check-optional input {
  border-radius: 999px;
}

.band {
  padding: 5rem 0;
}

.band.alt {
  background: rgba(0, 0, 0, 0.025);
  border-block: 1px solid var(--line);
}

.close-band {
  padding-bottom: 5.5rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

.section-head p:last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.module-intro {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.module-intro li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.num {
  font-family: var(--serif);
  color: var(--muted);
  font-size: 1.15rem;
}

.path,
.steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.path li,
.steps li {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 0.4rem 1rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

.path strong,
.steps strong {
  display: block;
  margin-bottom: 0.2rem;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.steps li {
  display: block;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-raise);
  cursor: default;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.approval-layout {
  display: grid;
  grid-template-columns: 1fr minmax(16rem, 22rem);
  gap: 2.5rem;
  align-items: center;
}

.phone {
  justify-self: center;
  width: min(100%, 22rem);
  min-height: 34rem;
  padding: 0.85rem 0.85rem 1.1rem;
  border-radius: 2rem;
  background: #1c1c1f;
  color: #f4f1ea;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.phone-bar {
  display: flex;
  justify-content: center;
  padding-top: 0.15rem;
}

.phone-bar span {
  width: 4.2rem;
  height: 0.28rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.phone-note {
  display: grid;
  gap: 0.1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(244, 241, 234, 0.72);
}

.phone-note strong {
  color: #fff;
  font-size: 0.95rem;
}

.phone-note-app {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8eb6ff;
}

.phone-post {
  margin-top: 0.35rem;
  padding: 0.95rem;
  border-radius: 1.15rem;
  background: #f6f3ee;
  color: #1a1a1e;
  transition: transform 0.55s ease, opacity 0.45s ease;
}

.phone-post.is-live {
  transform: translateY(-1.4rem);
  opacity: 0;
  pointer-events: none;
}

.phone-post-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.55rem;
  align-items: center;
}

.phone-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1a1a1e;
  color: #fff;
  font-size: 0.85rem;
}

.phone-meta,
.phone-copy {
  color: #5c5c64;
}

.phone-meta {
  display: block;
  font-size: 0.75rem;
}

.phone-stamp {
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  background: #ffe8df;
  color: #9a3412;
  font-size: 0.68rem;
  font-weight: 700;
}

.phone-stamp.is-live {
  background: #e5f6ee;
  color: #146c43;
}

.phone-copy {
  margin: 0.8rem 0 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.phone-change {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.8rem;
  font-size: 0.8rem;
}

.phone-change input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0.7rem;
  padding: 0.55rem 0.7rem;
  font: inherit;
  color: #1a1a1e;
  background: #fff;
}

.phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.phone-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.62rem 0.7rem;
  background: #2f6fed;
  color: #fff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 650;
  cursor: pointer;
}

.phone-btn-ghost {
  background: transparent;
  color: #1a1a1e;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.phone-live {
  margin: 0.4rem 0 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  color: #fff;
}

.phone-live.is-in {
  animation: phone-live-in 0.45s ease;
}

.phone-reset {
  align-self: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}

@keyframes phone-live-in {
  from {
    opacity: 0;
    transform: translateY(0.4rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.steps-wrap {
  display: grid;
  gap: 1rem;
}

.steps-guide {
  display: grid;
  gap: 0.55rem;
}

.steps-guide-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.steps-guide-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f9e6e, #468cff 55%, #6b5ce7);
  transition: width 0.4s ease;
}

.steps-guide-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.steps-guide-pct {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.steps-wrap[data-step="1"] .steps li:nth-child(1),
.steps-wrap[data-step="2"] .steps li:nth-child(-n + 2),
.steps-wrap[data-step="3"] .steps li:nth-child(-n + 3),
.steps-wrap[data-step="4"] .steps li:nth-child(-n + 4) {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  background: color-mix(in srgb, var(--accent) 6%, #fff);
}

.steps-wrap[data-step="1"] .steps li:nth-child(1),
.steps-wrap[data-step="2"] .steps li:nth-child(2),
.steps-wrap[data-step="3"] .steps li:nth-child(3),
.steps-wrap[data-step="4"] .steps li:nth-child(4) {
  box-shadow: 0 10px 24px rgba(70, 140, 255, 0.1);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.card,
.price,
.mock {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
}

.card,
.price {
  padding: 1.35rem 1.25rem 1.4rem;
}

.service-cards .card {
  --service: #468cff;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.service-cards .card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: var(--service);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-cards .card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: var(--service);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.45s ease;
  transform: scale(0.6);
}

.service-phone {
  --service: #2f9e6e;
}

.service-google {
  --service: #468cff;
}

.service-social {
  --service: #6b5ce7;
}

.service-cards .card:hover,
.service-cards .card:focus-within {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--service) 45%, var(--line));
  background: color-mix(in srgb, var(--service) 7%, #fff);
  box-shadow: 0 16px 36px color-mix(in srgb, var(--service) 18%, rgba(0, 0, 0, 0.06));
}

.service-cards .card:hover::before,
.service-cards .card:focus-within::before {
  transform: scaleX(1);
}

.service-cards .card:hover::after,
.service-cards .card:focus-within::after {
  opacity: 0.12;
  transform: scale(1);
}

.service-cards .card:hover .num,
.service-cards .card:focus-within .num,
.service-cards .card:hover h3,
.service-cards .card:focus-within h3 {
  color: var(--service);
}

.service-cards .card .num,
.service-cards .card h3 {
  transition: color 0.3s ease;
}

.service-cards .card .num {
  margin: 0 0 0.85rem;
}

.service-cards .card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.55rem;
}

.service-cards .card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.mock {
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}

.mock-screen {
  margin: 0.9rem;
  padding: 0.95rem;
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  min-height: 11.5rem;
}

.mock-body {
  padding: 0.3rem 1.15rem 1.25rem;
  flex: 1;
}

.mock-body h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0.35rem 0 0.4rem;
}

.mock-body .sub {
  margin: 0;
}

.mock-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.g-top,
.phone-top,
.post-top {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.78rem;
  color: #6b6b72;
}

.g-name,
.phone-name {
  margin: 0.55rem 0 0.15rem;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.stars {
  color: #c9a227;
  letter-spacing: 0.08em;
}

.chip-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.8rem;
}

.chip,
.tag {
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  background: #e8e8ec;
  font-size: 0.75rem;
}

.stamp {
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  background: #e8f0ff;
  color: #2f5fad;
  font-size: 0.72rem;
  font-weight: 700;
}

.post-text {
  margin: 0.8rem 0 0;
  font-size: 0.92rem;
}

.price-layout .section-head {
  margin-bottom: 2rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}

.price-label {
  margin: 0;
  color: var(--faint);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price h3 {
  margin: 0.35rem 0;
  font-family: var(--serif);
  font-size: 1.7rem;
}

.price p {
  color: var(--muted);
  margin: 0 0 1.1rem;
}

.price .btn {
  margin-top: auto;
}

.price {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}

.price.featured {
  border-color: rgba(70, 140, 255, 0.45);
  box-shadow: var(--glow-blue);
  background: linear-gradient(180deg, #ffffff, #f4f7ff);
}

.builder-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 1rem;
}

.search,
.toolbar select {
  background: var(--bg-raise);
  color: var(--text);
  border: 1px solid var(--line);
  max-width: 28rem;
}

.group {
  margin-bottom: 1.15rem;
}

.group h3 {
  margin-bottom: 0.25rem;
}

.group > p {
  margin-top: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.modules {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.module label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0.9rem;
  border: 1px solid #d4d4d8;
  border-radius: 18px;
  background: var(--bg-raise);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.module label:hover {
  border-color: rgba(70, 140, 255, 0.45);
  box-shadow: var(--glow-blue);
}

.module input {
  margin-top: 0.3rem;
  accent-color: var(--accent);
}

.module:has(input:checked) label {
  border-color: rgba(70, 140, 255, 0.65);
  background: rgba(70, 140, 255, 0.05);
  box-shadow: var(--glow-blue);
}

.module-title {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-weight: 650;
}

.badge {
  border-radius: 999px;
  padding: 0.1rem 0.45rem;
  background: #ececf0;
  color: #5a5a62;
  font-size: 0.72rem;
  font-weight: 650;
}

.module-desc,
.module-effect {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.summary {
  position: sticky;
  top: calc(var(--header) + 1rem);
  padding: 1.1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.summary h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.summary ul {
  margin: 0.8rem 0;
  padding-left: 1.1rem;
}

.summary li + li {
  margin-top: 0.35rem;
}

.empty-note {
  color: var(--muted);
}

.note-under {
  margin: 1.1rem 0 0.85rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.4rem;
  align-items: start;
}

.contact-copy .sub {
  max-width: 28rem;
}

.contact-points {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.contact-points li {
  padding: 0.75rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-weight: 550;
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}

.field span {
  font-size: 0.88rem;
}

.field .optional {
  color: var(--muted);
  font-weight: 400;
}

.field .pflicht {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.82em;
}

.service-pick {
  margin: 0 0 0.8rem;
  padding: 0;
  border: 0;
  min-inline-size: 0;
}

.service-pick legend {
  padding: 0;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
}

.service-pick-hint {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.service-options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.service-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.7rem 0.8rem;
  border: 1px solid #d4d4d8;
  border-radius: 14px;
  background: #fafafa;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.service-option:hover {
  border-color: rgba(70, 140, 255, 0.4);
}

.service-option:has(input:checked) {
  border-color: rgba(70, 140, 255, 0.65);
  background: rgba(70, 140, 255, 0.07);
  box-shadow: 0 0 0 1px rgba(70, 140, 255, 0.2);
}

.service-option input {
  margin: 0;
  accent-color: var(--accent);
}

.service-option span {
  font-size: 0.95rem;
  font-weight: 550;
}

.contact-panel {
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.contact-panel input,
.contact-panel textarea {
  background: #fafafa;
  color: var(--text);
  border-color: #d4d4d8;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  margin: 0.2rem 0 0.9rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.consent a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.3rem;
  margin: 0.7rem 0 0;
  color: #9a3412;
  font-size: 0.92rem;
}

.contact-panel input.is-invalid,
.contact-panel textarea.is-invalid {
  border-color: #c24141;
  box-shadow: 0 0 0 1px #c24141;
}

.service-pick.is-invalid {
  border: 1px solid #c24141;
  border-radius: 14px;
  padding: 0.65rem 0.7rem;
}

.consent.is-invalid {
  border: 1px solid #c24141;
  border-radius: 14px;
  padding: 0.55rem 0.65rem;
}

.ready {
  margin-top: 1rem;
  padding: 0.9rem;
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
}

.ready p {
  margin-top: 0;
}

.ready textarea {
  width: 100%;
  min-height: 9rem;
  border-radius: 12px;
  border: 1px solid #d4d4d8;
  padding: 0.7rem;
  background: var(--paper-2);
  color: var(--ink);
}

.site-footer {
  padding: 2.4rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand strong {
  display: block;
  color: var(--text);
  letter-spacing: 0.16em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.1rem;
  max-width: 28rem;
  justify-content: flex-start;
  align-items: center;
}

.footer-links a {
  font-size: 0.88rem;
  line-height: 1.5;
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-links-quiet {
  max-width: 36rem;
  gap: 0.2rem 0.75rem;
}

.footer-links-quiet a {
  font-size: 0.75rem;
  line-height: 1.45;
  min-height: 1.65rem;
  color: rgba(120, 128, 140, 0.95);
}

.footer-links-quiet a:hover {
  color: var(--ink);
}

.legal-index {
  list-style: none;
  padding-left: 0;
  margin: 1.2rem 0 0;
}

.legal-index li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  max-width: 42rem;
}

.legal-index li:last-child {
  border-bottom: none;
}

.legal-index a {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.legal-index a:hover {
  text-decoration: underline;
}

.legal {
  padding: 3.5rem 0 4rem;
}

.legal h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.legal h2 {
  font-size: 1.6rem;
  margin: 2rem 0 0.6rem;
}

.legal h3 {
  font-size: 1.15rem;
  margin: 1.4rem 0 0.45rem;
}

.legal p,
.legal li {
  color: var(--muted);
  max-width: 42rem;
}

.legal ul,
.legal ol {
  max-width: 42rem;
  padding-left: 1.2rem;
}

.legal li + li {
  margin-top: 0.35rem;
}

.legal a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-draft {
  max-width: 42rem;
  margin: 0 0 1.4rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(70, 140, 255, 0.35);
  border-radius: 14px;
  background: rgba(70, 140, 255, 0.06);
  color: var(--text);
  font-size: 0.95rem;
}

.legal-nav {
  margin-top: 2.5rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .cards,
  .steps,
  .builder-layout,
  .contact-grid,
  .price-grid,
  .approval-layout,
  .facts {
    grid-template-columns: 1fr;
  }

  .facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .summary {
    position: static;
  }

  .steps li {
    padding-inline: 0;
    border: 0;
    border-radius: 0;
    border-top: 1px solid var(--line);
    background: transparent;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    padding: 1rem 1.2rem 1.2rem;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }

.nav-links.open {
  display: flex;
}

.nav-links.open .header-cta {
  display: inline-flex;
}

  .header-cta {
    display: none;
  }

  .check-row {
    flex-direction: column;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }
}

/* Cinematic first-visit intro (index only) */
.cinema-intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  background:
    radial-gradient(ellipse 60% 40% at 50% 42%, rgba(70, 140, 255, 0.12), transparent 70%),
    linear-gradient(180deg, #fafafa 0%, #f0f0f2 55%, #eaeaec 100%);
  opacity: 1;
  transition: opacity 0.45s ease;
  pointer-events: auto;
}

.cinema-intro.is-on {
  display: grid;
}

.cinema-intro[hidden] {
  display: none !important;
  pointer-events: none !important;
}

.cinema-intro.is-leaving {
  opacity: 0;
  pointer-events: none !important;
}

.cinema-stage {
  text-align: center;
  padding: 1.5rem;
}

.cinema-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.cinema-d {
  width: clamp(4.2rem, 14vw, 6.2rem);
  height: clamp(4.2rem, 14vw, 6.2rem);
  color: var(--ink);
  opacity: 0;
  transform: scale(0.94);
  filter: drop-shadow(0 0 10px rgba(70, 140, 255, 0.22));
  animation: cinema-mark-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.cinema-mark {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(0.82rem, 2.4vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  opacity: 0;
  transform: translateY(0.35rem);
  animation: cinema-line-in 0.4s ease 0.28s forwards;
}

.cinema-line {
  margin: 1.25rem 0 0;
  font-family: var(--sans);
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
  opacity: 0;
  transform: translateY(0.4rem);
  animation: cinema-line-in 0.4s ease 0.55s forwards;
}

.cinema-skip {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 2;
  margin: 0;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.cinema-skip:hover {
  color: var(--ink);
  border-color: rgba(70, 140, 255, 0.45);
}

@keyframes cinema-mark-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cinema-line-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.cinema-active {
  overflow: hidden;
}

/* Briefly hide page chrome until the inline intro script takes over (or safety timeout). */
html.cinema-pending body > :not(#cinema-intro):not(script) {
  visibility: hidden;
}

html.cinema-pending #cinema-intro,
html.cinema-pending #cinema-intro[hidden] {
  display: grid !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .service-cards .card,
  .service-cards .card::before,
  .service-cards .card::after,
  .service-cards .card .num,
  .service-cards .card h3 {
    transition: none;
  }

  .service-cards .card:hover,
  .service-cards .card:focus-within {
    transform: none;
  }

  .steps-guide-fill,
  .steps li,
  .phone-post {
    transition: none;
  }

  .phone-live.is-in {
    animation: none;
  }

  .module label {
    transition: none;
  }

  .live-badge .live-dot,
  .live-badge .live-ring,
  .live-badge[data-state="idle"] .live-dot,
  .live-badge[data-state="idle"] .live-ring,
  .live-badge[data-state="running"] .live-dot,
  .live-badge[data-state="running"] .live-ring {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .live-badge .live-ring {
    opacity: 0 !important;
  }

  .live-badge .live-dot {
    box-shadow: 0 0 0 2px rgba(47, 158, 111, 0.14);
  }

  .cinema-intro,
  html.cinema-pending #cinema-intro,
  html.cinema-pending #cinema-intro[hidden] {
    display: none !important;
  }

  html.cinema-pending body > :not(#cinema-intro):not(script) {
    visibility: visible;
  }
}
