:root {
  --ink: #101b17;
  --muted: #4d5d55;
  --paper: #f5f3ed;
  --paper-strong: #fdfcf8;
  --night: #03100b;
  --night-soft: #081a13;
  --jade: #35cf91;
  --jade-dark: #116444;
  --jade-soft: #e3f3ec;
  --coral: #ef6542;
  --orange: var(--coral);
  --line: rgba(18, 48, 36, 0.16);
  --line-dark: rgba(119, 235, 184, 0.17);
  --shadow: 0 28px 80px rgba(4, 19, 13, 0.14);
  --shadow-dark: 0 32px 100px rgba(0, 0, 0, 0.42);
  --radius: 18px;
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid #78e9ba;
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: #000;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: none !important;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(111, 227, 176, 0.12);
  color: #f5fff9;
  background: rgba(3, 16, 11, 0.9);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #f4fff9;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand > span:last-child > span {
  color: var(--jade);
}

.brand-mark {
  position: relative;
  width: 31px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 2px solid var(--jade);
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
}

.brand-mark i {
  width: 12px;
  height: 12px;
  border: 2px solid var(--jade);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(53, 207, 145, 0.5);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(15px, 2vw, 28px);
}

.primary-nav a {
  color: #b9cac1;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 760;
  transition: color 160ms ease;
}

.primary-nav a:hover {
  color: #fff;
}

.primary-nav .nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(82, 226, 160, 0.35);
  border-radius: 999px;
  color: #06140e;
  background: var(--jade);
}

