:root {
  --ink: #17211c;
  --muted: #57645d;
  --line: #d7e3dc;
  --line-strong: #bfd4c9;
  --paper: #f5f8f5;
  --paper-strong: #eef5f0;
  --white: #ffffff;
  --green: #146b4d;
  --green-dark: #0d4936;
  --green-soft: #e7f2eb;
  --teal: #167784;
  --amber: #c77d16;
  --red: #b63f34;
  --blue-gray: #314d63;
  --shadow: 0 22px 58px rgba(23, 33, 28, 0.14);
  --shadow-soft: 0 14px 34px rgba(23, 33, 28, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfdfc 0, var(--paper) 540px, #f0f6f2 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(251, 253, 252, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(23, 33, 28, 0.055);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  font-weight: 800;
  text-decoration: none;
  color: #15231b;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #1d8260);
  border-radius: var(--radius);
  font-size: 0.8rem;
  box-shadow: 0 9px 18px rgba(20, 107, 77, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 4px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(23, 33, 28, 0.055);
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav a:hover {
  color: var(--green-dark);
  background: rgba(20, 107, 77, 0.08);
}

.nav .nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 8px 18px rgba(20, 107, 77, 0.22);
}

.nav .nav-cta:hover {
  color: var(--white);
  background: var(--green-dark);
  transform: translateY(-1px);
}

.header-spacer {
  justify-self: end;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 88px clamp(18px, 5vw, 76px);
  overflow: hidden;
  background: #dfece5;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(245, 248, 245, 0.94) 0%, rgba(245, 248, 245, 0.78) 42%, rgba(245, 248, 245, 0.12) 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(13, 73, 54, 0.08));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(247, 250, 248, 0), var(--paper));
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 107, 77, 0.105) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20, 107, 77, 0.105) 1px, transparent 1px),
    linear-gradient(135deg, rgba(22, 119, 132, 0.12), rgba(255, 255, 255, 0) 46%),
    #dce8e1;
  background-size: 88px 88px, 88px 88px, auto;
}

.map-grid::before,
.map-grid::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(49, 77, 99, 0.34);
  border-radius: 48% 52% 56% 44%;
}

.map-grid::before {
  width: 560px;
  height: 380px;
  right: 8%;
  top: 14%;
  transform: rotate(-12deg);
}

.map-grid::after {
  width: 460px;
  height: 310px;
  left: 14%;
  bottom: 16%;
  transform: rotate(18deg);
}

.zone,
.source-pin {
  position: absolute;
  display: block;
}

.zone {
  border: 2px solid;
  border-radius: 999px;
}

.zone-watch {
  width: 260px;
  height: 170px;
  right: 22%;
  top: 22%;
  border-color: rgba(199, 125, 22, 0.72);
  background: rgba(199, 125, 22, 0.12);
}

.zone-alert {
  width: 190px;
  height: 130px;
  right: 9%;
  bottom: 26%;
  border-color: rgba(182, 63, 52, 0.72);
  background: rgba(182, 63, 52, 0.12);
}

.zone-clear {
  width: 220px;
  height: 150px;
  left: 18%;
  top: 18%;
  border-color: rgba(20, 107, 77, 0.55);
  background: rgba(20, 107, 77, 0.1);
}

.source-pin {
  width: 16px;
  height: 16px;
  background: var(--green);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(20, 107, 77, 0.16);
}

.pin-one {
  right: 30%;
  top: 33%;
}

.pin-two {
  right: 15%;
  bottom: 35%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(182, 63, 52, 0.16);
}

.pin-three {
  left: 26%;
  top: 29%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(22, 119, 132, 0.16);
}

.phone-preview {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 7vw, 108px);
  bottom: 64px;
  width: min(348px, 42vw);
  min-height: 430px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 33, 28, 0.13);
  border-radius: 26px;
  box-shadow: 0 34px 80px rgba(23, 33, 28, 0.2);
}

.phone-preview::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(20, 107, 77, 0.08);
  border-radius: 19px;
  pointer-events: none;
}

.phone-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

