:root {
  --ink: #07110f;
  --ink-2: #0b1714;
  --ink-3: #10201c;
  --surface: #f3f6f2;
  --paper: #fbfdf9;
  --white: #f8fbf8;
  --text: #15241f;
  --muted: #66736e;
  --line: #d8e0db;
  --line-dark: rgba(255, 255, 255, 0.12);
  --green: #2ed47a;
  --green-dark: #0e8e4e;
  --green-soft: #dff8e9;
  --amber: #f3b84b;
  --red: #e45757;
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(5, 23, 16, 0.14);
}

[hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  color-scheme: dark;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 18px;
  font-weight: 800;
}

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

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

.section {
  padding: clamp(44px, 3.5vw, 48px) 0;
}

.section-surface {
  background: var(--surface);
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.logo b {
  color: var(--green);
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.75rem;
  letter-spacing: -0.05em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  font-weight: 700;
}

.site-header nav a:hover {
  color: var(--white);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  padding: 14px 20px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary,
.button-header,
.button-plan {
  background: var(--green);
  color: #06130d;
  box-shadow: 0 12px 30px rgba(46, 212, 122, 0.18);
}

.button-primary:hover,
.button-header:hover,
.button-plan:hover {
  background: #40e68a;
  box-shadow: 0 14px 34px rgba(46, 212, 122, 0.28);
}

.button-header {
  min-height: 54px;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.82rem;
}

.button-header > span {
  display: none;
}

.whatsapp-mark {
  width: 24px;
  height: 24px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.52rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.button-quiet {
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 138px 0 64px;
  background:
    radial-gradient(circle at 78% 28%, rgba(46, 212, 122, 0.11), transparent 28%),
    linear-gradient(145deg, #07110f 0%, #0a1714 58%, #07110f 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: clamp(52px, 7vw, 92px);
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(2.65rem, 4.6vw, 4.6rem);
  white-space: pre-line;
}

.hero-subhead {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

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

.hero-primary-action {
  display: grid;
  gap: 7px;
}

.hero-primary-action small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
  text-align: center;
}

.text-link {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 750;
}

.microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 9px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
}

.microcopy span {
  color: var(--green);
}

.hero-urgency {
  max-width: 650px;
  margin: 14px 0 0;
  border-left: 2px solid var(--green);
  padding-left: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual picture {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.48);
}

.hero-visual picture::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 17, 13, 0.9), transparent 46%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.mechanism-badge {
  position: absolute;
  left: -30px;
  bottom: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(5, 18, 13, 0.88);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
  padding: 13px 16px;
  font-size: 0.8rem;
  font-weight: 800;
}

.mechanism-badge b {
  color: var(--green);
}

.signal-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(46, 212, 122, 0.14);
}

.minute-card {
  position: absolute;
  top: 26px;
  right: -18px;
  z-index: 2;
  min-width: 138px;
  border: 1px solid rgba(228, 87, 87, 0.46);
  border-radius: 14px;
  background: rgba(40, 10, 10, 0.84);
  color: var(--white);
  backdrop-filter: blur(12px);
  padding: 14px 16px;
}

.minute-card small,
.minute-card span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.minute-card strong {
  display: block;
  color: #ff7777;
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  border-right: 1px solid var(--line);
  color: #394842;
  font-size: 0.84rem;
  font-weight: 760;
  text-align: center;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid span {
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.narrow-copy {
  max-width: 900px;
  text-align: center;
}

.narrow-copy h2 {
  margin-bottom: 12px;
}

.narrow-copy h3 {
  margin-bottom: 30px;
  color: var(--green-dark);
}

.narrow-copy > p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.pain-visual {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  align-items: stretch;
}

.frozen-panel,
.route-panel {
  min-height: 230px;
  border-radius: 24px;
  padding: 34px;
}

.frozen-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(to top, rgba(25, 5, 5, 0.92), rgba(38, 11, 11, 0.48)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 4px),
    #321414;
  color: var(--white);
}

.frozen-panel span {
  width: max-content;
  border-radius: 6px;
  background: var(--red);
  padding: 5px 8px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 900;
}

.frozen-panel strong {
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
}

.frozen-panel small {
  color: rgba(255, 255, 255, 0.6);
}

.pain-arrow {
  display: grid;
  place-items: center;
  color: var(--green-dark);
  font-size: 2.2rem;
}

.route-panel {
  display: grid;
  align-content: center;
  gap: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.route-panel div {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 12px;
  background: #edf2ee;
  padding: 15px;
  font-weight: 780;
}

.route-panel span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.75rem;
}

.route-panel .reserve {
  background: var(--green-soft);
  color: #0b6137;
}

.route-panel .reserve span {
  background: var(--green-dark);
}

.mechanism-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
}

.mechanism-grid h2 {
  margin-bottom: 28px;
}

.mechanism-grid p {
  color: var(--muted);
}

.clarification-box {
  display: grid;
  gap: 3px;
  margin-top: 30px;
  border-left: 4px solid var(--green-dark);
  background: var(--green-soft);
  padding: 20px 22px;
  color: #1b4431;
}

.clarification-box b {
  color: #0b6e3d;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mechanism-diagram {
  border-radius: 28px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 34px 80px rgba(5, 24, 16, 0.2);
  padding: clamp(30px, 5vw, 54px);
}

.diagram-device {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  column-gap: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
}

.diagram-device > span {
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
}

.diagram-device small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.diagram-lines {
  position: relative;
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.diagram-lines::before {
  content: "";
  position: absolute;
  left: 21px;
  top: -36px;
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.24);
}

.diagram-lines > div {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 17px;
}

.line-label {
  border-radius: 6px;
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 5px 7px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
}

.reserve-label {
  background: #fff2d9;
  color: #845900;
}

.diagram-lines b {
  font-size: 0.9rem;
}

.mechanism-diagram > p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  text-align: center;
}

