:root {
  --bg: #080a0b;
  --bg-deep: #050706;
  --bg-contact: #07100c;
  --panel: #0c0f10;
  --panel-2: #121618;
  --panel-3: #0b1110;
  --panel-green: #172418;
  --line: rgba(42, 52, 48, 0.9);
  --line-soft: rgba(42, 52, 48, 0.65);
  --green: #a6d232;
  --green-bright: #a7df2d;
  --green-mobile: #a6e827;
  --text: #f4f8f5;
  --text-white: #ffffff;
  --soft: #dbe7df;
  --muted: #a1b1aa;
  --muted-2: #a8b7b1;
  --dim: #71847d;
  --black: #080a0b;
  --radius: 8px;
  --shadow-green: 0 0 70px rgba(166, 210, 50, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Inter var", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

.section-dark {
  background: var(--bg);
}

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

.section-deep {
  background: var(--bg-deep);
}

.section-contact {
  background: var(--bg-contact);
}

.section-inner {
  width: min(1216px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 34px;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: 0 72px;
}

.nav-shell {
  width: min(1296px, 100%);
  height: 62px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  width: 174px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: var(--radius);
}

.brand img,
.footer-brand img {
  width: 148px;
  height: auto;
}

.nav-links {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(166, 210, 50, 0.13);
  border-radius: var(--radius);
  padding: 4px;
  background: rgba(8, 10, 11, 0.44);
  backdrop-filter: blur(16px);
}

.nav-links a {
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: var(--radius);
  color: var(--soft);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--text);
  background: rgba(166, 210, 50, 0.18);
  outline: 0;
}

.nav-links a.is-active {
  border: 1px solid rgba(166, 210, 50, 0.45);
}

.nav-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-cta,
.button-primary {
  background: var(--green);
  color: var(--black);
}

.button-primary:hover,
.button-primary:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(166, 210, 50, 0.2);
  outline: 0;
}

.button-secondary {
  background: rgba(166, 210, 50, 0.08);
  border-color: rgba(166, 210, 50, 0.46);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-1px);
  border-color: var(--green);
  outline: 0;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.button-dark {
  background: var(--black);
  color: var(--text);
}

.button-outline-dark {
  background: transparent;
  border-color: rgba(8, 10, 11, 0.45);
  color: var(--black);
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 900px;
  position: relative;
  overflow: hidden;
  padding-top: 174px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 28%, rgba(166, 210, 50, 0.16), transparent 27%),
    linear-gradient(180deg, rgba(8, 10, 11, 0), #080a0b 90%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1296px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 608px 612px;
  align-items: center;
  gap: 76px;
}

.hero-copy {
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 606px;
  color: var(--text);
  font-size: 88px;
  font-weight: 800;
  line-height: 92px;
}

.hero-copy h2 {
  max-width: 608px;
  color: var(--green);
  font-size: 42px;
  font-weight: 700;
  line-height: 50px;
}

.hero-intro {
  max-width: 606px;
  color: var(--soft);
  font-size: 19px;
  font-weight: 400;
  line-height: 31px;
}

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

.hero-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 21px;
}

.hero-visual {
  position: relative;
  width: 612px;
  height: 560px;
  border: 1px solid rgba(166, 210, 50, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 22, 24, 0.96), rgba(12, 15, 16, 0.98)),
    radial-gradient(circle at 62% 26%, rgba(166, 210, 50, 0.24), transparent 34%);
  box-shadow: var(--shadow-green);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 33px;
  border: 1px solid rgba(166, 210, 50, 0.12);
  border-radius: 50%;
}

.orbital {
  position: absolute;
  inset: 0;
}

.orbital span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 28px rgba(166, 210, 50, 0.8);
}

.orbital span:nth-child(1) {
  top: 72px;
  right: 126px;
}

.orbital span:nth-child(2) {
  right: 74px;
  bottom: 136px;
}

.orbital span:nth-child(3) {
  left: 90px;
  bottom: 104px;
}

.console-panel {
  position: absolute;
  left: 55px;
  top: 73px;
  width: 500px;
  min-height: 330px;
  border: 1px solid rgba(42, 52, 48, 0.9);
  border-radius: var(--radius);
  background: #0c0f10;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.console-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.console-top b {
  margin-left: auto;
  color: var(--green);
  font-size: 11px;
  line-height: 15px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(166, 210, 50, 0.9);
}

.console-panel > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
  max-width: 390px;
}

.traffic-table {
  display: grid;
  gap: 10px;
}