.phone-bar span:first-child {
  width: 72px;
  height: 8px;
  border-radius: 999px;
  background: #c8d4cd;
}

.phone-bar span:last-child {
  width: 42px;
  height: 8px;
  border-radius: 999px;
  background: #c8d4cd;
}

.status-label {
  color: var(--muted);
  font-size: 0.86rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  margin: 12px 0 22px;
  padding: 14px;
  color: #684008;
  background: linear-gradient(180deg, #f8e5bc, #f1d49a);
  border: 1px solid #d9a44e;
  border-radius: var(--radius);
  font-weight: 800;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.preview-row strong {
  color: var(--ink);
  text-align: right;
}

.preview-alert {
  margin-top: 22px;
  padding: 14px;
  color: var(--blue-gray);
  background: linear-gradient(180deg, #edf5f7, #dfecef);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  font-size: 0.94rem;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 6px 14px;
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--green-soft);
  border: 1px solid rgba(20, 107, 77, 0.2);
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(20, 107, 77, 0.06);
}

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

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.65rem, 6.9vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.25;
  text-wrap: balance;
}

.problem-grid p,
.steps p,
.feature-list span,
.duty-section p,
.form-copy p,
.split p,
.legal-content p,
.legal-lede {
  text-wrap: pretty;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  font-size: 1.2rem;
  color: #23332b;
  text-wrap: pretty;
}

.hero-copy.secondary {
  margin-top: 14px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 13px 26px rgba(20, 107, 77, 0.24);
}

.button.primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(20, 107, 77, 0.28);
}

.button.secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(20, 107, 77, 0.24);
  box-shadow: 0 10px 20px rgba(23, 33, 28, 0.06);
}

.button.secondary:hover {
  background: var(--white);
}

.button.full {
  width: 100%;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin: 24px 0 0;
}

.trust-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: #24352d;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 107, 77, 0.2);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 750;
  box-shadow: 0 8px 18px rgba(23, 33, 28, 0.07);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.section.narrow {
  width: min(1060px, calc(100% - 36px));
}

.problem-section {
  width: min(1120px, calc(100% - 48px));
  padding-top: 86px;
}

.problem-section h2 {
  max-width: 950px;
}