.info-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 54px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
}

.info-note span {
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #b7c4bd;
  border-radius: 50%;
  color: var(--muted);
  font-weight: 800;
}

.info-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.test-control-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
}

.test-control-copy p {
  max-width: 520px;
  margin: 0 0 28px;
  color: var(--muted);
}

.test-control-list {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 0;
  list-style: none;
}

.test-control-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  border-bottom: 1px solid var(--line);
  color: #263a32;
  font-size: 0.98rem;
  font-weight: 800;
}

.test-control-list li > span {
  color: var(--green-dark);
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading p {
  max-width: 690px;
  margin: 0 auto;
  color: var(--muted);
}

.left-heading {
  margin-left: max(20px, calc((100vw - 1180px) / 2));
  text-align: left;
}

.left-heading p {
  margin-left: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-grid article {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 28px 24px;
}

.process-grid article > span {
  display: block;
  margin-bottom: 36px;
  color: var(--green-dark);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 900;
}

.process-grid h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.centered-action {
  margin-top: 36px;
  text-align: center;
}

.process-proof-section {
  color: var(--white);
  background: var(--ink-2);
}

.process-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-proof-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #101c18;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.process-proof-item img,
.process-proof-item video {
  display: block;
  width: 100%;
  height: auto;
  background: #07110f;
}

.process-proof-item > div {
  padding: 18px 20px 20px;
}

.process-proof-item h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.process-proof-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
}

.value-grid article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  min-height: 150px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-grid article:nth-child(3n) {
  border-right: 0;
}

.value-grid article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.value-grid article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-family: var(--display);
  font-weight: 900;
}

.value-grid h3 {
  margin: 3px 0 8px;
  font-size: 1.2rem;
}

.value-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.proof-section {
  color: var(--white);
  background: var(--ink);
}

.proof-section .section-heading p {
  color: rgba(255, 255, 255, 0.56);
}

.proof-section--customer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}

.proof-filter {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  padding: 9px 16px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.proof-filter:hover {
  border-color: rgba(46, 212, 122, 0.42);
  color: var(--white);
}

.proof-filter[data-active="true"] {
  border-color: var(--green);
  background: var(--green);
  color: #07110f;
}

.proof-filter:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  align-items: start;
  gap: 22px;
}

.proof-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 20px;
}

.proof-grid--compact .proof-item {
  grid-column: auto;
}

.proof-source {
  width: max-content;
  border-radius: 6px;
  background: rgba(46, 212, 122, 0.13);
  color: var(--green);
  padding: 5px 8px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-item {
  overflow: hidden;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #13201c;
  color: var(--white);
  cursor: zoom-in;
  padding: 0;
  text-align: left;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  animation: proof-item-enter 220ms ease both;
}

@keyframes proof-item-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.proof-item--wide {
  grid-column: span 7;
}

.proof-item--narrow {
  grid-column: span 5;
}

.proof-item:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 212, 122, 0.42);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.3);
}