.traffic-table div {
  display: grid;
  grid-template-columns: 88px 1fr 72px;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  border: 1px solid rgba(42, 52, 48, 0.82);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(18, 22, 24, 0.72);
}

.traffic-table span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
}

.traffic-table strong {
  color: var(--text);
  font-size: 13px;
  line-height: 18px;
}

.traffic-table em {
  color: var(--soft);
  font-size: 12px;
  font-style: normal;
  text-align: right;
}

.metric-card {
  position: absolute;
  width: 104px;
  height: 78px;
  border: 1px solid rgba(166, 210, 50, 0.36);
  border-radius: var(--radius);
  background: rgba(8, 10, 11, 0.82);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 14px;
}

.metric-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 14px;
}

.metric-card strong {
  color: var(--green);
  font-size: 24px;
  line-height: 28px;
}

.metric-card-a {
  left: 78px;
  bottom: 48px;
}

.metric-card-b {
  right: 70px;
  bottom: 70px;
}

.proof-strip {
  min-height: 238px;
  padding: 48px 0 58px;
}

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

.proof-card {
  min-height: 132px;
  border: 1px solid rgba(42, 52, 48, 0.85);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.proof-card strong {
  color: var(--text);
  font-size: 34px;
  font-weight: 800;
  line-height: 38px;
}

.proof-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 21px;
}

.cookbook {
  min-height: 1120px;
  padding: 86px 0 92px;
}

.cookbook-grid {
  display: grid;
  grid-template-columns: 516px 1fr;
  gap: 80px;
  align-items: start;
}

.cookbook-copy {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.cookbook-copy h2,
.platform-head h2,
.features-copy h2,
.pricing-head h2,
.traffic-head h2,
.resources-head h2,
.contact-title h2 {
  color: var(--text);
  font-size: 52px;
  font-weight: 800;
  line-height: 61px;
}

.cookbook-copy p:not(.eyebrow),
.platform-head p,
.pricing-head p,
.traffic-head p,
.resources-head p,
.contact-title p {
  color: var(--soft);
  font-size: 17px;
  line-height: 29px;
}

.differentiators {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 30px;
}

.differentiators h3 {
  color: var(--text);
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
  margin-bottom: 12px;
}

.differentiators > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 24px;
}

.diff-list {
  display: grid;
  gap: 14px;
}

.diff-list article,
.feature-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  border-top: 1px solid rgba(42, 52, 48, 0.72);
  padding-top: 15px;
}

.diff-list span,
.feature-row span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  line-height: 19px;
}

.diff-list h4,
.feature-row h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  line-height: 24px;
  margin-bottom: 4px;
}

.diff-list p,
.feature-row p {
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
}

.install-band {
  min-height: 250px;
  margin-top: 58px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--black);
  display: grid;
  grid-template-columns: 422px 1fr;
  gap: 48px;
  align-items: center;
  padding: 36px 38px;
  overflow: hidden;
}

.dark-eyebrow {
  color: rgba(8, 10, 11, 0.74);
}

.install-band h3 {
  font-size: 36px;
  font-weight: 800;
  line-height: 42px;
  margin: 8px 0 12px;
}

.install-band p:not(.eyebrow) {
  color: rgba(8, 10, 11, 0.82);
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
}

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

.install-steps li {
  min-height: 142px;
  border: 1px solid rgba(8, 10, 11, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(8, 10, 11, 0.08);
}

.install-steps span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
  margin-bottom: 12px;
}

.install-steps strong {
  display: block;
  font-size: 17px;
  line-height: 22px;
  margin-bottom: 8px;
}

.install-steps em {
  display: block;
  color: rgba(8, 10, 11, 0.78);
  font-size: 13px;
  font-style: normal;
  line-height: 19px;
}

.platform-story {
  min-height: 660px;
  padding: 86px 0;
}

.platform-head {
  display: grid;
  grid-template-columns: 520px 560px;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 38px;
}

.platform-head h2 {
  font-size: 50px;
  line-height: 58px;
}

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

.workflow-card {
  min-height: 300px;
  border: 1px solid rgba(42, 52, 48, 0.9);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.workflow-card:nth-child(even) {
  background: var(--panel-2);
}

.workflow-card.is-highlight {
  border-color: rgba(166, 210, 50, 0.58);
}

.workflow-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
}

.workflow-card h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  line-height: 24px;
}

.workflow-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 19px;
}

.features {
  min-height: 880px;
  padding: 82px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 92px;
}

.features-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features-copy h2 {
  font-size: 48px;
  line-height: 56px;
}