.primary-nav .nav-cta:hover {
  color: #06140e;
  background: #65e3ad;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(60px, 7vw, 92px) 0 clamp(58px, 7vw, 88px);
  color: #effbf4;
  background:
    linear-gradient(rgba(111, 236, 179, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 236, 179, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 3%, rgba(35, 171, 110, 0.22), transparent 34%),
    var(--night);
  background-size: 40px 40px, 40px 40px, auto, auto;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 240px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: 270px;
  left: 50%;
  width: min(1100px, 96vw);
  aspect-ratio: 1.9;
  border-radius: 50%;
  background: rgba(41, 211, 139, 0.12);
  filter: blur(90px);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-copy {
  max-width: 1080px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--jade-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-card .eyebrow {
  color: #83e8b8;
}

.live-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 0 6px rgba(53, 207, 145, 0.1), 0 0 22px rgba(53, 207, 145, 0.75);
}

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

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(2.85rem, 6.2vw, 5.8rem);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  text-wrap: balance;
}

.hero-lead {
  max-width: 810px;
  margin: 25px auto 0;
  color: #bed1c6;
  font-size: clamp(1.14rem, 2vw, 1.45rem);
  line-height: 1.55;
  text-wrap: balance;
}

.hero-note {
  max-width: 700px;
  margin: 12px auto 0;
  color: #94aa9e;
  font-size: 0.94rem;
}

.hero-offer {
  max-width: 760px;
  margin: 17px auto 0;
  color: #c9ddd2;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.45;
}

.hero-offer strong {
  color: #f7fff9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.hero-trust {
  max-width: 790px;
  margin: 18px auto 0;
  color: #91a99c;
  font-size: 0.78rem;
  line-height: 1.5;
}

.hero-reassurance {
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 26px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.hero-reassurance li {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border: 1px solid rgba(126, 232, 184, 0.18);
  border-radius: 11px;
  color: #c7d8cf;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1.35;
}

.hero-reassurance span {
  color: var(--jade);
  font-weight: 900;
}

.hero-reassurance-3 {
  max-width: 860px;
  grid-template-columns: repeat(3, 1fr);
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 11px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #04110c;
  background: var(--jade);
  box-shadow: 0 14px 34px rgba(31, 197, 127, 0.22);
}

.btn-primary:hover {
  background: #62e4ad;
  box-shadow: 0 17px 42px rgba(31, 197, 127, 0.3);
}

.btn-secondary {
  border-color: rgba(209, 255, 234, 0.24);
  color: #f6fffa;
  background: rgba(255, 255, 255, 0.055);
}

.btn-secondary:hover {
  border-color: rgba(209, 255, 234, 0.44);
  background: rgba(255, 255, 255, 0.09);
}

.btn-dark {
  color: #effbf5;
  background: var(--night-soft);
  box-shadow: 0 14px 34px rgba(4, 19, 13, 0.13);
}

.btn-dark:hover {
  background: #123326;
}

.story-rail {
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: clamp(48px, 6vw, 78px) auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.story-rail li {
  position: relative;
  min-height: 84px;
  padding: 20px 18px;
  border-top: 1px solid rgba(102, 218, 166, 0.25);
  color: #90a69a;
}

.story-rail li::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 18px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #739386;
}

.story-rail li:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 16px;
  right: -5px;
  color: #3b5f50;
}

.story-rail li.is-active {
  border-color: var(--jade);
  color: #effff6;
}

.story-rail li.is-active::before {
  background: var(--jade);
  box-shadow: 0 0 15px rgba(53, 207, 145, 0.65);
}

.story-rail span {
  display: block;
  color: #729083;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.story-rail strong {
  display: block;
  margin-top: 4px;
  font-size: 0.83rem;
  line-height: 1.3;
}

.mission-stage {
  max-width: 980px;
  margin-top: clamp(40px, 6vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(104, 236, 175, 0.26);
  border-radius: 22px;
  background: #020a07;
  box-shadow: var(--shadow-dark), 0 0 0 1px rgba(119, 243, 186, 0.04) inset;
}

.window-bar {
  min-height: 48px;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(103, 225, 169, 0.14);
  color: #8da69a;
  background: #06120d;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #284237;
}

.window-dots i:first-child {
  background: #e26447;
}

.window-dots i:nth-child(2) {
  background: #c5a049;
}

.window-dots i:last-child {
  background: #37b77d;
}

.window-status {
  color: #91d8b7;
}

.window-status i {
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--jade);
}

.mission-screen {
  display: block;
  padding: clamp(16px, 3vw, 28px);
  background:
    radial-gradient(circle at 50% 12%, rgba(39, 196, 126, 0.09), transparent 38%),
    #020a07;
}

.mission-screen img {
  width: min(720px, 100%);
  height: auto;
  margin-inline: auto;
  border: 1px solid rgba(98, 221, 164, 0.13);
  border-radius: 9px;
  background: #030a08;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.mission-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 38px);
  border-top: 1px solid rgba(103, 225, 169, 0.14);
  background: #07140e;
}

.mission-caption p {
  max-width: 430px;
  margin: 0;
  color: #9eb0a7;
  font-size: 0.78rem;
}

.mission-caption p span {
  color: #eafff3;
  font-weight: 850;
}

.mission-caption ul {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #789084;
  font-size: 0.67rem;
  line-height: 1.25;
}

.mission-caption li {
  display: grid;
}

.mission-caption strong {
  color: var(--jade);
  font-size: 1rem;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: #fffefb;
}

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

.proof-grid p {
  min-height: 122px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  column-gap: 13px;
  margin: 0;
  padding: 24px clamp(12px, 3vw, 34px);
  border-left: 1px solid var(--line);
}

.proof-grid p:last-child {
  border-right: 1px solid var(--line);
}

.proof-grid p > span {
  grid-row: span 2;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--jade-dark);
  background: var(--jade-soft);
  font-size: 0.72rem;
  font-weight: 900;
}

.proof-grid strong {
  align-self: end;
  font-size: 0.87rem;
}

.proof-grid small {
  align-self: start;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.lead-capture {
  padding: clamp(58px, 7vw, 84px) 0;
  border-bottom: 1px solid var(--line);
  background: #fffefb;
}

.lead-capture-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(36px, 7vw, 90px);
}

.lead-capture-copy h2 {
  font-size: clamp(2.35rem, 4.7vw, 4.25rem);
}

