:root {
  --bg: #f7f4ec;
  --paper: rgba(255, 252, 244, 0.84);
  --paper-solid: #fffaf0;
  --ink: #171717;
  --muted: #66625c;
  --line: rgba(23, 23, 23, 0.14);
  --line-strong: rgba(23, 23, 23, 0.24);
  --green: #19a974;
  --blue: #2d6cdf;
  --violet: #8f58ff;
  --rose: #ff5c8a;
  --amber: #f2a900;
  --shadow: 0 30px 80px rgba(37, 31, 21, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 244, 236, 0.88) 38%, #f4efe3 100%),
    radial-gradient(circle at 18% 12%, rgba(45, 108, 223, 0.13), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(25, 169, 116, 0.12), transparent 24%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 23, 23, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 72%);
}

a {
  color: inherit;
}

.signal-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.34;
  pointer-events: none;
  z-index: 0;
}

.laser-field {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.laser {
  position: absolute;
  width: 72vw;
  height: 2px;
  transform-origin: left center;
  border-radius: 999px;
  filter: blur(0.2px);
  opacity: 0.46;
}

.laser::after {
  content: "";
  position: absolute;
  inset: -10px 0;
  background: inherit;
  filter: blur(16px);
  opacity: 0.38;
}

.laser-a {
  top: 154px;
  left: -14vw;
  transform: rotate(-12deg);
  background: linear-gradient(90deg, transparent, rgba(45, 108, 223, 0.9), transparent);
  animation: laserSweep 8s ease-in-out infinite;
}

.laser-b {
  top: 330px;
  right: -18vw;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(25, 169, 116, 0.82), transparent);
  animation: laserSweep 9.5s ease-in-out infinite reverse;
}

.laser-c {
  top: 520px;
  left: 12vw;
  width: 42vw;
  transform: rotate(7deg);
  background: linear-gradient(90deg, transparent, rgba(255, 92, 138, 0.74), transparent);
  animation: laserSweep 11s ease-in-out infinite;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 236, 0.76)),
    radial-gradient(circle at 65% 32%, rgba(45, 108, 223, 0.18), transparent 42%);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(23, 23, 23, 0.1);
}

.brand-core {
  position: absolute;
  inset: 8px;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 23, 23, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  font-weight: 860;
}

.brand-orbit {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(23, 23, 23, 0.14);
  border-radius: 999px;
}

.brand-beam {
  position: absolute;
  left: -10px;
  top: 22px;
  z-index: 1;
  width: 70px;
  height: 3px;
  transform: rotate(-24deg);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--green), transparent);
  box-shadow: 0 0 16px rgba(45, 108, 223, 0.32);
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0;
}

.brand-name strong {
  font-weight: 860;
}

.brand-name span {
  font-weight: 720;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  padding: 5px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(20px);
}

.nav a {
  padding: 9px 13px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.nav .nav-cta {
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
}

.nav .nav-guide {
  color: #245ac0;
  background: rgba(45, 108, 223, 0.07);
  border: 1px solid rgba(45, 108, 223, 0.14);
  border-radius: 999px;
  font-weight: 720;
}

.nav .nav-guide.active {
  color: #fff;
  background: #245ac0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
  gap: 54px;
  align-items: center;
  width: min(1220px, calc(100% - 36px));
  min-height: calc(100vh - 88px);
  margin: 0 auto;
  padding: 54px 0 86px;
}

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

.eyebrow {
  margin: 0 0 13px;
  color: #117a55;
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

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

h1 {
  max-width: 930px;
  margin-bottom: 24px;
  font-size: clamp(54px, 8.2vw, 112px);
  line-height: 0.91;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 710px;
  color: #45413b;
  font-size: 21px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 34px rgba(23, 23, 23, 0.18);
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 40px 0 0;
}

.proof-strip div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(16px);
}

.proof-strip dt {
  color: #4f4a43;
  font-size: 14px;
  font-weight: 720;
}

.proof-strip dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 820;
  line-height: 1.2;
}

.hero-panel {
  overflow: hidden;
  min-height: 0;
  padding: 22px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 240, 0.64)),
    radial-gradient(circle at 50% 18%, rgba(45, 108, 223, 0.16), transparent 34%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #45413b;
  font-size: 15px;
  font-weight: 720;
}