.feature-list {
  display: grid;
  gap: 24px;
}

.feature-row {
  min-height: 134px;
  border: 1px solid rgba(42, 52, 48, 0.9);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 28px;
  grid-template-columns: 64px 1fr;
}

.feature-row h3 {
  font-size: 24px;
  line-height: 31px;
}

.feature-row p {
  color: var(--soft);
  font-size: 15px;
  line-height: 24px;
}

.feature-page {
  background: var(--bg);
}

.feature-page-hero {
  min-height: 760px;
  padding: 162px 0 92px;
  display: flex;
  align-items: center;
}

.feature-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: 78px;
}

.feature-hero-copy {
  max-width: 790px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-hero-copy h1 {
  color: var(--text);
  font-size: 68px;
  font-weight: 800;
  line-height: 74px;
}

.feature-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted-2);
  font-size: 19px;
  line-height: 31px;
}

.feature-signal-board {
  min-height: 476px;
  border: 1px solid rgba(166, 210, 50, 0.28);
  border-radius: var(--radius);
  background: #0b1110;
  box-shadow: var(--shadow-green);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.signal-board-head {
  min-height: 46px;
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.signal-board-head span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(166, 210, 50, 0.55);
}

.signal-board-head strong {
  color: var(--text);
  font-size: 15px;
  line-height: 20px;
}

.signal-board-head em {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(166, 210, 50, 0.4);
  border-radius: var(--radius);
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 16px;
  padding: 0 10px;
}

.signal-lanes {
  display: grid;
  gap: 14px;
}

.signal-lanes div {
  min-height: 76px;
  border: 1px solid rgba(42, 52, 48, 0.9);
  border-radius: var(--radius);
  background: #080d0c;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 16px;
  row-gap: 5px;
  padding: 15px 16px;
}

.signal-lanes span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
  text-transform: uppercase;
}

.signal-lanes strong {
  color: var(--text);
  font-size: 17px;
  line-height: 23px;
}

.signal-lanes em {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 16px;
  text-align: right;
}

.feature-overview {
  min-height: 880px;
  padding: 82px 0;
}

.feature-overview-grid {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 92px;
}

.feature-page-list {
  display: grid;
  gap: 36px;
}

.feature-page-row {
  min-height: 118px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 84px;
  align-items: center;
  gap: 28px;
  border-top: 1px solid rgba(42, 52, 48, 0.84);
  padding: 20px 0;
}

.feature-page-row:first-child {
  border-top: 0;
}

.feature-page-row > span {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(166, 210, 50, 0.4);
  border-radius: 999px;
  background: rgba(166, 210, 50, 0.15);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  line-height: 20px;
}

.feature-page-row h3 {
  color: var(--text);
  font-size: 25px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 7px;
}

.feature-page-row p {
  color: var(--muted);
  font-size: 15px;
  line-height: 23px;
}

.feature-page-row em {
  justify-self: end;
  min-width: 64px;
  min-height: 38px;
  border: 1px solid rgba(166, 210, 50, 0.26);
  border-radius: var(--radius);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 16px;
}

.feature-deep-dive {
  padding: 96px 0 108px;
}

.feature-deep-head {
  max-width: 820px;
  margin-bottom: 42px;
}

.feature-deep-head h2 {
  color: var(--text);
  font-size: 52px;
  font-weight: 800;
  line-height: 60px;
  margin: 14px 0 16px;
}

.feature-deep-head p:not(.eyebrow) {
  color: var(--muted-2);
  font-size: 17px;
  line-height: 27px;
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-detail {
  min-height: 376px;
  scroll-margin-top: 96px;
  border: 1px solid rgba(42, 52, 48, 0.9);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-detail:hover,
.feature-detail:focus-within {
  transform: translateY(-2px);
  border-color: rgba(166, 210, 50, 0.62);
}

.feature-detail > span {
  width: 58px;
  height: 46px;
  border: 1px solid rgba(166, 210, 50, 0.36);
  border-radius: var(--radius);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 14px;
}

.feature-detail h3 {
  color: var(--text);
  font-size: 26px;
  font-weight: 800;
  line-height: 32px;
}

.feature-detail p {
  color: var(--muted-2);
  font-size: 15px;
  line-height: 24px;
}

.feature-detail ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.feature-detail li {
  color: var(--soft);
  font-size: 14px;
  line-height: 21px;
  padding-left: 20px;
  position: relative;
}

.feature-detail li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  position: absolute;
  left: 0;
  top: 7px;
}

.feature-cta {
  background: var(--green-bright);
  padding: 82px 0;
}

.feature-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.feature-cta p {
  color: rgba(8, 10, 11, 0.72);
  font-size: 13px;
  font-weight: 800;
  line-height: 18px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.feature-cta h2 {
  color: var(--black);
  font-size: 44px;
  font-weight: 800;
  line-height: 52px;
}

.feature-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.legal-page {
  background: var(--bg);
}

.legal-hero {
  min-height: 430px;
  padding: 164px 0 72px;
  display: flex;
  align-items: flex-end;
}

.legal-hero-copy {
  max-width: 920px;
}

.legal-hero h1 {
  color: var(--text);
  font-size: 62px;
  font-weight: 800;
  line-height: 70px;
  margin-top: 14px;
}

.legal-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted-2);
  font-size: 18px;
  line-height: 29px;
  margin-top: 18px;
}