.lead-capture-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
}

.lead-capture-copy .email-fallback {
  margin-top: 15px;
  font-size: 0.82rem;
}

.email-fallback a,
.cta-support a {
  font-weight: 800;
  text-underline-offset: 3px;
}

.form-shell {
  min-width: 0;
}

.permit-check-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.permit-check-form label {
  display: grid;
  gap: 7px;
  color: #263a31;
  font-size: 0.78rem;
  font-weight: 820;
}

.permit-check-form input,
.permit-check-form textarea,
.permit-check-form select {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(18, 48, 36, 0.24);
  border-radius: 9px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 0.92rem;
  line-height: 1.45;
}

.permit-check-form textarea {
  min-height: 96px;
  resize: vertical;
}

.permit-check-form input:focus,
.permit-check-form textarea:focus,
.permit-check-form select:focus {
  border-color: var(--jade-dark);
  outline: 3px solid rgba(53, 207, 145, 0.18);
  outline-offset: 1px;
}

.permit-check-form .form-wide {
  grid-column: 1 / -1;
}

.permit-check-form button {
  width: 100%;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.permit-check-form button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-privacy {
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.form-message {
  margin: 0;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: left;
}

.form-error {
  border: 1px solid rgba(190, 62, 35, 0.24);
  color: #702f21;
  background: #fff0ea;
}

.form-error a {
  font-weight: 850;
  text-underline-offset: 3px;
}

.form-success {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(17, 100, 68, 0.24);
  border-radius: var(--radius);
  background: var(--jade-soft);
  box-shadow: var(--shadow);
}

.form-success h3 {
  max-width: 520px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.form-success > p:last-child {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
}

.deliverables-section,
.included-section {
  background: var(--paper-strong);
}

.deliverables-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: clamp(44px, 8vw, 110px);
}

.deliverables-layout .section-heading > p:not(.eyebrow):not(.human-review-note) {
  max-width: 700px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.human-review-note {
  max-width: 650px;
  margin-top: 28px !important;
  padding: 17px 19px;
  border-left: 3px solid var(--jade-dark);
  color: #234438 !important;
  background: var(--jade-soft);
  font-size: 0.84rem !important;
}

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

.deliverables-list li {
  min-height: 84px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}

.deliverables-list span {
  color: var(--jade-dark);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.deliverables-list strong {
  font-size: clamp(0.93rem, 1.35vw, 1.08rem);
  line-height: 1.35;
}

.problem-section {
  padding-block: clamp(70px, 8vw, 105px);
  background: var(--paper);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: clamp(34px, 5vw, 52px) 0 28px;
  padding: 0;
  list-style: none;
}

.problem-grid li {
  min-height: 94px;
  display: flex;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1.35;
}

.difference-section {
  padding-block: clamp(70px, 8vw, 105px);
  color: #effbf5;
  background: var(--night-soft);
}

.difference-section .eyebrow {
  color: #83e8b8;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(36px, 5vw, 58px);
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.difference-grid article {
  min-height: 245px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--night-soft);
}

.difference-grid span {
  color: var(--jade);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.difference-grid h3 {
  margin: 54px 0 0;
  font-size: 1.15rem;
  line-height: 1.25;
}

.difference-grid p {
  margin: 14px 0 0;
  color: #a9bdb2;
  font-size: 0.86rem;
}

.section {
  padding: clamp(90px, 11vw, 156px) 0;
}

.section-heading {
  max-width: 850px;
}

.section-heading > p:last-child,
.packet-intro p,
.feature-copy > p,
.section-heading-split > p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.section-heading > p:last-child {
  max-width: 700px;
  margin: 25px 0 0;
}

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

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: clamp(48px, 6vw, 80px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

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

.workflow-grid.workflow-grid-three > li {
  min-height: 350px;
}

.workflow-grid > li {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 30px 25px;
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
  transition: background 200ms ease, transform 200ms ease;
}

.workflow-grid > li:last-child {
  border-right: 1px solid var(--line);
}

.workflow-grid > li:hover {
  z-index: 2;
  background: #fff;
  transform: translateY(-5px);
}

.workflow-grid .workflow-output {
  color: #effbf5;
  background: var(--night-soft);
}

.workflow-grid .workflow-output:hover {
  background: #0a2118;
}

.step-number {
  color: #56665e;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.step-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-top: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--jade-dark);
  background: var(--jade-soft);
  font-size: 1.2rem;
}

.workflow-output .step-icon {
  border-color: var(--line-dark);
  color: var(--jade);
  background: rgba(53, 207, 145, 0.09);
}

.workflow-output .step-number {
  color: #9db6aa;
}

.workflow-grid h3 {
  margin: 22px 0 0;
  font-size: 1.14rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

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

.workflow-output p {
  color: #a9bdb2;
}

.workflow-grid a {
  margin-top: auto;
  padding-top: 22px;
  color: var(--jade);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.feature-section {
  color: #effbf5;
  background: var(--night);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(46px, 8vw, 104px);
}

.feature-grid-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.feature-copy {
  position: sticky;
  top: 124px;
  padding-top: clamp(12px, 5vw, 70px);
}

.feature-copy h2 {
  max-width: 590px;
}

.feature-copy > p {
  max-width: 570px;
  margin: 28px 0 0;
}

.feature-section .feature-copy > p {
  color: #9db1a6;
}

.feature-checks {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.feature-checks li {
  position: relative;
  padding: 16px 0 16px 30px;
  border-bottom: 1px solid var(--line-dark);
  color: #c4d5cc;
  font-size: 0.84rem;
}

.feature-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--jade);
  font-weight: 900;
}

figure {
  margin: 0;
}

.interface-card,
.packet-page-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.interface-card {
  border: 1px solid rgba(101, 228, 169, 0.18);
  background: #06120d;
  box-shadow: var(--shadow-dark);
}

.interface-card > a,
.packet-page-card > a {
  display: block;
}

.interface-card img {
  width: 100%;
  height: auto;
  background: #020907;
}

.card-label {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 15px;
  border-bottom: 1px solid rgba(101, 228, 169, 0.14);
  color: #94aa9f;
  background: #081710;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.card-label span:last-child {
  color: var(--jade);
}

.card-label-light {
  border-bottom-color: var(--line);
  color: #536159;
  background: #eef1eb;
}

.card-label-light span:last-child {
  color: var(--jade-dark);
}

.interface-card figcaption,
.packet-page-card > figcaption {
  padding: 13px 15px;
  color: #8da299;
  background: #081710;
  font-size: 0.69rem;
}

.timeline-section {
  background: #e8ece6;
}

.section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: clamp(32px, 7vw, 96px);
}

.section-heading-split > p {
  margin: 0;
}

.timeline-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: start;
  gap: clamp(24px, 4vw, 50px);
  margin-top: clamp(48px, 7vw, 86px);
}

.timeline-pair .packet-page-card {
  margin-top: clamp(30px, 9vw, 130px);
}

.packet-page-card {
  border: 1px solid rgba(10, 31, 22, 0.16);
  background: #fff;
}

.packet-page-card img {
  width: 100%;
  height: auto;
  background: #fcfbf7;
}

.packet-page-card > figcaption {
  border-top: 1px solid var(--line);
  color: #58655f;
  background: #fbfcf8;
}

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

.findings-section .packet-page-card {
  max-width: 720px;
}

.review-sequence {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.review-sequence p {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.84rem;
}

.review-sequence span {
  color: #b83d20;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.plain-language-note {
  padding: 17px 18px;
  border-left: 3px solid var(--orange);
  color: #604b44 !important;
  background: #fff1eb;
  font-size: 0.8rem !important;
}

.packet-section {
  color: #edf9f3;
  background:
    radial-gradient(circle at 80% 8%, rgba(53, 207, 145, 0.1), transparent 25%),
    var(--night-soft);
}

.packet-section .eyebrow {
  color: #83e8b8;
}

.packet-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
}

.packet-intro p {
  margin: 0 0 24px;
  color: #a6b9af;
}

.packet-email-link {
  display: block;
  width: fit-content;
  margin-top: 16px;
  color: var(--jade);
  font-size: 0.78rem;
  font-weight: 850;
  text-underline-offset: 4px;
}

.packet-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(16px, 2.5vw, 30px);
  margin-top: clamp(58px, 8vw, 104px);
}

.packet-gallery .packet-page-card {
  border-color: rgba(218, 240, 229, 0.18);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  transition: transform 230ms ease, box-shadow 230ms ease;
}

.packet-gallery .packet-page-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

.packet-gallery figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c0d0c7;
  background: #0a2118;
  font-size: 0.72rem;
  font-weight: 800;
}

.packet-gallery figcaption span {
  color: var(--jade);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
}

.gallery-cover {
  grid-row: span 2;
}

.packet-gallery-compact .packet-page-card {
  max-width: 360px;
  justify-self: center;
}

.trust-section {
  background: #edf0ea;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(50px, 7vw, 90px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trust-grid article {
  min-height: 245px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.32);
}

.trust-grid span {
  color: var(--jade-dark);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.trust-grid h3 {
  margin: 64px 0 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.trust-grid p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.trust-limit {
  max-width: 950px;
  margin: 34px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--orange);
  color: #5e4e47;
  background: #fff8f3;
  font-size: 0.78rem;
}

.alternate-offer-section {
  padding: clamp(42px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.alternate-offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 18px 54px rgba(4, 19, 13, 0.08);
}

.alternate-offer-card h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 4vw, 3.35rem);
}

.alternate-offer-card a {
  color: var(--jade-dark);
  font-size: 0.88rem;
  font-weight: 850;
  text-underline-offset: 5px;
}

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

.development-hero h1 {
  max-width: 1040px;
}

.case-study-section {
  color: #effbf5;
  background:
    radial-gradient(circle at 76% 8%, rgba(53, 207, 145, 0.11), transparent 26%),
    var(--night);
}

.case-study-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.45fr);
  align-items: end;
  gap: clamp(32px, 7vw, 96px);
}