.panel-topline strong {
  color: #117a55;
  font-size: 16px;
  font-weight: 820;
}

.structure-map {
  display: grid;
  gap: 10px;
  margin: 18px 0 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(45, 108, 223, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.52);
}

.structure-node {
  display: grid;
  gap: 5px;
  min-height: 88px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.structure-node.main {
  background:
    linear-gradient(135deg, rgba(25, 169, 116, 0.1), rgba(255, 255, 255, 0.76));
}

.structure-node.linked {
  border-color: rgba(45, 108, 223, 0.22);
  background:
    linear-gradient(135deg, rgba(45, 108, 223, 0.12), rgba(255, 255, 255, 0.76));
}

.structure-node.accent {
  background:
    linear-gradient(135deg, rgba(255, 92, 138, 0.11), rgba(255, 255, 255, 0.76));
}

.structure-node:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 23, 23, 0.22);
  background: rgba(255, 255, 255, 0.84);
}

.structure-node span {
  color: #117a55;
  font-size: 12px;
  font-weight: 840;
}

.structure-node.linked span {
  color: #245ac0;
}

.structure-node.accent span {
  color: #b52d59;
}

.structure-node strong {
  font-size: 17px;
  line-height: 1.15;
}

.structure-node small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.structure-connector {
  width: 1px;
  height: 12px;
  margin-left: 24px;
  background: var(--line-strong);
}

.action-list {
  display: grid;
  gap: 8px;
}

.action-list a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: center;
  min-height: 70px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.action-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 23, 23, 0.26);
  background: rgba(255, 255, 255, 0.82);
}

.action-list strong {
  font-size: 16px;
}

.action-list small {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.action-dot {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 99px;
  box-shadow: 0 0 18px rgba(25, 169, 116, 0.4);
}

.action-dot.blue {
  background: var(--blue);
  box-shadow: 0 0 18px rgba(45, 108, 223, 0.38);
}

.action-dot.violet {
  background: var(--violet);
  box-shadow: 0 0 18px rgba(143, 88, 255, 0.34);
}

.action-dot.rose {
  background: var(--rose);
  box-shadow: 0 0 18px rgba(255, 92, 138, 0.38);
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 56px;
  border-top: 1px solid var(--line);
}

.content {
  color: #45413b;
  font-size: 19px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 780;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.text-link:hover {
  color: var(--blue);
}

.market-note {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.market-note span {
  display: block;
  margin-bottom: 8px;
  color: #117a55;
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.market-note p {
  margin-bottom: 0;
  color: #45413b;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.availability-grid,
.manager-grid,
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.availability-grid article,
.manager-grid article,
.checklist-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.availability-grid p,
.manager-grid p,
.checklist-grid span {
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.status-pill.live {
  background: rgba(25, 169, 116, 0.12);
  color: #117a55;
}

.status-pill.beta {
  background: rgba(45, 108, 223, 0.12);
  color: #245ac0;
}

.status-pill.wait {
  background: rgba(242, 169, 0, 0.13);
  color: #7a5600;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px solid var(--line);
}

.insight-grid .section-heading {
  grid-column: 1 / -1;
}

.insight-grid article {
  padding: 0 18px 0 0;
}

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

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

.cards .section-heading {
  grid-column: 1 / -1;
}

.card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 45px rgba(37, 31, 21, 0.06);
}

.card-index {
  display: inline-block;
  margin-bottom: 34px;
  color: #117a55;
  font-weight: 820;
}

.card p,
.steps span,
.compare-grid p,
.form-copy p,
.faq p,
.site-footer p {
  color: var(--muted);
}

.process,
.comparison,
.form-section,
.faq {
  border-top: 1px solid var(--line);
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 48px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.detail-section.reverse {
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 0.95fr);
}

.detail-section.reverse .detail-copy {
  order: 2;
}

.detail-copy p {
  color: #45413b;
  font-size: 19px;
}

.detail-list {
  display: grid;
  gap: 12px;
}

.detail-list div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.detail-list strong {
  color: var(--ink);
  font-size: 18px;
}

.detail-list span {
  color: var(--muted);
}

.manager-section,
.ad-format,
.checklist-section,
.technical-section,
.context-section,
.measurement-section,
.industry-section,
.sources-section,
.bulk-section {
  border-top: 1px solid var(--line);
}

.manager-section .section-heading p:last-child,
.measurement-section .section-heading p:last-child,
.industry-section .section-heading p:last-child,
.bulk-section .section-heading p:last-child {
  color: #45413b;
  font-size: 19px;
}

.manager-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.manager-grid article span {
  display: inline-block;
  margin-bottom: 30px;
  color: #117a55;
  font-weight: 840;
}

.technical-grid,
.bulk-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.industry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.technical-grid article,
.bulk-grid article,
.industry-grid article,
.hint-examples div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.technical-grid p,
.bulk-grid p,
.industry-grid p,
.hint-examples p {
  color: var(--muted);
}

.ad-format {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.58fr);
  gap: 48px;
  align-items: center;
}

.context-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
}

.context-copy p {
  color: #45413b;
  font-size: 19px;
}

.hint-examples {
  display: grid;
  gap: 12px;
}

.hint-examples span {
  display: inline-block;
  margin-bottom: 8px;
  color: #117a55;
  font-size: 13px;
  font-weight: 840;
  text-transform: uppercase;
}

.format-copy p {
  color: #45413b;
  font-size: 19px;
}

.ad-preview {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.ad-label {
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.ad-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ad-favicon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 840;
}

.ad-preview h3,
.ad-preview p {
  margin-bottom: 0;
}

.ad-preview p,
.ad-url {
  color: var(--muted);
}

.ad-image {
  display: grid;
  place-items: center;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(45, 108, 223, 0.12), rgba(25, 169, 116, 0.12)),
    rgba(255, 255, 255, 0.68);
  color: #245ac0;
  font-weight: 820;
}

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

.checklist-grid div {
  display: grid;
  gap: 8px;
}

.checklist-grid strong {
  font-size: 19px;
}

.metric-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.56);
}

.metric-table div {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) 1fr;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.metric-table div:last-child {
  border-bottom: 0;
}

.metric-table span {
  color: var(--muted);
}

.sources-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 56px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
}

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