.proof-item:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.proof-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #eef1ef;
}

.proof-grid--compact .proof-media {
  max-height: 300px;
}

.proof-media picture {
  display: block;
}

.proof-media img {
  display: block;
  width: 100%;
  height: auto;
}

.proof-open-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(7, 17, 15, 0.88);
  color: var(--white);
  padding: 7px 10px;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}

.proof-meta {
  display: grid;
  gap: 12px;
  padding: 16px 18px 18px;
}

.proof-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.proof-meta-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.proof-privacy {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
}

.proof-date {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.proof-context {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  line-height: 1.5;
}

.proof-trust-note {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.6;
}

.proof-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.11);
}

.proof-trust-strip span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  background: #101c18;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
}

.proof-trust-strip span::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  content: "";
  box-shadow: 0 0 0 4px rgba(46, 212, 122, 0.11);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: rgba(2, 7, 5, 0.92);
  padding: 24px 82px;
}

.lightbox-panel {
  overflow: hidden auto;
  max-width: min(900px, calc(100vw - 180px));
  max-height: 94vh;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 18px;
  background: #101b18;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.lightbox-image-wrap {
  overflow: auto;
  max-height: calc(94vh - 92px);
  background: #07110f;
  touch-action: pinch-zoom;
}

.lightbox-image-wrap img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(94vh - 92px);
  margin: 0 auto;
  object-fit: contain;
}

.lightbox-caption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 16px;
  align-items: baseline;
  padding: 16px 20px 18px;
}

.lightbox-caption span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.lightbox-caption p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 1.8rem;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 2;
  width: 50px;
  height: 58px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(7, 17, 15, 0.9);
  color: var(--white);
  cursor: pointer;
  font-size: 2.1rem;
  line-height: 1;
}

.lightbox-nav--previous {
  left: 18px;
}

.lightbox-nav--next {
  right: 18px;
}

.lightbox-nav:focus-visible,
.lightbox-close:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.pricing-section {
  background: #edf1ed;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #ccd5cf;
  border-radius: 22px;
  background: var(--white);
  padding: 32px 28px 26px;
}

.price-card.featured {
  border: 2px solid var(--green-dark);
  box-shadow: 0 24px 60px rgba(19, 116, 66, 0.15);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  border-radius: 30px;
  background: var(--green-dark);
  color: var(--white);
  padding: 7px 12px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.plan-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.plan-topline span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
}

.price-card h3 {
  min-height: 2.1em;
  margin-bottom: 18px;
  font-size: 1.6rem;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.price strong {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 4.6rem);
  letter-spacing: -0.06em;
  line-height: 0.85;
}

.price > span {
  color: var(--muted);
  font-size: 0.75rem;
}

.monthly {
  margin: 14px 0 0;
  font-weight: 800;
}

.per-screen {
  margin: 2px 0 0;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.audience {
  margin: 25px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 10px;
  color: #34443e;
  font-size: 0.86rem;
}

.price-card li span {
  color: var(--green-dark);
  font-weight: 900;
}

.button-plan {
  margin-top: auto;
  width: 100%;
  border: 1px solid var(--green-dark);
  background: var(--white);
  color: var(--green-dark);
  box-shadow: none;
}

.featured .button-plan {
  background: var(--green-dark);
  color: var(--white);
}

.plan-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.comparison-wrap {
  margin-top: 44px;
}

.comparison-wrap > h3 {
  margin-bottom: 22px;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.mobile-plan-comparison {
  display: none;
}

.mobile-plan-comparison article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  padding: 22px 20px;
}

.mobile-plan-comparison h4 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 1.05rem;
}

.mobile-plan-comparison ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-plan-comparison li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #405047;
  font-size: 0.9rem;
  line-height: 1.45;
}

.mobile-plan-comparison li span {
  flex: 0 0 auto;
  color: var(--green-dark);
  font-weight: 900;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.84rem;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 16px 20px;
  text-align: center;
}

th:first-child,
td:first-child {
  text-align: left;
}

thead th {
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

tbody th {
  font-weight: 760;
}

tbody tr:last-child > * {
  border-bottom: 0;
}

.value-explainer {
  color: var(--white);
  background: var(--ink-2);
}

.value-explainer-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: 90px;
}

