:root {
  --fog: #eef1f0;
  --paper: #f8faf9;
  --white: #ffffff;
  --ink: #0e1413;
  --ink-2: #151d1b;
  --ink-3: #1d2825;
  --body: #42504c;
  --muted: #66736f;
  --line: #cfd7d4;
  --line-dark: #33403c;
  --green: #14a06a;
  --green-dark: #0b7950;
  --green-light: #42d18f;
  --lime: #a8e10c;
  --mint: #cef5df;
  --warning: #f3c457;
  --container: 1180px;
  --radius: 18px;
  --shadow: 0 26px 80px rgba(8, 20, 16, 0.13);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--fog);
  color: var(--ink);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body:has(.signup-modal:target) {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

h1,
h2,
h3 {
  font-family: "Gabarito", sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

mark {
  position: relative;
  z-index: 0;
  background: transparent;
  color: inherit;
}

mark::after {
  position: absolute;
  z-index: -1;
  right: -0.07em;
  bottom: 0.04em;
  left: -0.07em;
  height: 0.34em;
  background: var(--lime);
  content: "";
  opacity: 0.95;
  transform: rotate(-0.8deg) skewX(-7deg);
  transform-origin: left center;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 116px 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(14, 20, 19, 0.1);
  background: rgba(238, 241, 240, 0.91);
  backdrop-filter: blur(16px);
}

.language-link {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-shell {
  display: grid;
  width: min(calc(100% - 48px), 1300px);
  min-height: 78px;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  font-family: "Gabarito", sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand b {
  color: var(--green);
  font-size: 32px;
  line-height: 0.5;
}

.brand-radar {
  position: relative;
  display: inline-grid;
  width: 25px;
  height: 25px;
  margin-right: 9px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  place-items: center;
}

.brand-radar::before,
.brand-radar::after {
  position: absolute;
  background: currentColor;
  content: "";
  opacity: 0.22;
}

.brand-radar::before {
  width: 1px;
  height: 100%;
}

.brand-radar::after {
  width: 100%;
  height: 1px;
}

.brand-radar span {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(20, 160, 106, 0.14);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a,
.language-link,
.footer-links a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.language-link:hover,
.footer-links a:hover {
  color: var(--green-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}

.language-link {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(20, 160, 106, 0.18);
  color: var(--white);
  font-family: "Gabarito", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.button:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
  box-shadow: 0 14px 32px rgba(20, 160, 106, 0.25);
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(168, 225, 12, 0.95);
  outline-offset: 4px;
}

.button-small {
  min-height: 42px;
  padding: 0 21px;
  font-size: 14px;
}

.button-large {
  min-height: 58px;
  padding: 0 30px;
  font-size: 17px;
}

.button-block {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 22%, rgba(168, 225, 12, 0.12), transparent 24%),
    var(--fog);
}

.hero::after {
  position: absolute;
  top: 0;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(14, 20, 19, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(14, 20, 19, 0.025),
    0 0 0 180px rgba(14, 20, 19, 0.018);
  content: "";
  pointer-events: none;
}

.hero-grid,
.final-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 20, 19, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 20, 19, 0.042) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 680px;
  padding: 72px 0 78px;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: clamp(54px, 7vw, 100px);
}

.eyebrow,
.mono-label {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--green-dark);
}

.eyebrow > span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(20, 160, 106, 0.13);
}

.hero h1 {
  max-width: 770px;
  margin-bottom: 28px;
  font-size: clamp(48px, 4.75vw, 72px);
  font-weight: 600;
}

.hero h1 mark {
  display: inline-block;
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--body);
  font-size: 19px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  border-bottom: 1px solid var(--ink);
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.signal-console {
  position: relative;
  min-height: 550px;
  padding: 18px;
  border: 1px solid rgba(14, 20, 19, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(222, 231, 227, 0.78)),
    var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.signal-console::before {
  position: absolute;
  z-index: -1;
  inset: 12px -14px -14px 12px;
  border: 1px solid rgba(20, 160, 106, 0.5);
  border-radius: 24px;
  content: "";
}

.console-head,
.alert-meta,
.match-row,
.delivery-row,
.scan-summary,
.intent-head,
.intent-footer {
  font-family: "DM Mono", monospace;
}

.console-head {
  display: flex;
  padding: 4px 4px 17px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-head > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(20, 160, 106, 0.13);
  animation: livePulse 2.2s ease infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(20, 160, 106, 0.13); }
  50% { box-shadow: 0 0 0 8px rgba(20, 160, 106, 0.04); }
}

.alert-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 36px rgba(12, 26, 21, 0.08);
}

.alert-card-primary {
  z-index: 2;
  padding: 25px;
}

.alert-card-secondary {
  z-index: 1;
  width: 91%;
  margin: -2px 0 0 auto;
  padding: 21px 23px;
  transform: rotate(-1.8deg);
}

.alert-meta {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.07em;
}

.signal-label {
  color: var(--green-dark);
  font-weight: 500;
}

.alert-card > p {
  margin-bottom: 20px;
  color: #1a2421;
  font-family: "Gabarito", sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.38;
}

.alert-card > p mark {
  font-weight: 600;
}

.alert-card > p mark::after {
  height: 0.53em;
  background: var(--mint);
}

.source-row {
  display: flex;
  padding-top: 17px;
  border-top: 1px solid #e4e9e7;
  align-items: center;
  gap: 11px;
}

.source-avatar,
.mini-avatar {
  display: grid;
  flex: none;
  border-radius: 50%;
  background: #e7f4ed;
  color: var(--green-dark);
  font-family: "DM Mono", monospace;
  place-items: center;
}

.source-avatar {
  width: 34px;
  height: 34px;
  font-size: 10px;
}

.source-row > span:last-child {
  display: flex;
  flex-direction: column;
}

.source-row b {
  font-size: 12px;
  line-height: 1.3;
}

.source-row small {
  color: var(--muted);
  font-size: 10px;
}

.match-row {
  display: flex;
  margin: 18px -25px -25px;
  padding: 12px 25px;
  border-radius: 0 0 14px 14px;
  background: #e5f7ed;
  align-items: center;
  justify-content: space-between;
  color: var(--green-dark);
  font-size: 10px;
}

.match-row b {
  font-weight: 500;
}

.delivery-row {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
}

.mail-icon,
.sms-pill {
  display: inline-flex;
  height: 25px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  color: var(--green-dark);
  font-weight: 500;
}

.mail-icon {
  width: 25px;
}

.sms-pill {
  margin-left: auto;
  padding: 0 8px;
  font-size: 9px;
}

.scan-summary {
  display: flex;
  padding: 23px 8px 4px;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.scan-summary b {
  color: var(--ink);
  font-size: 12px;
}

.summary-line {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.problem-section {
  background: var(--paper);
}

.section-heading h2,
.pricing-copy h2,
.faq-intro h2,
.final-content h2,
.ai-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 4.25vw, 60px);
  font-weight: 600;
}

.split-heading {
  display: grid;
  margin-bottom: 66px;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 90px;
}

.split-heading h2 {
  max-width: 750px;
  margin-bottom: 0;
}

.split-heading > p {
  margin: 0 0 6px;
  color: var(--body);
  font-size: 17px;
}

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

.use-case-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--fog);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.use-case-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--green);
  content: "";
}