.compare-grid div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  gap: 50px;
  align-items: start;
}

.form-section--early {
  margin-top: 20px;
  padding: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: #2c2924;
  font-size: 14px;
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 23, 23, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(45, 108, 223, 0.24);
  border-color: rgba(45, 108, 223, 0.5);
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 520;
}

.consent a {
  color: var(--ink);
  font-weight: 760;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.consent--optional {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 20px;
  font-weight: 760;
}

details p {
  max-width: 760px;
  margin: 12px 0 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) repeat(3, minmax(170px, 0.7fr));
  gap: 32px;
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: 48px 0 36px;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: #117a55;
  text-decoration: none;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--ink);
}

.footer-main p {
  max-width: 520px;
}

.footer-disclaimer {
  font-size: 14px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.footer-column p,
.footer-column a,
.footer-link-button {
  color: var(--muted);
  font-size: 14px;
}

.footer-column a:hover,
.footer-link-button:hover {
  color: var(--ink);
}

.footer-link-button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 22px 70px rgba(37, 31, 21, 0.16);
  backdrop-filter: blur(20px);
}

.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.thanks-page {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  width: min(980px, calc(100% - 36px));
  min-height: calc(100vh - 88px);
  margin: 0 auto;
  padding: 70px 0 92px;
}

.thanks-card {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(25, 169, 116, 0.08), rgba(45, 108, 223, 0.08)),
    rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.thanks-card h1 {
  max-width: 820px;
  font-size: clamp(46px, 7vw, 88px);
}

.thanks-card p {
  max-width: 760px;
  color: #45413b;
  font-size: 20px;
}