.value-explainer h2 {
  margin: 0 0 22px;
}

.value-explainer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.04rem;
}

.value-comparison {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
}

.value-comparison > div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 20px;
}

.value-comparison > div:last-child {
  border-bottom: 0;
}

.value-comparison span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
}

.value-comparison strong {
  color: var(--white);
  font-size: 0.82rem;
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.devices-grid > div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  color: #415149;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
}

.devices-grid span {
  color: var(--green-dark);
  font-size: 2rem;
}

.devices-copy {
  margin-top: 32px;
  color: var(--muted);
  text-align: center;
}

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

.identity-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.identity-grid > div > p {
  max-width: 520px;
  color: var(--muted);
}

.identity-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.identity-card > div {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 17px 20px;
}

.identity-card > div:last-child {
  border-bottom: 0;
}

.identity-card dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
}

.identity-card dd {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 750;
}

.identity-card a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.identity-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(54px, 8vw, 110px);
}

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

.faq-intro p {
  color: var(--muted);
}

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

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

.faq-list summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 820;
}

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

.faq-list summary span {
  color: var(--green-dark);
  font-size: 1.5rem;
  transition: transform 160ms ease;
}

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

.faq-list details > p {
  margin: -2px 0 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 7vw, 90px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0, rgba(46, 212, 122, 0.18), transparent 40%),
    var(--ink);
}

.final-cta-inner {
  max-width: 820px;
  text-align: center;
}

.final-cta .eyebrow::before {
  display: none;
}

.final-cta p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.62);
}

.final-cta .final-urgency {
  max-width: 610px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 750;
}

.final-cta small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.42);
}

.footer {
  color: var(--white);
  background: #040b09;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 72px;
}

.footer-grid > div:first-child p {
  max-width: 440px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.84rem;
}

.footer h2 {
  margin-bottom: 18px;
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid > div:not(:first-child) a,
.footer-link {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  padding: 0;
  font-size: 0.8rem;
}

.footer-grid a:hover,
.footer-link:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.7rem;
}

.mobile-sticky {
  display: none;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: auto;
  z-index: 100;
  max-width: 480px;
  margin-inline: 0;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(7, 17, 15, 0.97);
  color: var(--white);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
  padding: 22px;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 3px;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.78rem;
}