.case-study-heading .eyebrow,
.case-study-section .eyebrow {
  color: #83e8b8;
}

.proof-disclosure {
  padding: 17px 18px;
  border: 1px solid rgba(128, 232, 182, 0.2);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.78rem;
}

.proof-disclosure strong,
.proof-disclosure span {
  display: block;
}

.proof-disclosure span {
  margin-top: 3px;
  color: #9eb2a7;
}

.case-study-intro {
  max-width: 870px;
  margin: 25px 0 0;
  color: #9eb2a7;
  font-size: 0.85rem;
}

.report-pages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(15px, 2.5vw, 28px);
  margin-top: clamp(48px, 7vw, 86px);
}

.report-page {
  min-width: 0;
  min-height: 520px;
  padding: 0 24px 28px;
  border: 1px solid rgba(222, 239, 229, 0.18);
  border-radius: 13px;
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: var(--shadow-dark);
}

.report-page-top {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 -24px 27px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--line);
  color: #52645a;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.report-page-top span:first-child {
  color: var(--jade-dark);
}

.report-kicker {
  margin: 0;
  color: #7a5349;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.report-page h3 {
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.report-page > p:not(.report-kicker, .report-footnote) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.report-status {
  display: grid;
  gap: 4px;
  margin-top: 16px;
  padding: 13px 14px;
  border-radius: 9px;
}

.report-status span {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.report-status strong {
  font-size: 0.75rem;
  line-height: 1.35;
}

.report-status-supported {
  color: #164e38;
  background: var(--jade-soft);
}

.report-status-open {
  color: #713120;
  background: #fff0ea;
}

.report-list,
.report-action-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.report-list li {
  position: relative;
  padding: 13px 0 13px 21px;
  border-bottom: 1px solid var(--line);
  color: #33483e;
  font-size: 0.75rem;
  line-height: 1.4;
}

.report-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--jade-dark);
  font-weight: 900;
}