.thanks-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.thanks-next div {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.thanks-next span {
  color: #117a55;
  font-size: 12px;
  font-weight: 840;
}

.thanks-next strong {
  font-size: 18px;
}

.thanks-next small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.legal-page {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 70px 0 92px;
}

.article-page {
  position: relative;
  z-index: 1;
}

.article-hero,
.article-layout {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
}

.article-hero {
  padding: 78px 0 48px;
}

.article-hero h1 {
  max-width: 940px;
}

.article-lead {
  max-width: 820px;
  color: #45413b;
  font-size: 22px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.article-meta span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.article-meta a {
  color: inherit;
  text-underline-offset: 2px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: 54px;
  padding: 30px 0 92px;
  border-top: 1px solid var(--line);
}

.article-toc {
  position: sticky;
  top: 24px;
  display: grid;
  align-content: start;
  gap: 10px;
  height: fit-content;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
}

.article-toc strong {
  margin-bottom: 4px;
}

.article-toc a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.article-toc a:hover {
  color: var(--ink);
}

.article-content {
  display: grid;
  gap: 56px;
}

.article-content section {
  padding-bottom: 8px;
}

.article-content h2 {
  font-size: clamp(32px, 4.2vw, 56px);
}

.article-content p,
.article-content li {
  color: #45413b;
  font-size: 19px;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.article-callout,
.article-cta {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.article-callout p,
.article-cta p {
  margin-bottom: 0;
}

.article-steps,
.article-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.article-steps div,
.article-table div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.article-steps span {
  display: inline-block;
  margin-bottom: 18px;
  color: #117a55;
  font-weight: 840;
}

.article-table div {
  display: grid;
  gap: 8px;
}

.article-table span {
  color: var(--muted);
}

.article-cta {
  display: grid;
  gap: 12px;
  background:
    linear-gradient(135deg, rgba(45, 108, 223, 0.09), rgba(25, 169, 116, 0.09)),
    rgba(255, 255, 255, 0.7);
}

.article-cta .button {
  width: fit-content;
}

.legal-page h1 {
  font-size: clamp(48px, 7vw, 86px);
  overflow-wrap: anywhere;
}

.legal-page section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  font-size: clamp(26px, 3.2vw, 38px);
}

.legal-lead {
  color: #45413b;
  font-size: 20px;
}

.legal-page p {
  color: var(--muted);
  font-size: 17px;
}

.legal-page a {
  color: #117a55;
  font-weight: 760;
}

.legal-footer {
  grid-template-columns: minmax(280px, 1fr) minmax(220px, 0.42fr);
}

@keyframes laserSweep {
  0%, 100% {
    opacity: 0.32;
    translate: 0 0;
  }
  50% {
    opacity: 0.7;
    translate: 4vw 12px;
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    gap: 16px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    border-radius: 8px;
  }

  .hero,
  .split,
  .form-section,
  .detail-section,
  .detail-section.reverse,
  .ad-format,
  .context-section,
  .sources-section,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
  }

  .detail-section.reverse .detail-copy {
    order: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .cards,
  .insight-grid,
  .availability-grid,
  .manager-grid,
  .checklist-grid,
  .technical-grid,
  .bulk-grid,
  .industry-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-main,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer {
    display: grid;
  }

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

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .nav a {
    padding: 8px 10px;
    font-size: 13px;
  }

  h1 {
    font-size: 48px;
  }

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

  .proof-strip,
  .thanks-next,
  .cards,
  .insight-grid,
  .availability-grid,
  .manager-grid,
  .checklist-grid,
  .technical-grid,
  .bulk-grid,
  .industry-grid,
  .steps,
  .compare-grid,
  .article-steps,
  .article-table {
    grid-template-columns: 1fr;
  }

  .metric-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .section {
    padding: 58px 0;
  }

  .form-section--early {
    padding: 28px 20px;
  }
}

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

  .signal-canvas,
  .laser-field {
    display: none;
  }
}

/* Local correction: preserve the original layouts; style only added controls. */
.skip-link { position: absolute; left: 16px; top: -100px; z-index: 100; padding: 12px 18px; background: var(--ink); color: white; }
.skip-link:focus { top: 12px; }
.local-preview-note { position: relative; z-index: 2; padding: 10px 24px; background: #fff2ca; color: #4b3b15; font-size: 14px; text-align: center; }
.required-label { font-size: .85em; font-weight: 400; color: var(--muted); }
.form-preview-result { padding: 16px; border: 1px solid var(--blue); background: white; color: var(--ink); }
.form-preview-result:focus { outline: 2px solid var(--blue); outline-offset: 3px; }
.report-reminder { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 28px 0 56px; border-top: 1px solid var(--line); }
.report-reminder p { margin: 0; font-size: 20px; }
.anchor-target { position: absolute; }
#lista, #raport, #poradniki { scroll-margin-top: 24px; }
.brand-domain { color: var(--blue); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
@media (max-width: 640px) {
  .form-section--early { margin-inline: 0; }
  .report-reminder { align-items: flex-start; flex-direction: column; }
}