.cookie-banner p a {
  color: var(--green);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.cookie-actions .button {
  flex: 1;
  min-height: 48px;
  padding: 11px 14px;
  font-size: 0.75rem;
}

.legal-page {
  min-height: 100vh;
  background: var(--surface);
  padding: 70px 0 110px;
}

.legal-shell {
  max-width: 840px;
}

.back-link {
  display: inline-block;
  margin-bottom: 56px;
  color: var(--green-dark);
  font-weight: 800;
}

.legal-page h1 {
  margin-bottom: 36px;
}

.legal-status {
  margin-bottom: 46px;
  border-left: 5px solid var(--amber);
  background: #fff6e3;
  padding: 22px 24px;
}

.legal-status strong {
  display: block;
  color: #6b4c12;
}

.legal-status p {
  margin: 6px 0 0;
  color: #745f38;
}

.legal-copy h2 {
  margin: 38px 0 12px;
  font-size: 1.6rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.legal-contact {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.legal-contact a {
  color: var(--green-dark);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .site-header nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 400px;
    gap: 42px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item,
  .proof-item--featured,
  .proof-item--wide,
  .proof-item--narrow {
    grid-column: auto;
  }

  .devices-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 680px);
  }

  .hero {
    padding-top: 126px;
  }

  .proof-grid,
  .proof-trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .mechanism-grid,
  .test-control-grid,
  .value-explainer-grid,
  .identity-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 52px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-subhead,
  .microcopy {
    margin-inline: auto;
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-urgency {
    margin-inline: auto;
    border-left: 0;
    padding-left: 0;
    text-align: center;
  }

  .hero-visual {
    width: min(520px, 100%);
    margin-inline: auto;
  }

  .hero-visual picture {
    aspect-ratio: 4 / 3;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .pain-visual {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pain-arrow {
    transform: rotate(90deg);
  }

  .mechanism-grid {
    gap: 52px;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-grid article,
  .value-grid article:nth-child(3n) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .value-grid article:nth-child(2n) {
    border-right: 0;
  }

  .value-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .price-card {
    padding: 34px;
  }

  .price-card h3 {
    min-height: 0;
  }

  .value-explainer-grid,
  .identity-grid {
    gap: 34px;
  }

  .faq-intro {
    position: static;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .desktop-plan-comparison {
    display: none;
  }

  .mobile-plan-comparison {
    display: grid;
    gap: 14px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding: 44px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .logo span:last-child {
    font-size: 0.95rem;
  }

  .site-header .button-header {
    min-height: 54px;
    padding: 10px 13px;
    font-size: 0.75rem;
  }

  .hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 108px 0 44px;
  }

  .hero-grid {
    gap: 34px;
  }

  .eyebrow,
  .kicker {
    margin-bottom: 16px;
    font-size: 0.66rem;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .hero-subhead {
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

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

  .hero-primary-action {
    width: 100%;
  }

  .microcopy {
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .hero-visual picture {
    aspect-ratio: 16 / 9;
    border-radius: 18px;
  }

  .minute-card {
    top: 12px;
    right: 12px;
    min-width: 108px;
    padding: 10px 12px;
  }

  .minute-card strong {
    font-size: 1.35rem;
  }

  .mechanism-badge {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: center;
    padding: 10px;
    font-size: 0.7rem;
  }

  .trust-grid > div {
    min-height: 88px;
    flex-direction: column;
    gap: 7px;
    padding: 14px 8px;
    font-size: 0.7rem;
  }

  .pain-visual {
    margin-top: 38px;
  }

  .frozen-panel,
  .route-panel {
    min-height: 180px;
    padding: 24px;
  }

  .mechanism-diagram {
    border-radius: 18px;
    padding: 24px 18px;
  }

  .diagram-lines > div {
    grid-template-columns: 70px 1fr;
    gap: 10px;
    padding: 14px;
  }

  .process-grid,
  .process-proof-grid,
  .value-grid,
  .proof-grid,
  .devices-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid--compact .proof-media {
    max-height: 340px;
  }

  .proof-grid--compact .proof-meta {
    padding: 14px 15px 16px;
  }

  .proof-meta-row {
    align-items: flex-start;
  }

  .proof-open-hint {
    right: 10px;
    bottom: 10px;
  }

  .lightbox {
    align-items: stretch;
    padding: 0;
  }

  .lightbox-panel {
    width: 100vw;
    max-width: none;
    height: 100dvh;
    max-height: none;
    border: 0;
    border-radius: 0;
  }

  .lightbox-image-wrap {
    max-height: calc(100dvh - 96px);
    padding: 62px 8px 0;
  }

  .lightbox-image-wrap img {
    width: 100%;
    max-width: 100%;
    max-height: none;
  }

  .lightbox-caption {
    min-height: 96px;
    padding: 14px 58px 16px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    z-index: 3;
  }

  .lightbox-nav {
    top: auto;
    bottom: 20px;
    width: 42px;
    height: 50px;
    transform: none;
    border-radius: 12px;
  }

  .lightbox-nav--previous {
    left: 8px;
  }

  .lightbox-nav--next {
    right: 8px;
  }

  .process-grid article {
    min-height: 170px;
  }

  .process-grid article > span {
    margin-bottom: 22px;
  }

  .value-grid article,
  .value-grid article:nth-child(2n),
  .value-grid article:nth-child(3n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-grid article:last-child {
    border-bottom: 0;
  }

  .value-grid article {
    min-height: auto;
    padding: 20px 18px;
  }

  .price-card {
    padding: 26px 20px 22px;
  }

  .plan-topline {
    margin-bottom: 18px;
  }

  .price-card h3 {
    margin-bottom: 12px;
  }

  .audience {
    margin-top: 18px;
    padding-top: 14px;
  }

  .price-card ul {
    gap: 9px;
    margin: 14px 0 20px;
  }

  .plan-note {
    margin-top: 14px;
  }

  .comparison-wrap h3 {
    font-size: 1.3rem;
  }

  .value-comparison > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .devices-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .devices-grid > div {
    min-height: 125px;
  }

  .identity-card > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer {
    padding-bottom: 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-sticky {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 17, 15, 0.98);
    color: var(--white);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -16px 50px rgba(0, 0, 0, 0.28);
  }

  .mobile-sticky.is-hidden {
    display: none;
  }

  .mobile-sticky > div {
    display: grid;
    flex: 0 0 auto;
    line-height: 1.25;
  }

  .mobile-sticky strong {
    font-size: 0.78rem;
  }

  .mobile-sticky small {
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.62rem;
  }

  .mobile-sticky .button {
    min-height: 54px;
    flex: 1 1 auto;
    padding: 10px 14px;
    font-size: 0.76rem;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
  }

  .cookie-actions {
    flex-direction: column-reverse;
  }

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

  .legal-page {
    padding-top: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ── Checkout modal ───────────────────────────────────────── */
.checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 12, 9, 0.72);
  backdrop-filter: blur(6px);
  overflow-y: auto;
  animation: checkout-fade 0.2s ease;
}
@keyframes checkout-fade { from { opacity: 0; } to { opacity: 1; } }
.checkout-modal {
  position: relative;
  width: min(480px, 100%);
  margin: auto;
  background: var(--paper);
  color: var(--text);
  border-radius: 24px;
  box-shadow: 0 40px 120px rgba(2, 10, 7, 0.6);
  padding: 26px;
  animation: checkout-rise 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes checkout-rise { from { transform: translateY(16px); opacity: 0; } to { transform: none; opacity: 1; } }
.checkout-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 17, 15, 0.06);
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}
.checkout-close:hover { background: rgba(7, 17, 15, 0.12); }

.checkout-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--green-soft);
  background: linear-gradient(135deg, var(--green-soft), #eefaf1);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 22px;
}
.checkout-plan-name { display: block; font-size: 1.15rem; font-weight: 900; }
.checkout-plan-tag { display: inline-flex; align-items: center; gap: 7px; margin-top: 4px; color: var(--green-dark); font-size: 0.74rem; font-weight: 700; }
.checkout-price-wrap { text-align: right; }
.checkout-price b { font-family: var(--display); font-size: 1.9rem; letter-spacing: -0.04em; color: var(--green-dark); }
.checkout-price small { color: var(--muted); font-size: 0.72rem; }
.checkout-guarantee { display: block; margin-top: 2px; color: var(--green-dark); font-size: 0.72rem; font-weight: 800; }

.checkout-form h2 { margin: 0 0 6px; font-size: 1.35rem; }
.checkout-lead { margin: 0 0 20px; color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

.field { display: block; margin-bottom: 16px; }
.field > span { display: block; margin-bottom: 7px; font-size: 0.82rem; font-weight: 800; color: var(--text); }
.field input,
.phone-country {
  width: 100%;
  border: 1px solid #cdd6d0;
  border-radius: 12px;
  background: var(--white);
  padding: 13px 15px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input::placeholder { color: #9aa8a1; }
.field input:focus,
.phone-country:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(46, 212, 122, 0.18);
}
.phone-row { display: flex; gap: 10px; }
.phone-country { width: auto; flex: 0 0 220px; min-width: 0; font-weight: 700; cursor: pointer; }
.phone-row input { flex: 1; }

.checkout-reassure {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--green-soft);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 4px 0 18px;
}
.checkout-reassure-ico {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-dark);
  flex: 0 0 auto;
  font-size: 0.95rem;
}
.checkout-reassure strong { display: block; color: var(--green-dark); font-size: 0.9rem; }
.checkout-reassure p { margin: 3px 0 0; color: #35564a; font-size: 0.8rem; line-height: 1.5; }

.checkout-error {
  margin: 0 0 14px;
  color: #b4231f;
  background: #fbe9e8;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.84rem;
  font-weight: 700;
}

.checkout-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  position: relative;
}
.checkout-submit[data-loading] .checkout-submit-label { visibility: hidden; }
.checkout-submit-spinner {
  display: none;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: checkout-spin 0.7s linear infinite;
}
.checkout-submit[data-loading] .checkout-submit-spinner { display: block; }
@keyframes checkout-spin { to { transform: rotate(360deg); } }

.checkout-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.checkout-redirect { text-align: center; padding: 30px 10px 14px; }
.checkout-redirect strong { display: block; margin-top: 18px; font-size: 1.2rem; }
.checkout-redirect p { margin: 6px 0 0; color: var(--muted); font-size: 0.9rem; }
.checkout-spinner-lg {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border: 4px solid var(--green-soft);
  border-top-color: var(--green-dark);
  border-radius: 50%;
  animation: checkout-spin 0.8s linear infinite;
}

body.checkout-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .checkout-overlay, .checkout-modal { animation: none; }
  .checkout-spinner-lg, .checkout-submit-spinner { animation-duration: 1.4s; }
}
@media (max-width: 520px) {
  .checkout-modal { padding: 22px 18px; border-radius: 20px; }
  .checkout-summary { flex-direction: column; align-items: flex-start; gap: 10px; }
  .checkout-price-wrap { text-align: left; }
  .phone-row { display: grid; grid-template-columns: minmax(0, 1fr); }
  .phone-country { width: 100%; flex-basis: auto; }
}

/* Plan button: keep label tidy, centered, no awkward mid-word breaks */
.button-plan {
  text-align: center;
  line-height: 1.25;
  text-wrap: balance;
  gap: 6px;
  font-size: 0.92rem;
  padding-left: 14px;
  padding-right: 14px;
  white-space: nowrap;
}
@media (max-width: 380px) { .button-plan { white-space: normal; } }

/* Plan cards: features stay left-aligned like the original design */
.price-card { text-align: left; }
.price-card li { text-align: left; }

/* ── Pricing cards: match the reference (standalone) design ── */
.pricing-section .price-card {
  border-radius: 24px;
  padding: 32px 28px 26px;
}
.pricing-section .price-card.featured {
  border: 2px solid var(--green-dark);
  box-shadow: 0 24px 54px rgba(18, 138, 75, 0.14);
}
.pricing-section .plan-badge {
  top: -16px;
  left: 24px;
  padding: 7px 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: 999px;
}
.pricing-section .price-card h3 {
  font-family: "Archivo", var(--display);
  font-weight: 800;
  letter-spacing: -0.015em;
  font-size: 1.35rem;
  min-height: auto;
  margin: 18px 0 8px;
}
.pricing-section .price { align-items: baseline; gap: 10px; }
.pricing-section .price strong {
  font-family: "Archivo", var(--display);
  font-weight: 800;
  font-size: 2.9rem;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.pricing-section .price > span { font-size: 0.8rem; }
.pricing-section .monthly { font-weight: 700; margin-top: 8px; }
.pricing-section .per-screen { font-size: 0.85rem; font-weight: 700; margin-top: 2px; }
.pricing-section .audience {
  margin-top: 22px;
  padding-top: 20px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  font-weight: 700;
}
.pricing-section .price-card li { font-size: 0.92rem; }

/* Pill CTA buttons like the reference: outline for standard, solid for featured */
.pricing-section .button-plan {
  width: 100%;
  border-radius: 999px;
  padding: 15px 24px;
  border: 2px solid var(--green-dark);
  background: transparent;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.pricing-section .button-plan:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(18, 138, 75, 0.18); }
.pricing-section .featured .button-plan {
  background: #0f7a43;
  border-color: #0f7a43;
  color: #fff;
}
.pricing-section .featured .button-plan:hover { box-shadow: 0 12px 30px rgba(15, 122, 67, 0.35); }
.pricing-section .plan-note { text-align: center; font-size: 0.78rem; margin-top: 14px; }

/* ── Mobile: compact cookie banner + chat launcher placement ── */
@media (max-width: 600px) {
  .cookie-banner {
    right: 10px !important; left: 10px !important; width: auto !important;
    bottom: calc(92px + env(safe-area-inset-bottom)) !important;
    gap: 12px !important;            /* was 28px — main cause of the tall banner */
    padding: 14px 15px !important;
    border-radius: 16px !important;
  }
  .cookie-banner strong { font-size: .9rem; margin-bottom: 2px; }
  .cookie-banner p { font-size: .72rem !important; line-height: 1.45; }
  /* .cookie-actions is flex, and holds THREE buttons stacked (142px).
     Grid them 2-up with the primary spanning the last row. */
  .cookie-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .cookie-choice { min-height: 40px; font-size: .73rem; padding: 8px 9px; }
  .cookie-choice--primary { grid-column: 1 / -1; }

  /* Chat button stays usable while the banner is open: park it top-right
     instead of hiding it (previously display:none, which is why the chat
     seemed to "appear late" on phones). */
  body:has(.cookie-banner:not([hidden])) .tveh-chat-launcher {
    bottom: auto !important;
    top: calc(12px + env(safe-area-inset-top)) !important;
    right: 12px !important;
  }
}