.use-case-card:hover {
  box-shadow: 0 18px 45px rgba(14, 20, 19, 0.08);
  transform: translateY(-5px);
}

.card-number,
.step-number {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.card-number {
  color: var(--green-dark);
}

.mini-post {
  display: flex;
  margin: 33px 0 38px;
  padding: 18px;
  border: 1px solid rgba(14, 20, 19, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  align-items: center;
  gap: 12px;
  transform: rotate(-1deg);
}

.mini-avatar {
  width: 31px;
  height: 31px;
  font-size: 10px;
}

.mini-post p {
  overflow: hidden;
  margin: 0;
  font-family: "Gabarito", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.use-case-card h3,
.step-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
}

.use-case-card > p,
.step-card > p {
  margin: 0;
  color: var(--body);
  font-size: 15px;
}

.dark-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #d9e1de;
}

.dark-section::before {
  position: absolute;
  right: 7%;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(66, 209, 143, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(66, 209, 143, 0.025),
    0 0 0 160px rgba(66, 209, 143, 0.018);
  content: "";
}

.ai-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: clamp(65px, 8vw, 110px);
}

.eyebrow-dark {
  color: var(--green-light);
}

.ai-copy h2 {
  color: var(--white);
}

.dark-section mark::after,
.final-cta mark::after {
  background: rgba(168, 225, 12, 0.88);
}

.ai-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 42px;
  color: #aebbb6;
  font-size: 17px;
}

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

.feature-list li {
  display: grid;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: 44px 1fr;
  gap: 15px;
}

.feature-icon {
  color: var(--green-light);
  font-family: "DM Mono", monospace;
  font-size: 11px;
}

.feature-list b {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-family: "Gabarito", sans-serif;
  font-size: 18px;
  letter-spacing: -0.015em;
}

.feature-list p {
  margin: 0;
  color: #9ba8a3;
  font-size: 14px;
}

.intent-panel {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: var(--ink-2);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  transform: rotate(-1deg);
}

.intent-head {
  display: flex;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-dark);
  align-items: center;
  justify-content: space-between;
  color: #7f8d88;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.intent-item {
  display: grid;
  padding: 22px;
  border-bottom: 1px solid rgba(51, 64, 60, 0.7);
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 14px;
  color: #75827e;
}

.intent-item.matched {
  background: linear-gradient(90deg, rgba(20, 160, 106, 0.2), rgba(20, 160, 106, 0.035));
  color: #e7eeeb;
}