.legal-content {
  padding: 86px 0 104px;
  background: var(--panel);
}

.legal-document {
  max-width: 940px;
  display: grid;
  gap: 24px;
}

.legal-document h2 {
  color: var(--text);
  font-size: 30px;
  font-weight: 800;
  line-height: 38px;
  margin-top: 10px;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p {
  color: var(--muted-2);
  font-size: 16px;
  line-height: 28px;
}

.legal-document strong {
  color: var(--text);
}

.legal-company {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.pricing {
  min-height: 690px;
  padding: 82px 0;
}

.pricing-head {
  min-height: 126px;
  display: grid;
  grid-template-columns: 620px 520px;
  justify-content: space-between;
  margin-bottom: 42px;
}

.pricing-head h2 {
  font-size: 46px;
  line-height: 54px;
}

.pricing-head p {
  font-size: 16px;
  line-height: 26px;
}

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

.price-card {
  min-height: 380px;
  border: 1px solid rgba(42, 52, 48, 0.9);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card-featured {
  background: var(--panel-green);
  border-color: rgba(166, 210, 50, 0.68);
}

.plan-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.plan-heading h3 {
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  line-height: 29px;
}

.plan-heading span {
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
  text-align: right;
}

.price-card-featured .plan-heading span,
.price-card-featured .price-row {
  color: var(--green);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--text);
}

.price-row strong {
  min-width: 190px;
  font-size: 42px;
  font-weight: 800;
  line-height: 50px;
}

.price-row span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
}

.price-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
}

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

.price-card li {
  position: relative;
  color: var(--soft);
  font-size: 13px;
  line-height: 19px;
  padding-left: 18px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.traffic {
  min-height: 940px;
  padding: 86px 0 78px;
}

.traffic-head {
  margin-bottom: 48px;
}

.traffic-head h2 {
  max-width: 760px;
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 28px;
}

.traffic-head p {
  max-width: 780px;
  font-size: 17px;
  line-height: 28px;
}

.traffic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.traffic-card {
  min-height: 250px;
  border: 1px solid rgba(42, 52, 48, 0.9);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.traffic-card.is-highlight {
  background: #141f16;
  border-color: rgba(166, 210, 50, 0.7);
}

.traffic-icon {
  width: 86px;
  height: 86px;
  border: 1px solid rgba(166, 210, 50, 0.48);
  border-radius: var(--radius);
  background: rgba(166, 210, 50, 0.12);
  position: relative;
}

.traffic-card.is-highlight .traffic-icon {
  background: rgba(166, 210, 50, 0.24);
}

.traffic-icon::before,
.traffic-icon::after {
  content: "";
  position: absolute;
  border: 2px solid var(--green);
}

.traffic-icon-az::before {
  left: 20px;
  top: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.traffic-icon-az::after {
  left: 30px;
  top: 41px;
  width: 26px;
  height: 0;
  border-width: 2px 0 0;
  transform: rotate(-35deg);
}

.traffic-icon-us::before {
  left: 22px;
  top: 22px;
  width: 42px;
  height: 30px;
  border-radius: 6px;
}

.traffic-icon-us::after {
  left: 30px;
  top: 60px;
  width: 26px;
  height: 0;
  border-width: 2px 0 0;
}

.traffic-icon-origin::before {
  left: 21px;
  top: 24px;
  width: 40px;
  height: 40px;
  border-radius: 10px 10px 50% 50%;
  transform: rotate(45deg);
}

.traffic-icon-origin::after {
  left: 39px;
  top: 39px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.traffic-card h3 {
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
  line-height: 31px;
}

.traffic-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 19px;
}

.contact-band {
  min-height: 246px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--black);
  display: grid;
  grid-template-columns: 600px 420px;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  padding: 36px 38px;
}

.contact-band h3 {
  font-size: 36px;
  font-weight: 800;
  line-height: 42px;
  margin-bottom: 14px;
}

.contact-band p {
  color: rgba(8, 10, 11, 0.82);
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
}

.contact-band address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--black);
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 22px;
}