.report-footnote {
  margin: 20px 0 0;
  padding: 13px 14px;
  border-left: 3px solid var(--coral);
  color: #6a4a40;
  background: #fff5f0;
  font-size: 0.72rem;
}

.report-action-list li {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #33483e;
  font-size: 0.75rem;
  font-weight: 760;
  line-height: 1.4;
}

.report-action-list span {
  color: #b83d20;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.case-study-outcome {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(30px, 5vw, 52px);
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.case-study-outcome p {
  margin: 0;
  padding: clamp(21px, 3vw, 30px);
  color: #a9bdb2;
  background: var(--night-soft);
  font-size: 0.8rem;
}

.case-study-outcome strong {
  color: #effbf5;
}

.methodology-section {
  background: #edf0ea;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(48px, 7vw, 86px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.method-grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
}

.method-grid span {
  color: var(--jade-dark);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.method-grid h3 {
  margin: 60px 0 0;
  font-size: 1.06rem;
}

.method-grid p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.property-intake {
  background: #fffefb;
}

.final-cta {
  color: #eefaf4;
  background: var(--night);
}

.final-card {
  padding: clamp(38px, 7vw, 88px);
  border: 1px solid rgba(97, 232, 169, 0.2);
  border-radius: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(53, 207, 145, 0.16), transparent 42%),
    #071710;
  box-shadow: var(--shadow-dark);
}

.final-card h2 {
  max-width: 820px;
  margin-inline: auto;
}

.final-card > p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px auto 0;
  color: #9cb0a5;
}