.status-icon {
  display: grid;
  width: 30px;
  height: 30px;
  border: 1px solid #40504b;
  border-radius: 50%;
  color: #697873;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  place-items: center;
}

.matched .status-icon {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.intent-item b,
.intent-item small {
  display: block;
}

.intent-item b {
  overflow: hidden;
  font-family: "Gabarito", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.intent-item small {
  margin-top: 3px;
  font-size: 11px;
}

.intent-item .status {
  color: #65736e;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
}

.intent-item.matched .status {
  color: var(--green-light);
}

.intent-footer {
  display: flex;
  padding: 20px 22px;
  align-items: center;
  gap: 10px;
  color: #bbc6c2;
  font-size: 10px;
}

.pulse-ring {
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 2px solid var(--green-light);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(66, 209, 143, 0.09);
}

.how-section {
  background: var(--fog);
}

.centered-heading {
  max-width: 820px;
  margin: 0 auto 70px;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading > p:last-child {
  margin: 0;
  color: var(--body);
  font-size: 17px;
}

.steps-grid {
  display: grid;
  margin: 0 0 38px;
  padding: 0;
  counter-reset: steps;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}

.step-card {
  position: relative;
  min-height: 400px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.step-number {
  color: var(--green-dark);
}

.step-visual {
  display: flex;
  height: 132px;
  margin: 36px 0 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dce3e0;
  border-radius: 12px;
  background:
    linear-gradient(rgba(14, 20, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 20, 19, 0.035) 1px, transparent 1px),
    #f1f5f3;
  background-size: 22px 22px;
}

.groups-visual {
  padding: 16px;
  gap: 8px;
}

.groups-visual span,
.prompt-visual span {
  overflow: hidden;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.groups-visual b {
  display: grid;
  width: 37px;
  height: 37px;
  flex: none;
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-size: 19px;
  place-items: center;
}

.prompt-visual {
  position: relative;
  padding: 16px;
}

.prompt-visual span {
  width: 100%;
  white-space: normal;
}

.prompt-visual i {
  position: absolute;
  right: 30px;
  bottom: 37px;
  width: 1px;
  height: 13px;
  background: var(--green);
  animation: cursorBlink 1s steps(2) infinite;
}

@keyframes cursorBlink {
  50% { opacity: 0; }
}

.channel-visual {
  gap: 12px;
}

.channel-visual span {
  display: grid;
  width: 49px;
  height: 49px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
  color: var(--green-dark);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-style: normal;
  place-items: center;
  box-shadow: 0 8px 18px rgba(14, 20, 19, 0.07);
}

.safety-callout {
  display: grid;
  padding: 34px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: #d6dfdb;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
}

.safety-icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  place-items: center;
}

.safety-icon::before {
  width: 20px;
  height: 23px;
  border: 2px solid var(--green-light);
  border-radius: 11px 11px 13px 13px;
  content: "";
  clip-path: polygon(50% 0, 100% 20%, 90% 75%, 50% 100%, 10% 75%, 0 20%);
}

.safety-callout .mono-label {
  margin-bottom: 7px;
  color: var(--green-light);
}

.safety-callout h3 {
  margin-bottom: 8px;
  color: white;
  font-size: 24px;
  font-weight: 600;
}

.safety-callout p:last-child {
  max-width: 730px;
  margin: 0;
  color: #9eaaa5;
  font-size: 14px;
}

.safety-status {
  display: inline-flex;
  padding: 9px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  color: #b9c5c0;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.safety-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-light);
}

.pricing-section {
  background: var(--paper);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.73fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.pricing-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 35px;
  color: var(--body);
  font-size: 17px;
}

.pricing-note {
  max-width: 520px;
  padding: 21px 24px;
  border-left: 3px solid var(--green);
  background: var(--fog);
}

.pricing-note span {
  color: var(--green-dark);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.pricing-note p {
  margin: 5px 0 0;
  color: var(--body);
  font-size: 14px;
}

.price-card {
  position: relative;
  padding: 40px;
  border: 1px solid var(--ink);
  border-radius: 22px;
  background: var(--fog);
  box-shadow: 16px 16px 0 var(--mint);
}

.offer-flag {
  position: absolute;
  top: -15px;
  right: 30px;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.plan-name {
  margin-bottom: 12px;
  font-family: "Gabarito", sans-serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.price {
  display: flex;
  min-height: 86px;
  align-items: flex-start;
}

.price strong {
  font-family: "Gabarito", sans-serif;
  font-size: 79px;
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.currency {
  margin: 9px 4px 0 0;
  font-family: "DM Mono", monospace;
  font-size: 17px;
}

.currency-after {
  margin: 42px 0 0 9px;
  font-size: 14px;
}

.period {
  align-self: flex-end;
  margin: 0 0 10px 12px;
  color: var(--muted);
  font-size: 13px;
}

.intro-price {
  margin: 8px 0 0;
  color: var(--body);
  font-size: 14px;
}

.intro-price b {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 5px;
  background: var(--mint);
  color: var(--green-dark);
}

.price-divider {
  height: 1px;
  margin: 28px 0;
  background: var(--line);
}

.price-features {
  display: grid;
  margin: 0 0 30px;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #32403c;
  font-size: 15px;
}

.price-features li span {
  color: var(--green);
  font-weight: 700;
}

.card-footnote {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.guarantee-note {
  margin: 20px 0 0;
  color: #c1ccc7;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.guarantee-note strong,
.guarantee-note span {
  display: block;
}

.guarantee-note strong {
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 14px;
}

.faq-section {
  background: var(--fog);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(70px, 10vw, 140px);
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  font-size: clamp(38px, 3.8vw, 54px);
}

.faq-intro > p:last-child {
  color: var(--body);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

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

.faq-list summary {
  display: grid;
  padding: 26px 0;
  cursor: pointer;
  grid-template-columns: 1fr 32px;
  align-items: center;
  gap: 20px;
  font-family: "Gabarito", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.018em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 29px;
  height: 29px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green-dark);
  font-family: "DM Mono", monospace;
  font-size: 17px;
  font-weight: 400;
  place-items: center;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 680px;
  margin: -8px 52px 27px 0;
  color: var(--body);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: var(--green);
  color: white;
}

.final-cta::after {
  position: absolute;
  right: -100px;
  bottom: -230px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, 0.04),
    0 0 0 180px rgba(255, 255, 255, 0.025);
  content: "";
}

.final-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
}

.final-content {
  position: relative;
  z-index: 2;
  max-width: 970px;
  text-align: center;
}

.final-content .eyebrow {
  justify-content: center;
  color: white;
}

.final-content .eyebrow > span {
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(168, 225, 12, 0.16);
}

.final-content h2 {
  max-width: 890px;
  margin: 0 auto 25px;
  color: white;
  font-size: clamp(45px, 5vw, 68px);
}

.final-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(6, 56, 37, 0.2);
  color: var(--ink);
}

.button-light:hover {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.site-footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: #c9d3cf;
}

.footer-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 1fr;
  align-items: start;
  gap: 45px;
}

.brand-footer {
  color: white;
}

.footer-layout > p:not(.copyright) {
  max-width: 430px;
  color: #84928d;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 23px;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--green-light);
}

.copyright {
  margin: 30px 0 0;
  padding-top: 25px;
  border-top: 1px solid var(--line-dark);
  grid-column: 1 / -1;
  color: #6f7c78;
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.signup-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 24px;
  overflow-y: auto;
  opacity: 0;
  place-items: center;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.signup-modal:target {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 13, 11, 0.82);
  backdrop-filter: blur(9px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 650px);
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 0, rgba(168, 225, 12, 0.13), transparent 28%),
    var(--paper);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.42);
}

.modal-card::before {
  position: absolute;
  z-index: -1;
  inset: 9px -10px -10px 9px;
  border: 1px solid var(--green-light);
  border-radius: 22px;
  content: "";
}

.modal-close {
  position: absolute;
  top: 19px;
  right: 20px;
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--fog);
  color: var(--ink);
  font-size: 23px;
  line-height: 1;
  place-items: center;
}

.modal-signal {
  display: inline-flex;
  margin-bottom: 30px;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.modal-card > .mono-label {
  margin-bottom: 12px;
  color: var(--muted);
}

.modal-card h2 {
  max-width: 540px;
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 600;
}

.modal-card > p:not(.mono-label) {
  max-width: 550px;
  margin-bottom: 28px;
  color: var(--body);
}

.signup-form > label:first-child {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
}

.form-row input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-right: 0;
  border-radius: 11px 0 0 11px;
  background: white;
  color: var(--ink);
  outline: none;
}

.form-row input::placeholder {
  color: #8c9793;
}

.form-row button {
  min-width: 164px;
  padding: 0 20px;
  border: 1px solid var(--green);
  border-radius: 0 11px 11px 0;
  background: var(--green);
  color: white;
  font-family: "Gabarito", sans-serif;
  font-weight: 600;
  transition: background 0.2s ease;
}

.form-row button:hover {
  background: var(--green-dark);
}

.consent-row {
  display: grid;
  margin-top: 14px;
  grid-template-columns: 17px 1fr;
  align-items: start;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.consent-row input {
  width: 15px;
  height: 15px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.consent-row a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal-proof {
  display: flex;
  margin: 25px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 9px 22px;
  color: var(--muted);
  font-size: 11px;
  list-style: none;
}

.modal-proof li::before {
  margin-right: 7px;
  color: var(--green);
  content: "✓";
  font-weight: 700;
}

.success-page {
  display: grid;
  min-height: 100svh;
  padding: 32px;
  background:
    radial-gradient(circle at 80% 15%, rgba(168, 225, 12, 0.13), transparent 24%),
    linear-gradient(rgba(14, 20, 19, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 20, 19, 0.04) 1px, transparent 1px),
    var(--fog);
  background-size: auto, 76px 76px, 76px 76px, auto;
  place-items: center;
}

.success-card {
  position: relative;
  width: min(100%, 720px);
  padding: clamp(36px, 7vw, 72px);
  border: 1px solid var(--ink);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--mint);
  text-align: center;
}

.success-card .brand {
  margin-bottom: 50px;
  justify-self: center;
}

.success-card .pulse-ring {
  width: 14px;
  height: 14px;
  margin-bottom: 27px;
  border-width: 3px;
  box-shadow: 0 0 0 9px rgba(66, 209, 143, 0.1);
}

.success-card h1 {
  margin-bottom: 18px;
  font-size: clamp(43px, 7vw, 65px);
  font-weight: 600;
}

.success-card > p {
  max-width: 520px;
  margin: 0 auto 32px;
  color: var(--body);
  font-size: 17px;
}

.success-card .button {
  padding-inline: 28px;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 22px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(48px, 5.4vw, 65px);
  }

  .ai-layout,
  .pricing-layout {
    gap: 65px;
  }

  .split-heading {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero-layout,
  .ai-layout,
  .pricing-layout,
  .faq-layout,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    padding: 76px 0 88px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .signal-console {
    width: min(100%, 610px);
    margin-inline: auto;
  }

  .split-heading {
    gap: 24px;
  }

  .split-heading > p {
    max-width: 680px;
  }

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

  .use-case-card {
    min-height: auto;
  }

  .use-case-card .mini-post {
    max-width: 420px;
  }

  .step-card {
    display: grid;
    min-height: auto;
    grid-template-columns: minmax(190px, 0.7fr) 1fr;
    grid-template-rows: auto auto 1fr;
    gap: 0 32px;
  }

  .step-number {
    grid-column: 2;
  }

  .step-visual {
    height: 155px;
    margin: 0;
    grid-row: 1 / 4;
  }

  .step-card h3 {
    margin-top: 19px;
  }

  .safety-callout {
    grid-template-columns: auto 1fr;
  }

  .safety-status {
    justify-self: start;
    grid-column: 2;
  }

  .pricing-layout {
    max-width: 760px;
  }

  .price-card {
    width: min(100%, 540px);
  }

  .faq-intro {
    position: static;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }

  .footer-layout > p:not(.copyright) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-links {
    justify-content: flex-end;
  }
}

@media (max-width: 620px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

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

  .brand {
    font-size: 22px;
  }

  .brand-radar {
    width: 22px;
    height: 22px;
  }

  .nav-actions {
    gap: 11px;
  }

  .button-small {
    min-height: 39px;
    padding: 0 15px;
    font-size: 13px;
  }

  .hero-layout {
    padding: 60px 0 72px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
  }

  .signal-console {
    min-height: auto;
    padding: 13px;
    transform: none;
  }

  .signal-console::before {
    inset: 8px -8px -8px 8px;
  }

  .console-head > span:last-child {
    display: none;
  }

  .alert-card-primary,
  .alert-card-secondary {
    padding: 19px;
  }

  .alert-card-secondary {
    width: 96%;
  }

  .alert-card > p {
    font-size: 16px;
  }

  .match-row {
    margin: 17px -19px -19px;
    padding: 11px 19px;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .scan-summary {
    white-space: normal;
  }

  .section-heading h2,
  .pricing-copy h2,
  .faq-intro h2,
  .ai-copy h2 {
    font-size: clamp(36px, 10.5vw, 50px);
  }

  .split-heading {
    margin-bottom: 45px;
  }

  .use-case-card {
    padding: 24px;
  }

  .ai-layout {
    gap: 54px;
  }

  .intent-item {
    padding: 18px 15px;
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .intent-item .status {
    display: none;
  }

  .intent-item b {
    font-size: 14px;
  }

  .centered-heading {
    margin-bottom: 50px;
    text-align: left;
  }

  .centered-heading .eyebrow {
    justify-content: flex-start;
  }

  .step-card {
    display: block;
    padding: 23px;
  }

  .step-visual {
    height: 130px;
    margin: 28px 0;
  }

  .step-card h3 {
    margin-top: 0;
  }

  .safety-callout {
    padding: 26px 23px;
    grid-template-columns: 1fr;
  }

  .safety-icon {
    width: 50px;
    height: 50px;
  }

  .safety-status {
    grid-column: 1;
  }

  .pricing-layout {
    gap: 52px;
  }

  .price-card {
    padding: 32px 24px;
    box-shadow: 8px 8px 0 var(--mint);
  }

  .price strong {
    font-size: 66px;
  }

  .faq-layout {
    gap: 45px;
  }

  .faq-list summary {
    padding: 22px 0;
    font-size: 18px;
  }

  .final-cta {
    padding: 86px 0;
  }

  .final-content {
    text-align: left;
  }

  .final-content .eyebrow {
    justify-content: flex-start;
  }

  .final-content h2 {
    font-size: clamp(40px, 12vw, 55px);
  }

  .final-content > p:not(.eyebrow) {
    margin-left: 0;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

  .footer-layout > p:not(.copyright),
  .footer-links {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .signup-modal {
    padding: 13px;
    align-items: end;
  }

  .modal-card {
    padding: 35px 22px 25px;
    border-radius: 19px 19px 0 0;
  }

  .modal-card::before {
    display: none;
  }

  .modal-signal {
    margin-bottom: 23px;
  }

  .modal-card h2 {
    font-size: clamp(32px, 9.8vw, 42px);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .form-row input,
  .form-row button {
    min-height: 54px;
    border: 1px solid var(--ink);
    border-radius: 10px;
  }

  .form-row button {
    border-color: var(--green);
  }

  .modal-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .success-page {
    padding: 16px;
  }

  .success-card {
    box-shadow: 7px 7px 0 var(--mint);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Editorial refinement: fewer decorative UI conventions, more product clarity */

.site-header {
  border-bottom: 0;
  background: var(--fog);
  box-shadow: 0 1px 0 rgba(14, 20, 19, 0.08);
  backdrop-filter: none;
}

.brand-radar {
  width: 5px;
  height: 25px;
  margin-right: 10px;
  border: 0;
  border-radius: 0;
  background: var(--green);
}

.brand-radar::before,
.brand-radar::after,
.brand-radar span {
  display: none;
}

.button {
  border: 0;
  border-radius: 9px;
  box-shadow: none;
}

.button:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.hero {
  border-bottom: 0;
  background: var(--fog);
}

.hero::after,
.hero-grid,
.final-grid,
.dark-section::before,
.final-cta::after {
  display: none;
}

.eyebrow,
.mono-label {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.eyebrow {
  display: block;
  margin-bottom: 19px;
  color: var(--green-dark);
}

.eyebrow > span {
  display: none;
}

.hero h1 mark::after {
  right: -0.02em;
  bottom: 0.05em;
  left: -0.02em;
  display: block;
  height: 0.16em;
  transform: rotate(-0.4deg);
}

.section-heading h2 mark::after,
.ai-copy h2 mark::after,
.pricing-copy h2 mark::after,
.faq-intro h2 mark::after,
.final-content h2 mark::after {
  display: none;
}

.hero-actions {
  gap: 34px;
}

.signal-console {
  padding: 14px;
  border: 0;
  border-radius: 6px;
  background: #e2e8e5;
  box-shadow: 0 22px 60px rgba(8, 20, 16, 0.12);
  transform: none;
}

.signal-console::before {
  display: none;
}

.console-head,
.alert-meta,
.match-row,
.delivery-row,
.scan-summary,
.intent-head,
.intent-footer,
.source-avatar,
.mini-avatar,
.mail-icon,
.sms-pill,
.status-icon,
.intent-item .status {
  font-family: "Hanken Grotesk", sans-serif;
  letter-spacing: 0;
}

.console-head {
  padding: 5px 5px 14px;
  font-size: 11px;
  text-transform: none;
}

.alert-card {
  border: 0;
  border-radius: 5px;
  box-shadow: 0 8px 22px rgba(12, 26, 21, 0.07);
}

.alert-card-secondary {
  width: 94%;
  margin-top: 10px;
  transform: none;
}

.alert-meta {
  font-size: 11px;
  letter-spacing: 0;
}

.signal-label {
  font-weight: 700;
}

.source-avatar {
  border-radius: 4px;
}

.match-row {
  border-radius: 0 0 5px 5px;
  font-size: 11px;
}

.mail-icon,
.sms-pill {
  border: 0;
  border-radius: 4px;
  background: #e7f3ec;
}

.scan-summary {
  font-size: 10px;
}

.split-heading {
  align-items: start;
}

.use-case-grid {
  gap: 54px;
}

.use-case-card {
  min-height: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.use-case-card::before,
.card-number {
  display: none;
}

.use-case-card:hover {
  box-shadow: none;
  transform: none;
}

.mini-post {
  margin: 0 0 30px;
  padding: 18px 20px;
  border: 0;
  border-radius: 3px;
  background: #e9efec;
  transform: none;
}

.mini-avatar {
  display: none;
}

.mini-post p {
  font-size: 15px;
}

.dark-section {
  background: #111816;
}

.feature-list {
  gap: 28px;
}

.feature-list li {
  padding-top: 0;
  border-top: 0;
  grid-template-columns: 1fr;
}

.feature-icon {
  display: none;
}

.feature-list b {
  font-size: 20px;
}

.intent-panel {
  border: 0;
  border-radius: 5px;
  box-shadow: none;
  transform: none;
}

.intent-head {
  font-size: 11px;
  letter-spacing: 0;
}

.intent-item {
  grid-template-columns: 24px 1fr auto;
}

.status-icon {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  font-size: 16px;
}

.matched .status-icon {
  border: 0;
  background: transparent;
  color: var(--green-light);
}

.intent-item .status {
  font-size: 10px;
  letter-spacing: 0;
}

.pulse-ring {
  width: 4px;
  height: 18px;
  border: 0;
  border-radius: 0;
  background: var(--green-light);
  box-shadow: none;
}

.steps-grid {
  gap: 56px;
}

.step-card {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.step-number {
  display: block;
  color: #aab5b0;
  font-family: "Gabarito", sans-serif;
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.step-visual {
  height: 126px;
  margin: 24px 0 28px;
  border: 0;
  border-radius: 4px;
  background: #e5ebe8;
}

.groups-visual span,
.prompt-visual span {
  border: 0;
  border-radius: 3px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 10px;
}

.groups-visual b {
  border-radius: 3px;
}

.channel-visual span {
  border: 0;
  border-radius: 4px;
  font-family: "Hanken Grotesk", sans-serif;
  box-shadow: none;
}

.safety-callout {
  padding: 38px 42px;
  border: 0;
  border-radius: 4px;
  background: #18231f;
  grid-template-columns: 1fr;
}

.safety-icon,
.safety-status {
  display: none;
}

.safety-callout .mono-label {
  margin-bottom: 10px;
  color: var(--green-light);
}

.safety-callout h3 {
  max-width: 760px;
  font-size: 30px;
}

.pricing-note {
  padding: 0 0 0 20px;
  background: transparent;
}

.pricing-note span,
.offer-flag,
.currency,
.copyright,
.modal-signal {
  font-family: "Hanken Grotesk", sans-serif;
  letter-spacing: 0;
}

.pricing-note span {
  font-size: 12px;
  font-weight: 700;
}

.price-card {
  padding: 42px;
  border: 0;
  border-radius: 5px;
  background: #18231f;
  box-shadow: none;
  color: white;
}

.offer-flag {
  position: static;
  display: inline-block;
  margin-bottom: 24px;
  padding: 0 0 3px;
  border-bottom: 4px solid var(--lime);
  border-radius: 0;
  background: transparent;
  color: #dbe4e0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.plan-name,
.price,
.price strong {
  color: white;
}

.intro-price,
.period,
.price-features li,
.card-footnote {
  color: #c1ccc7;
}

.intro-price b {
  border-radius: 2px;
}

.price-divider {
  background: #34413c;
}

.price-card .button {
  background: var(--green);
}

.faq-list {
  border-top: 0;
}

.faq-list summary span {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 24px;
}

.final-cta {
  background: var(--green-dark);
}

.final-content .eyebrow {
  color: #d8f0e5;
}

.final-content .eyebrow > span {
  display: none;
}

.button-light {
  border: 0;
  box-shadow: none;
}

.site-footer {
  border-top: 0;
}

.modal-backdrop {
  backdrop-filter: none;
}

.modal-card {
  padding: 46px;
  border: 0;
  border-radius: 7px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.modal-card::before {
  display: none;
}

.modal-close {
  border: 0;
  border-radius: 4px;
}

.modal-signal {
  font-size: 11px;
  letter-spacing: 0;
}

.form-row input {
  border-color: #9da8a3;
  border-radius: 5px 0 0 5px;
}

.form-row button {
  border: 0;
  border-radius: 0 5px 5px 0;
}

.success-page {
  background: var(--fog);
}

.success-card {
  border: 0;
  border-radius: 6px;
  box-shadow: 0 24px 65px rgba(14, 20, 19, 0.1);
}

.success-card .pulse-ring {
  width: 5px;
  height: 24px;
  border: 0;
  border-radius: 0;
  background: var(--green);
  box-shadow: none;
}

@media (max-width: 900px) {
  .step-card {
    display: grid;
    padding: 0;
  }

  .step-visual {
    margin: 0;
  }

  .safety-callout {
    grid-template-columns: 1fr;
  }

  .price-card {
    box-shadow: none;
  }
}

@media (max-width: 620px) {
  .use-case-grid,
  .steps-grid {
    gap: 44px;
  }

  .step-card {
    display: block;
  }

  .step-visual {
    margin: 20px 0 25px;
  }

  .safety-callout,
  .price-card {
    padding: 30px 24px;
  }

  .intent-item {
    grid-template-columns: 20px minmax(0, 1fr);
  }

  .modal-card {
    padding: 35px 22px 25px;
    border-radius: 6px 6px 0 0;
  }

  .form-row input,
  .form-row button {
    border-radius: 5px;
  }

  .success-card {
    box-shadow: none;
  }
}

/* Privacy policy */

.legal-body {
  background: var(--paper);
}

.legal-header .nav-shell {
  grid-template-columns: 1fr auto 1fr;
}

.legal-back-link {
  color: var(--body);
  font-size: 14px;
  font-weight: 600;
}

.legal-back-link:hover {
  color: var(--green-dark);
}

.legal-hero {
  padding: 92px 0 82px;
  background:
    linear-gradient(90deg, transparent 0 72%, rgba(20, 160, 106, 0.07) 72% 100%),
    var(--fog);
}

.legal-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  align-items: end;
  gap: clamp(60px, 9vw, 130px);
}

.legal-label {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
}

.legal-hero h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(54px, 7vw, 88px);
  font-weight: 600;
}

.legal-intro {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--body);
  font-size: 19px;
  line-height: 1.55;
}

.legal-updated {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.controller-summary {
  margin: 0;
  padding: 30px 0 4px 30px;
  border-left: 5px solid var(--green);
}

.controller-summary div + div {
  margin-top: 23px;
}

.controller-summary dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.controller-summary dd {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.controller-summary a,
.legal-content a {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-layout {
  display: grid;
  padding-top: 92px;
  padding-bottom: 124px;
  grid-template-columns: 220px minmax(0, 790px);
  justify-content: space-between;
  gap: clamp(70px, 10vw, 150px);
}

.legal-toc {
  position: sticky;
  top: 116px;
  align-self: start;
}

.legal-toc > p {
  margin-bottom: 17px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.legal-toc nav {
  display: grid;
  gap: 9px;
}

.legal-toc a {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.legal-toc a:hover {
  color: var(--green-dark);
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  position: relative;
  padding-left: 54px;
  scroll-margin-top: 118px;
}

.legal-content section + section {
  margin-top: 86px;
}

.legal-number {
  position: absolute;
  top: 7px;
  left: 0;
  color: var(--green);
  font-family: "Gabarito", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.legal-content h2 {
  margin-bottom: 25px;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
}

.legal-content p,
.legal-content li {
  color: var(--body);
  font-size: 16px;
  line-height: 1.72;
}

.legal-content p {
  margin-bottom: 18px;
}

.legal-content strong {
  color: var(--ink);
}

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

.legal-content li + li {
  margin-top: 9px;
}

.legal-facts {
  display: grid;
  margin: 27px 0 28px !important;
  padding: 24px 28px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 30px;
  background: var(--fog);
  list-style: none;
}

.legal-facts li {
  margin: 0 !important;
  font-size: 14px;
}

.legal-table-wrap {
  margin: 32px 0 26px;
  overflow-x: auto;
}

.legal-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.legal-table-wrap th {
  padding: 0 18px 15px 0;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  vertical-align: bottom;
}

.legal-table-wrap td {
  min-width: 170px;
  padding: 19px 18px 19px 0;
  border-bottom: 1px solid var(--line);
  color: var(--body);
  font-size: 13px;
  line-height: 1.55;
  vertical-align: top;
}

.rights-list {
  columns: 2;
  column-gap: 46px;
}

.rights-list li {
  break-inside: avoid;
}

.legal-note {
  margin-top: 28px;
  padding: 24px 28px;
  border-left: 5px solid var(--green);
  background: #e9f5ef;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.65;
}

.legal-contact {
  margin-top: 36px;
  padding: 31px 34px;
  background: var(--ink);
  color: white;
}

.legal-contact p {
  margin-bottom: 6px;
  color: #9eaca6;
  font-size: 13px;
}

.legal-contact a {
  color: white;
  font-family: "Gabarito", sans-serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 600;
  text-decoration-color: var(--green-light);
}

.legal-footer {
  margin-top: 0;
}

@media (max-width: 900px) {
  .legal-hero {
    background: var(--fog);
  }

  .legal-hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .controller-summary {
    max-width: 540px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .legal-toc {
    display: none;
  }

  .legal-content {
    max-width: 790px;
  }
}

@media (max-width: 620px) {
  .legal-header .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .legal-back-link {
    display: none;
  }

  .legal-hero {
    padding: 64px 0 58px;
  }

  .legal-hero h1 {
    font-size: clamp(46px, 15vw, 62px);
  }

  .legal-intro {
    font-size: 17px;
  }

  .controller-summary {
    padding: 18px 0 0 20px;
  }

  .legal-layout {
    padding-top: 64px;
    padding-bottom: 88px;
  }

  .legal-content section {
    padding-left: 0;
  }

  .legal-content section + section {
    margin-top: 68px;
  }

  .legal-number {
    position: static;
    display: block;
    margin-bottom: 12px;
  }

  .legal-content h2 {
    font-size: 34px;
  }

  .legal-facts {
    padding: 20px !important;
    grid-template-columns: 1fr;
  }

  .rights-list {
    columns: 1;
  }

  .legal-table-wrap {
    margin-right: -16px;
  }

  .legal-note,
  .legal-contact {
    padding: 23px 21px;
  }
}