.boundary-cta {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background: var(--green-bright);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 82px 24px;
}

.boundary-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(8, 10, 11, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.42;
}

.boundary-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.node {
  position: absolute;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(8, 10, 11, 0.22);
  border-radius: var(--radius);
  background: rgba(244, 248, 245, 0.44);
  box-shadow: 0 18px 48px rgba(8, 10, 11, 0.1);
}

.node::before,
.node::after {
  content: "";
  position: absolute;
  background: rgba(8, 10, 11, 0.58);
}

.node::before {
  left: 24px;
  right: 24px;
  top: 32px;
  height: 3px;
}

.node::after {
  left: 30px;
  right: 30px;
  top: 44px;
  height: 3px;
}

.node-a {
  left: 120px;
  top: 96px;
  transform: rotate(-11deg);
}

.node-b {
  left: 216px;
  bottom: 86px;
  transform: rotate(9deg);
}

.node-c {
  right: 168px;
  top: 74px;
  transform: rotate(13deg);
}

.node-d {
  right: 108px;
  bottom: 124px;
  transform: rotate(-10deg);
}

.node-e {
  left: 42%;
  top: 48px;
  transform: rotate(5deg);
}

.node-f {
  left: 55%;
  bottom: 54px;
  transform: rotate(-7deg);
}