.final-card > .cta-support {
  margin-top: 16px;
  font-size: 0.78rem;
}

.site-footer {
  padding: 50px 0;
  border-top: 1px solid rgba(98, 218, 164, 0.13);
  color: #a8bbb1;
  background: #020b07;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 34px;
}

.footer-brand {
  font-size: 1rem;
}

.footer-grid > div > p {
  margin: 12px 0 0;
  color: #70877b;
  font-size: 0.76rem;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer-grid nav a {
  color: #9cafa5;
  font-size: 0.75rem;
  font-weight: 750;
  text-decoration: none;
}

.footer-grid nav a:hover {
  color: #fff;
}

.footer-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(98, 218, 164, 0.1);
  color: #81978c;
  font-size: 0.7rem;
}

.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .primary-nav a:first-child {
    display: none;
  }

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

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

  .lead-capture-grid {
    grid-template-columns: 1fr;
  }

  .lead-capture-copy {
    max-width: 760px;
  }

  .deliverables-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .deliverables-list {
    width: min(100%, 820px);
  }

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

  .workflow-grid > li:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

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

  .workflow-grid > li:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .feature-grid,
  .feature-grid-reverse {
    grid-template-columns: 1fr;
  }

  .feature-grid-reverse .feature-copy {
    grid-row: 1;
  }

  .feature-copy {
    position: static;
    max-width: 760px;
    padding-top: 0;
  }

  .interface-card,
  .feature-grid > .packet-page-card {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .section-heading-split,
  .packet-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-heading-split > p,
  .packet-intro > div:last-child {
    max-width: 680px;
  }

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

  .gallery-cover {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(calc(100% - 28px), var(--wrap));
  }

  .nav-inner {
    min-height: 64px;
  }

  .primary-nav a:nth-child(2) {
    display: none;
  }

  .primary-nav {
    gap: 12px;
  }

  .primary-nav a {
    font-size: 0.74rem;
  }

  .primary-nav .nav-cta {
    padding: 8px 12px;
  }

  .hero {
    padding-top: 76px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .hero-reassurance,
  .difference-grid {
    grid-template-columns: 1fr;
  }

  .workflow-grid-three,
  .report-pages,
  .method-grid,
  .case-study-outcome,
  .trust-grid-three {
    grid-template-columns: 1fr;
  }

  .workflow-grid.workflow-grid-three > li {
    min-height: 300px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .workflow-grid.workflow-grid-three > li:last-child {
    border-bottom: 0;
  }

  .case-study-heading,
  .alternate-offer-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .report-page {
    width: min(100%, 560px);
    min-height: 0;
    justify-self: center;
  }

  .method-grid article {
    min-height: 220px;
  }

  .hero-reassurance {
    gap: 8px;
  }

  .hero-reassurance li {
    min-height: 48px;
  }

  .difference-grid article {
    min-height: 0;
  }

  .difference-grid h3 {
    margin-top: 30px;
  }

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

  .story-rail li:nth-child(2)::after,
  .story-rail li:last-child::after {
    content: "";
  }

  .story-rail li:nth-child(-n+2) {
    border-bottom: 1px solid rgba(102, 218, 166, 0.14);
  }

  .window-bar {
    grid-template-columns: 1fr auto;
  }

  .window-dots {
    display: none;
  }

  .mission-caption {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .proof-grid p,
  .proof-grid p:last-child {
    min-height: 92px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .proof-grid p:last-child {
    border-bottom: 0;
  }

  .timeline-pair {
    grid-template-columns: 1fr;
  }

  .timeline-pair .packet-page-card {
    width: min(100%, 720px);
    margin: 0 auto;
  }

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

  .footer-grid nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 0.98rem;
  }

  .brand-mark {
    width: 27px;
    height: 31px;
  }

  .primary-nav a:nth-child(3) {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(2.1rem, 10vw, 3.25rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-offer {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
  }

  .story-rail strong {
    font-size: 0.76rem;
  }

  .mission-stage {
    width: min(calc(100% - 14px), 980px);
    border-radius: 15px;
  }

  .window-bar {
    font-size: 0.58rem;
  }

  .window-status {
    display: none;
  }

  .mission-screen {
    padding: 8px;
  }

  .mission-caption ul {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .workflow-grid,
  .problem-grid,
  .packet-gallery,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .permit-check-form {
    grid-template-columns: 1fr;
  }

  .permit-check-form label,
  .permit-check-form .form-wide {
    grid-column: 1;
  }

  .workflow-grid > li {
    min-height: 330px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .workflow-grid > li:last-child {
    border-bottom: 0;
  }

  .step-icon {
    margin-top: 34px;
  }

  .trust-grid article {
    min-height: 210px;
  }

  .trust-grid h3 {
    margin-top: 44px;
  }
}

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

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

  .has-reveal [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Research examples and field notes */
.research-page {
  background: var(--paper);
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 9vw, 116px) 0 clamp(62px, 8vw, 94px);
  color: #effbf4;
  background:
    linear-gradient(rgba(111, 236, 179, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 236, 179, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 28% 0, rgba(53, 207, 145, 0.18), transparent 40%),
    var(--night);
  background-size: 40px 40px, 40px 40px, auto, auto;
}

.nightmare-hero {
  background:
    linear-gradient(rgba(239, 101, 66, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 101, 66, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 28% 0, rgba(239, 101, 66, 0.17), transparent 40%),
    var(--night);
  background-size: 40px 40px, 40px 40px, auto, auto;
}

.article-hero-inner {
  max-width: 980px;
}

.article-hero .eyebrow {
  color: #83e8b8;
}

.nightmare-hero .eyebrow {
  color: #ff9c81;
}

.article-hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(2.7rem, 6.5vw, 5.7rem);
  line-height: 0.98;
  text-align: left;
}

.article-deck {
  max-width: 790px;
  margin: 28px 0 0;
  color: #b7c9bf;
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  line-height: 1.55;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.article-meta span {
  padding: 7px 11px;
  border: 1px solid rgba(131, 232, 184, 0.2);
  border-radius: 999px;
  color: #d0e4d9;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.69rem;
  font-weight: 780;
}

.article-body {
  max-width: 940px;
  display: grid;
  gap: clamp(58px, 8vw, 96px);
  padding-top: clamp(58px, 8vw, 96px);
  padding-bottom: clamp(76px, 10vw, 128px);
}

.article-body > section > h2,
.article-body > aside h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4.3vw, 3.8rem);
  line-height: 1.02;
}

.article-body > section > p:not(.eyebrow),
.article-body > aside > p:not(.eyebrow) {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
}

.article-body em {
  color: #2a4a3d;
}

.article-disclosure,
.source-card,
.article-limit,
.format-sample {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 18px 54px rgba(4, 19, 13, 0.08);
}

.article-disclosure {
  border-left: 4px solid var(--coral);
}

.article-disclosure > strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  line-height: 1.15;
}

.article-disclosure > p {
  font-size: 0.9rem !important;
}

.source-card {
  border-left: 4px solid var(--jade-dark);
  background: var(--jade-soft);
}

.source-card h2 {
  font-size: clamp(1.65rem, 3vw, 2.6rem) !important;
}

.source-card a {
  color: var(--jade-dark);
  font-weight: 850;
  text-underline-offset: 4px;
}

.source-card > p:last-child {
  font-size: 0.78rem !important;
}

.evidence-grid,
.lane-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.evidence-grid article,
.lane-grid article {
  min-width: 0;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-strong);
}

.evidence-grid span,
.lane-label {
  color: var(--jade-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.evidence-grid h3,
.lane-grid h3 {
  margin: 38px 0 0;
  font-size: 1.05rem;
  line-height: 1.3;
}

.evidence-grid p,
.lane-grid article > p:not(.lane-label, .lane-meta) {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

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

.article-steps li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.article-steps li > span {
  color: var(--jade-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.article-steps strong {
  font-size: 1rem;
}

.article-steps p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.article-limit {
  border-left: 4px solid var(--coral);
  background: #fff7f2;
}

.article-limit h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.8rem) !important;
}

.article-cta {
  padding: clamp(34px, 6vw, 66px);
  border-radius: 20px;
  color: #eefaf4;
  background:
    radial-gradient(circle at 80% 0, rgba(53, 207, 145, 0.15), transparent 40%),
    var(--night-soft);
  box-shadow: var(--shadow-dark);
}

.article-cta .eyebrow {
  color: #83e8b8;
}

.article-cta > p:not(.eyebrow) {
  color: #a9bdb2 !important;
}

.article-cta .btn {
  margin-top: 26px;
}

.format-sample {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.format-sample h2 {
  font-size: clamp(1.75rem, 3.6vw, 3rem) !important;
}

.format-sample p:not(.eyebrow) {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.content-lanes {
  background: var(--paper);
}

.lane-grid {
  margin-top: clamp(42px, 6vw, 72px);
}

.lane-grid article {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
}

.lane-grid h3 {
  margin-top: 50px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  letter-spacing: -0.025em;
}

.lane-grid .lane-meta {
  margin: auto 0 0;
  padding-top: 24px;
  color: #66786f;
  font-size: 0.7rem;
}

.lane-grid a {
  margin-top: 18px;
  color: var(--jade-dark);
  font-size: 0.8rem;
  font-weight: 850;
  text-underline-offset: 4px;
}

.nightmare-page .evidence-grid span {
  color: #b83d20;
}

@media (max-width: 760px) {
  .evidence-grid,
  .lane-grid,
  .format-sample {
    grid-template-columns: 1fr;
  }

  .lane-grid article {
    min-height: 0;
  }

  .lane-grid .lane-meta {
    margin-top: 28px;
  }
}

@media (max-width: 560px) {
  .research-page .primary-nav a:not(.nav-cta) {
    display: none;
  }

  .research-page .primary-nav .nav-cta {
    display: inline-flex !important;
  }

  .article-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .article-steps li {
    grid-template-columns: 34px minmax(0, 1fr);
  }
}