.section-lede {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.problem-grid article,
.steps article {
  padding: clamp(20px, 2.2vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.problem-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  background: linear-gradient(180deg, #ffffff, #fbfdfc);
  border-top: 4px solid rgba(20, 107, 77, 0.72);
  border-left: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(23, 33, 28, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.problem-card--teal { border-top-color: var(--teal); }
.problem-card--amber { border-top-color: var(--amber); }
.problem-card--red { border-top-color: var(--red); }

.problem-grid article:hover,
.feature-list li:hover,
.steps article:hover,
.duty-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.feature-list li:hover,
.steps article:hover,
.duty-item:hover {
  border-color: var(--line-strong);
}

.problem-grid h3 {
  max-width: 310px;
}

.problem-grid h3,
.problem-grid p,
.steps p {
  margin: 0;
}

.problem-tag {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 28px;
  margin-bottom: 2px;
  color: var(--green-dark);
  background: #e8f2ec;
  border: 1px solid #c3ddcf;
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 850;
}

.problem-grid p,
.steps p,
.feature-list span,
.duty-section p,
.form-copy p,
.thanks-card p {
  color: var(--muted);
}

.split,
.duty-section,
.form-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 7vw, 80px);
  align-items: start;
}

.split {
  align-items: center;
}

.split p,
.duty-section p,
.form-copy p {
  font-size: 1.08rem;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px 20px 24px;
  background: linear-gradient(180deg, var(--white), #fbfdfc);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(23, 33, 28, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.steps-section {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  padding-inline: clamp(18px, 3vw, 34px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(231, 242, 235, 0.62));
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(23, 33, 28, 0.07);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.steps article {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(23, 33, 28, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.steps article h3 {
  margin-bottom: 8px;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-gray), var(--green-dark));
  border-radius: 50%;
  font-weight: 800;
  box-shadow: 0 9px 18px rgba(49, 77, 99, 0.24);
}

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

.duty-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(180deg, var(--white), #fbfdfc);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(23, 33, 28, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.duty-accent {
  flex: 0 0 auto;
  display: block;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(20, 107, 77, 0.14);
}

.form-section {
  align-items: stretch;
  width: min(1180px, calc(100% - 36px));
  padding: 74px clamp(18px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(20, 107, 77, 0.08), rgba(255, 255, 255, 0.82) 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(231, 242, 235, 0.7));
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 52px rgba(23, 33, 28, 0.08);
}

.form-copy {
  align-self: start;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 107, 77, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(23, 33, 28, 0.055);
}

.form-copy h2 {
  max-width: 580px;
  font-size: clamp(2.25rem, 4vw, 4.15rem);
}

.form-copy > p {
  max-width: 620px;
  margin-top: 22px;
}

.waitlist-points {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.waitlist-points span {
  position: relative;
  display: block;
  padding: 13px 14px 13px 40px;
  color: #24352d;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 107, 77, 0.14);
  border-radius: var(--radius);
  font-weight: 760;
  box-shadow: 0 8px 18px rgba(23, 33, 28, 0.04);
}

.waitlist-points span::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  transform: translateY(-50%);
}

.signal-box {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  padding: 18px;
  background: #e8f2ec;
  border: 1px solid #c3ddcf;
  border-radius: var(--radius);
}

.signal-box span {
  color: var(--muted);
}

.waitlist-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 33, 28, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 24px 56px rgba(23, 33, 28, 0.11);
}

label,
fieldset {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

fieldset {
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 8px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fcfefd;
  border: 1px solid #cbd7d0;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
select:focus,
button:focus,
a:focus {
  outline: 3px solid rgba(22, 119, 132, 0.3);
  outline-offset: 2px;
}

input:focus,
select:focus {
  background: var(--white);
  border-color: rgba(22, 119, 132, 0.62);
  box-shadow: 0 0 0 4px rgba(22, 119, 132, 0.08);
}

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

.choice-grid label,
.radio-list label,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: #fcfefd;
  border: 1px solid #dce5df;
  border-radius: var(--radius);
  font-weight: 600;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.choice-grid label:hover,
.radio-list label:hover,
.consent:hover {
  background: var(--white);
  border-color: var(--line-strong);
  box-shadow: 0 8px 16px rgba(23, 33, 28, 0.04);
}

.choice-grid input,
.radio-list input,
.consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.consent a {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  font-weight: 700;
}

.consent a:hover {
  color: var(--green);
}

.radio-list {
  display: grid;
  gap: 10px;
}

.inline-cta {
  margin-top: 24px;
  align-self: start;
}

.form-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.hidden-field {
  display: none;
}

.footer {
  padding: 34px clamp(18px, 4vw, 48px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #eef5f0;
}

.footer p {
  width: min(980px, 100%);
  margin: 0 auto;
  font-size: 0.92rem;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  width: min(980px, 100%);
  margin: 14px auto 0;
  font-size: 0.88rem;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}

.footer-nav a:hover {
  color: var(--green-dark);
  border-bottom-color: var(--green-dark);
}

.footer.footer-mini {
  background: transparent;
  border-top: 0;
  padding: 18px 18px 28px;
}

.footer.footer-mini .footer-nav {
  margin-top: 0;
}

/* ─── Legal pages (Datenschutz, Impressum) ────────────────── */

.legal-page {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.legal-content {
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(23, 33, 28, 0.06);
}

.legal-content h1 {
  margin: 4px 0 18px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.legal-content h2 {
  margin: 36px 0 10px;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--ink);
}

.legal-content p,
.legal-content ul {
  margin: 0 0 12px;
  color: #2a3a32;
  font-size: 0.98rem;
  line-height: 1.6;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--green-dark);
  font-weight: 600;
}

.legal-lede {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-block {
  padding: 14px 18px;
  background: #f4faf6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.96rem;
  line-height: 1.55;
}

.legal-meta {
  margin-top: 32px !important;
  color: var(--muted);
  font-size: 0.86rem !important;
}

.site-header--simple {
  grid-template-columns: 1fr auto;
}

.site-header--simple .header-spacer {
  display: none;
}

.back-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 160ms ease;
}

.back-link:hover {
  background: rgba(20, 107, 77, 0.08);
}

.legal-content ul {
  list-style: none;
  padding-left: 0;
}

.legal-content li {
  position: relative;
  padding-left: 22px;
}

.legal-content li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

@media (max-width: 680px) {
  .legal-page {
    padding: 28px 0 40px;
  }

  .legal-content {
    padding: 22px 20px;
    border-radius: 12px;
  }

  .legal-content h1 {
    font-size: 1.85rem;
  }

  .legal-content h2 {
    margin-top: 28px;
    font-size: 1.1rem;
  }

  .legal-content p,
  .legal-content ul,
  .legal-block {
    font-size: 0.94rem;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }
}

@media (max-width: 390px) {
  .legal-content {
    padding: 18px 16px;
  }

  .legal-content h1 {
    font-size: 1.6rem;
  }

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

.simple-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  align-items: center;
  padding: 28px 18px;
}

.thanks-layout {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.thanks-layout.single {
  grid-template-columns: 1fr;
  width: min(680px, 100%);
}

.thanks-card {
  padding: clamp(24px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(23, 33, 28, 0.08);
}

.thanks-card h1 {
  font-size: clamp(2rem, 3rem, 3.2rem);
  line-height: 1.05;
}

.skip-link {
  justify-self: center;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 18px;
  }

  .site-header--simple {
    grid-template-columns: 1fr auto;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav {
    justify-self: stretch;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 1 0 auto;
    white-space: nowrap;
  }

  .header-spacer {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 74px;
    padding-bottom: 360px;
  }

  .phone-preview {
    right: 18px;
    bottom: 34px;
    width: min(330px, calc(100% - 36px));
    min-height: 330px;
  }

  .split,
  .duty-section,
  .form-section,
  .thanks-layout {
    grid-template-columns: 1fr;
  }

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

  .duty-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    padding: 14px 16px;
  }

  .nav a {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 0.86rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 46px 18px 48px;
  }

  .hero::after {
    display: none;
  }

  h1 {
    font-size: 2.45rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-copy.secondary {
    margin-top: 10px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .trust-points {
    margin-top: 16px;
  }

  .trust-points span {
    min-height: 32px;
    font-size: 0.84rem;
  }

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

  .phone-preview {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    padding: 18px;
    border-radius: 18px;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
    position: relative;
    inset: auto;
    margin-top: 28px;
    min-height: auto;
  }

  .map-grid {
    inset: -22px;
    border-radius: 24px;
    opacity: 0.75;
  }

  .phone-bar {
    margin-bottom: 18px;
  }

  .status-pill {
    margin: 10px 0 14px;
    padding: 11px;
  }

  .preview-row {
    padding: 9px 0;
    font-size: 0.86rem;
  }

  .preview-alert {
    margin-top: 14px;
    padding: 12px;
    font-size: 0.86rem;
  }

  .section {
    width: min(100% - 28px, 1120px);
    padding: 54px 0;
  }

  .steps-section,
  .form-section {
    padding: 46px 18px;
    border-radius: 12px;
  }

  .problem-section {
    width: min(100% - 28px, 1120px);
    padding-top: 54px;
  }

  .section-lede {
    margin-top: 14px;
    font-size: 1rem;
  }

  .problem-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .form-section {
    gap: 18px;
  }

  .problem-grid article,
  .steps article,
  .waitlist-form,
  .form-copy {
    padding: 18px;
  }

  .problem-grid h3 {
    max-width: none;
  }

  .form-copy h2 {
    font-size: 2.35rem;
    line-height: 1.06;
  }

  .waitlist-points span {
    padding: 12px 12px 12px 34px;
    font-size: 0.92rem;
  }

  .waitlist-points span::before {
    left: 13px;
    width: 8px;
    height: 8px;
  }

  .inline-cta {
    width: auto;
  }

  .demand-note {
    padding: 12px 14px;
  }

  .demand-note p {
    font-size: 0.86rem;
  }

  .notif-badge {
    font-size: 0.72rem;
    padding: 4px 8px;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding-inline: 12px;
  }

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

  .brand {
    font-size: 0.98rem;
  }

  .nav {
    padding: 4px;
  }

  .nav a {
    padding-inline: 9px;
    font-size: 0.8rem;
  }

  .hero {
    padding: 38px 14px 42px;
  }

  h1 {
    font-size: 2.08rem;
  }

  h2,
  .form-copy h2 {
    font-size: 1.82rem;
  }

  .hero-copy,
  .split p,
  .duty-section p,
  .form-copy p {
    font-size: 0.95rem;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.7rem;
    padding: 5px 12px;
    gap: 7px;
  }

  .hero-visual {
    margin-top: 22px;
  }

  .button {
    min-height: 46px;
    padding: 11px 14px;
  }

  .phone-preview {
    padding: 15px;
  }

  .preview-row {
    gap: 10px;
    font-size: 0.82rem;
  }

  .section {
    width: calc(100% - 24px);
    padding: 44px 0;
  }

  .steps-section,
  .form-section {
    padding: 38px 14px;
  }

  .problem-grid,
  .steps,
  .feature-list,
  .duty-list,
  .waitlist-points,
  .radio-list {
    gap: 10px;
  }

  input,
  select {
    min-height: 44px;
  }

  .choice-grid label,
  .radio-list label,
  .consent {
    padding: 11px;
    font-size: 0.92rem;
  }

  .feature-strip {
    display: none;
  }
}

/* ─── Animations ─────────────────────────────────────────── */

@keyframes pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.82); }
}

@keyframes pulse-amber {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes pin-expand {
  0%, 100% { box-shadow: 0 0 0 6px rgba(20, 107, 77, 0.16); }
  50% { box-shadow: 0 0 0 14px rgba(20, 107, 77, 0.05); }
}

/* ─── Live dot (eyebrow) ──────────────────────────────────── */

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-live 2s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(20, 107, 77, 0.18);
}

/* ─── Hero h1 em ──────────────────────────────────────────── */

.hero-content h1 em {
  font-style: normal;
  color: var(--green);
}

/* ─── Source pin animations ───────────────────────────────── */

.pin-one { animation: pin-expand 2.8s ease-in-out infinite; }
.pin-two { animation: pin-expand 2.8s ease-in-out 0.9s infinite; }
.pin-three { animation: pin-expand 2.8s ease-in-out 1.8s infinite; }

/* ─── Phone preview notification badge ───────────────────── */

.notif-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  margin-bottom: 14px;
  background: rgba(20, 107, 77, 0.09);
  border: 1px solid rgba(20, 107, 77, 0.2);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.notif-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-live 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

/* ─── Status dot in pill ──────────────────────────────────── */

.status-dot {
  width: 8px;
  height: 8px;
  background: #d4840a;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-amber 2s ease-in-out infinite;
}

/* ─── Feature strip (below hero) ─────────────────────────── */

.feature-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 16px 0;
  gap: 0;
}

.feature-strip-inner > span {
  padding: 8px 22px;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

.strip-sep {
  width: 1px;
  height: 20px;
  background: var(--line-strong);
  flex-shrink: 0;
  padding: 0 !important;
}

/* ─── Feature list numbered items ────────────────────────── */

.feature-num {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgba(20, 107, 77, 0.22);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 800;
  margin-top: 3px;
}

.feature-item-body {
  display: grid;
  gap: 5px;
}


/* ─── Demand note in form copy ────────────────────────────── */

.demand-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(20, 107, 77, 0.06);
  border: 1px solid rgba(20, 107, 77, 0.16);
  border-radius: var(--radius);
}

.demand-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  margin-top: 5px;
  animation: pulse-live 2s ease-in-out infinite;
  box-shadow: 0 0 0 4px rgba(20, 107, 77, 0.12);
}

.demand-note p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--green-dark) !important;
  font-weight: 600;
  line-height: 1.5;
}