.boundary-content {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.boundary-content p {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(8, 10, 11, 0.28);
  border-radius: var(--radius);
  padding: 0 14px;
  color: rgba(8, 10, 11, 0.78);
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
  text-transform: uppercase;
}

.boundary-content h2 {
  margin: 22px 0 18px;
  color: var(--black);
  font-size: 58px;
  font-weight: 800;
  line-height: 66px;
}

.boundary-content > span {
  max-width: 760px;
  color: rgba(8, 10, 11, 0.82);
  font-size: 18px;
  line-height: 29px;
}

.boundary-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.resources {
  min-height: 1280px;
  padding: 88px 0 104px;
}

.resources-head {
  max-width: 820px;
  margin-bottom: 42px;
}

.resources-head h2 {
  font-size: 52px;
  line-height: 60px;
  margin: 14px 0 16px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 42px;
}

.tool-card {
  min-height: 342px;
  border: 1px solid rgba(42, 52, 48, 0.9);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.tool-card:hover,
.tool-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(166, 210, 50, 0.62);
  outline: 0;
}

.tool-card > span {
  width: 58px;
  height: 46px;
  border: 1px solid rgba(166, 210, 50, 0.36);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  line-height: 14px;
}

.tool-card h3 {
  color: var(--text);
  font-size: 26px;
  font-weight: 800;
  line-height: 32px;
}

.tool-card p {
  color: var(--muted-2);
  font-size: 15px;
  line-height: 24px;
}

.tool-card em {
  margin-top: auto;
  color: var(--green);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px;
}

.resource-panel {
  min-height: 360px;
  border: 1px solid rgba(42, 52, 48, 0.9);
  border-radius: var(--radius);
  background: #0a0f0d;
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 54px;
  padding: 38px;
}

.resource-panel h3 {
  color: var(--text);
  font-size: 32px;
  font-weight: 800;
  line-height: 39px;
  margin-top: 14px;
}

.resource-links {
  display: grid;
  gap: 18px;
}

.resource-links a {
  min-height: 128px;
  border: 1px solid rgba(42, 52, 48, 0.9);
  border-radius: var(--radius);
  background: rgba(11, 17, 16, 0.94);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.resource-links strong {
  color: var(--text);
  font-size: 20px;
  line-height: 26px;
}

.resource-links span {
  color: var(--muted-2);
  font-size: 14px;
  line-height: 22px;
}

.resource-links em {
  color: var(--green);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 19px;
}

.contact-page {
  min-height: 1640px;
  padding: 88px 0 120px;
}

.contact-title {
  max-width: 980px;
  text-align: center;
  margin-bottom: 54px;
}

.contact-title h2 {
  color: var(--text-white);
  font-size: 48px;
  line-height: 56px;
  margin: 14px 0;
}

.contact-title p {
  max-width: 820px;
  margin: 0 auto 14px;
  color: var(--muted-2);
  font-size: 18px;
  line-height: 28px;
}

.contact-title a {
  color: var(--green-bright);
  font-size: 15px;
  font-weight: 800;
  line-height: 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: start;
}

.contact-info,
.channel-finder {
  min-height: 1180px;
  border-radius: var(--radius);
  padding: 30px 32px 44px;
}

.contact-info {
  border: 1px solid #263432;
  background: #0a0f0d;
}

.channel-finder {
  border: 1px solid rgba(167, 223, 45, 0.35);
  background: rgba(11, 17, 16, 0.94);
}

.contact-info > h3,
.channel-finder > h3 {
  color: var(--text-white);
  font-size: 26px;
  font-weight: 800;
  line-height: 32px;
  margin-bottom: 8px;
}

.contact-info > p,
.channel-finder > p {
  color: var(--muted-2);
  font-size: 15px;
  line-height: 23px;
  margin-bottom: 16px;
}

.info-block {
  min-height: 126px;
  border: 1px solid #263432;
  border-radius: var(--radius);
  background: rgba(11, 17, 16, 0.92);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.info-block-primary {
  background: var(--green-bright);
  border-color: var(--green-bright);
}

.info-block h4 {
  color: var(--text-white);
  font-size: 20px;
  font-weight: 800;
  line-height: 26px;
}

.info-block a {
  color: var(--muted-2);
  font-size: 15px;
  line-height: 21px;
  word-break: break-word;
}

.info-block-primary h4,
.info-block-primary a {
  color: var(--black);
}

.message-box {
  border: 1px solid #2b493f;
  border-radius: var(--radius);
  background: #0b1411;
  padding: 18px;
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.message-box h4 {
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  line-height: 27px;
}

.message-box p {
  color: var(--muted-2);
  font-size: 14px;
  line-height: 18px;
}

.input-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.message-box label {
  display: grid;
  gap: 6px;
}

.message-box label span {
  color: #8fa39c;
  font-size: 13px;
  line-height: 18px;
}

.message-box input:not([type="checkbox"]),
.message-box select,
.message-box textarea {
  width: 100%;
  border: 1px solid #244139;
  border-radius: var(--radius);
  background: #08110f;
  color: var(--text);
  padding: 12px 14px;
  outline: 0;
}

.message-box input:not([type="checkbox"]),
.message-box select {
  height: 42px;
}

.message-box select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--green-mobile) 50%),
    linear-gradient(135deg, var(--green-mobile) 50%, transparent 50%);
  background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.message-box textarea {
  min-height: 116px;
  resize: vertical;
}

.message-box input:not([type="checkbox"]):focus,
.message-box select:focus,
.message-box textarea:focus {
  border-color: var(--green-mobile);
}

.message-box .form-consent {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
}

.message-box .form-consent input[type="checkbox"] {
  flex: 0 0 18px;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: var(--green-mobile);
  margin: 1px 0 0;
  padding: 0;
}

.message-box .form-consent span {
  color: #9eb0aa;
  font-size: 13px;
  line-height: 19px;
}

.form-actions {
  display: grid;
  gap: 8px;
}

.message-box .button {
  width: 100%;
  min-height: 42px;
}

.form-status {
  min-height: 18px;
  color: var(--green-mobile);
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
}

.form-status.is-error {
  color: #ff9f7a;
}

.channel-finder {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.channel-row {
  min-height: 82px;
  border: 1px solid #22312e;
  border-radius: var(--radius);
  background: rgba(11, 17, 16, 0.9);
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
}

.channel-row > span {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(167, 223, 45, 0.36);
  border-radius: 12px;
  background: #101a16;
  color: var(--green-bright);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 16px;
}

.channel-row strong {
  display: block;
  color: var(--text-white);
  font-size: 15px;
  line-height: 22px;
}

.channel-row em {
  display: block;
  color: var(--muted-2);
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
  word-break: break-word;
}

.channel-row-accent,
.channel-row-ticket {
  border-color: #6ca80f;
  background: #0b1411;
}

.cal-panel {
  min-height: 408px;
  border: 1px solid #6ca80f;
  border-radius: var(--radius);
  background: #0b1411;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cal-head {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
}

.cal-head > span {
  height: 26px;
  border-radius: 6px;
  background: var(--green-mobile);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.cal-head strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  line-height: 21px;
}

.cal-head em,
.cal-panel p {
  color: #7e928b;
  font-size: 12px;
  font-style: normal;
  line-height: 15px;
}

.cal-panel p {
  color: var(--green-mobile);
  font-weight: 800;
  text-transform: uppercase;
}

.meeting-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meeting-types span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #244139;
  border-radius: var(--radius);
  background: #08110f;
  color: #a6b7b0;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
}

.meeting-types .is-selected {
  background: var(--green-mobile);
  border-color: var(--green-mobile);
  color: var(--black);
}

.calendar-strip {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.calendar-strip span {
  height: 56px;
  border: 1px solid #244139;
  border-radius: var(--radius);
  background: #08110f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
}

.footer {
  min-height: 300px;
  background: var(--bg);
  display: grid;
  grid-template-columns: 430px repeat(3, 210px);
  justify-content: space-between;
  align-items: start;
  gap: 32px;
  padding: 58px 112px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand p {
  max-width: 380px;
  color: var(--muted);
  font-size: 15px;
  line-height: 24px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #2d7dff;
  border-radius: 999px;
  color: #2d7dff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: #2d7dff;
  border-color: #2d7dff;
  color: var(--text-white);
  transform: translateY(-1px);
  outline: 0;
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h3 {
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 20px;
  margin-bottom: 8px;
}

.footer-column a {
  color: var(--muted);
  font-size: 14px;
  line-height: 23px;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--green);
  outline: 0;
}

.footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: center;
  gap: 18px;
  padding-top: 26px;
}

.footer-legal a {
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--green);
  outline: 0;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1280px) {
  .site-header {
    padding: 0 48px;
  }

  .hero-grid {
    grid-template-columns: minmax(430px, 1fr) minmax(430px, 0.9fr);
    gap: 44px;
  }

  .hero-visual {
    width: 100%;
  }

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

  .workflow-card {
    min-height: 236px;
  }

  .footer {
    padding-left: 48px;
    padding-right: 48px;
    grid-template-columns: 1.4fr repeat(3, 0.7fr);
  }
}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
    padding: 138px 0 72px;
  }

  .hero-grid,
  .feature-hero-grid,
  .cookbook-grid,
  .platform-head,
  .feature-overview-grid,
  .features-grid,
  .pricing-head,
  .contact-band,
  .feature-cta-grid,
  .resource-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-visual {
    max-width: 612px;
  }

  .install-band {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .traffic-grid,
  .tool-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-signal-board {
    max-width: 640px;
  }

  .feature-cta-actions {
    justify-content: flex-start;
  }

  .price-card,
  .traffic-card,
  .tool-card {
    min-height: auto;
  }

  .contact-info,
  .channel-finder {
    min-height: auto;
  }

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

@media (max-width: 760px) {
  :root {
    --bg: #03100c;
  }

  .section-inner {
    width: min(100% - 40px, 640px);
  }

  .site-header {
    position: absolute;
    top: 0;
    padding: 0 20px;
    background: rgba(3, 16, 12, 0.88);
    backdrop-filter: blur(18px);
  }

  .nav-shell {
    height: 66px;
  }

  .brand {
    width: auto;
    height: 44px;
  }

  .brand img {
    width: 112px;
  }

  .menu-toggle {
    display: inline-flex;
    width: 92px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid #244139;
    border-radius: var(--radius);
    background: #08110f;
    color: var(--green-mobile);
    font-size: 13px;
    font-weight: 800;
    line-height: 18px;
  }

  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 74px;
    height: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 8px;
    border-color: #244139;
    background: rgba(8, 17, 15, 0.98);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    height: 42px;
    justify-content: flex-start;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 110px;
    padding-bottom: 48px;
    background: #03100c;
  }

  .hero-grid {
    width: min(100% - 40px, 640px);
    gap: 32px;
  }

  .hero-copy {
    gap: 22px;
  }

  .hero-copy h1 {
    font-size: 56px;
    line-height: 62px;
  }

    .hero-copy h2,
    .feature-hero-copy h1,
    .legal-hero h1,
    .cookbook-copy h2,
    .platform-head h2,
    .features-copy h2,
    .legal-document h2,
    .feature-deep-head h2,
  .feature-cta h2,
  .pricing-head h2,
  .traffic-head h2,
  .resources-head h2,
  .contact-title h2 {
    font-size: 36px;
    line-height: 43px;
  }

    .hero-intro,
    .feature-hero-copy > p:not(.eyebrow),
    .legal-hero p:not(.eyebrow),
    .legal-document p,
    .feature-deep-head p:not(.eyebrow),
  .cookbook-copy p:not(.eyebrow),
  .platform-head p,
  .pricing-head p,
  .traffic-head p,
  .resources-head p,
  .contact-title p {
    font-size: 16px;
    line-height: 26px;
  }

  .hero-actions,
  .feature-cta-actions,
  .boundary-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-visual {
    height: 500px;
  }

  .console-panel {
    left: 18px;
    top: 52px;
    width: calc(100% - 36px);
    padding: 18px;
  }

  .traffic-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .traffic-table em {
    text-align: left;
  }

  .metric-card {
    width: 96px;
  }

  .metric-card-a {
    left: 24px;
    bottom: 26px;
  }

  .metric-card-b {
    right: 24px;
    bottom: 44px;
  }

    .proof-strip,
    .feature-page-hero,
    .legal-hero,
    .legal-content,
    .feature-overview,
  .feature-deep-dive,
  .cookbook,
  .platform-story,
  .features,
  .pricing,
  .traffic,
  .resources,
    .contact-page {
      min-height: auto;
      padding-top: 56px;
      padding-bottom: 56px;
    }

    .feature-page-hero {
      padding-top: 110px;
    }

    .legal-hero {
      min-height: 360px;
      align-items: flex-end;
    }

  .proof-grid,
  .install-steps,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: 118px;
  }

  .cookbook-grid,
  .feature-hero-grid,
  .feature-overview-grid,
  .features-grid {
    gap: 36px;
  }

  .differentiators,
  .feature-signal-board,
  .feature-detail,
  .price-card,
  .traffic-card,
  .tool-card,
  .resource-panel,
  .contact-info,
  .channel-finder {
    padding: 22px;
  }

  .diff-list article,
  .feature-row {
    grid-template-columns: 38px 1fr;
  }

  .feature-page-list {
    gap: 18px;
  }

  .feature-page-row {
    min-height: auto;
    grid-template-columns: 52px 1fr;
    align-items: start;
    gap: 18px;
    padding: 22px 0;
  }

  .feature-page-row > span {
    width: 52px;
    height: 52px;
  }

  .feature-page-row h3 {
    font-size: 22px;
    line-height: 28px;
  }

  .feature-page-row em {
    grid-column: 2;
    justify-self: start;
  }

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

  .feature-detail {
    min-height: auto;
  }

  .signal-lanes div {
    grid-template-columns: 1fr;
  }

  .signal-lanes em {
    grid-row: auto;
    grid-column: auto;
    text-align: left;
  }

  .install-band,
  .contact-band {
    min-height: auto;
    padding: 28px 22px;
    gap: 28px;
  }

  .install-band h3,
  .contact-band h3 {
    font-size: 30px;
    line-height: 36px;
  }

  .platform-head,
  .pricing-head,
  .traffic-head,
  .resources-head,
  .contact-title {
    margin-bottom: 30px;
  }

  .workflow-card {
    min-height: auto;
  }

  .feature-row {
    min-height: auto;
    padding: 22px;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .price-row strong {
    min-width: 0;
    font-size: 38px;
    line-height: 44px;
  }

  .boundary-cta {
    min-height: 540px;
    padding: 72px 20px;
  }

  .boundary-content h2 {
    font-size: 42px;
    line-height: 48px;
  }

  .boundary-content > span {
    font-size: 16px;
    line-height: 26px;
  }

  .node {
    width: 58px;
    height: 58px;
  }

  .node-a {
    left: 14px;
    top: 80px;
  }

  .node-b {
    left: 34px;
    bottom: 58px;
  }

  .node-c {
    right: 24px;
    top: 64px;
  }

  .node-d {
    right: 12px;
    bottom: 102px;
  }

  .node-e,
  .node-f {
    display: none;
  }

  .resource-panel {
    gap: 26px;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .channel-row {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .channel-row > span {
    width: 42px;
    height: 42px;
  }

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

    .footer {
      min-height: auto;
      grid-template-columns: 1fr;
      padding: 48px 20px;
    }

    .footer-legal {
      justify-content: flex-start;
      flex-wrap: wrap;
    }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 48px;
    line-height: 54px;
  }

    .hero-copy h2,
    .feature-hero-copy h1,
    .legal-hero h1,
    .cookbook-copy h2,
  .platform-head h2,
  .features-copy h2,
  .feature-deep-head h2,
  .feature-cta h2,
  .pricing-head h2,
  .traffic-head h2,
  .resources-head h2,
  .contact-title h2,
  .boundary-content h2 {
    font-size: 32px;
    line-height: 39px;
  }

  .proof-card strong {
    font-size: 30px;
    line-height: 36px;
  }

  .hero-visual {
    height: 480px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
