:root {
  --ink: #08261f;
  --ink-2: #173a32;
  --muted: #557069;
  --line: #d9e6de;
  --paper: #f4f8ef;
  --paper-2: #fff8ea;
  --white: #ffffff;
  --green: #00b77b;
  --green-deep: #006b4f;
  --green-soft: #dff7ec;
  --mint: #bfeee0;
  --cyan: #6ad8d4;
  --cyan-soft: #e0f7f6;
  --amber: #f5c84c;
  --amber-soft: #fff3c7;
  --coral: #ff725c;
  --coral-soft: #ffe5dd;
  --shadow: 0 24px 70px rgba(8, 38, 31, 0.12);
  --shadow-soft: 0 14px 34px rgba(8, 38, 31, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--paper), #ffffff 42%, var(--paper-2));
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--ink);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header[data-elevated="true"] {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(8, 38, 31, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 38px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-size: 18px;
  line-height: 1;
}

.brand-domain {
  margin-left: 5px;
  color: var(--green-deep);
  font-size: 21px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 760;
}

.nav-links a {
  opacity: 0.78;
}

.nav-links a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0, 107, 79, 0.2);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.lang-toggle {
  width: 48px;
  cursor: pointer;
  font-weight: 800;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--green-deep);
  border-color: var(--green-deep);
  font-weight: 820;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ink);
  isolation: isolate;
  background:
    linear-gradient(180deg, #eef9ef 0%, #f8f5e9 62%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image: var(--hero-bg-image, url("assets/a2b-data-flow-en.svg"));
  background-size: cover;
  background-position: center 30%;
  opacity: 0.08;
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 68%);
}

.hero-backdrop {
  position: absolute;
  inset: 98px 0 auto;
  z-index: -3;
  height: 52px;
  background: var(--green-deep);
  opacity: 0.96;
}

.hero-product {
  position: absolute;
  left: 50%;
  top: 128px;
  z-index: -2;
  width: min(920px, 86vw);
  transform: translateX(-50%);
  opacity: 0.82;
  pointer-events: none;
}

.product-window {
  overflow: hidden;
  border: 1px solid rgba(0, 107, 79, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.product-topbar {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.product-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.product-topbar span:nth-child(2) {
  background: var(--amber);
}

.product-topbar span:nth-child(3) {
  background: var(--green);
}

.product-layout {
  display: grid;
  grid-template-columns: 150px minmax(240px, 1fr) 210px;
  gap: 18px;
  padding: 20px;
}

.product-sidebar,
.product-thread,
.product-panel {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.product-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.product-sidebar strong {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 18px;
}

.product-sidebar span {
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--green-soft);
}

.product-thread {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 18px;
}

.thread-card {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdf9;
  box-shadow: 0 10px 22px rgba(8, 38, 31, 0.06);
}

.thread-card.accent-green {
  border-color: rgba(0, 183, 123, 0.32);
  background: linear-gradient(135deg, var(--green-soft), #ffffff);
}

.thread-card span,
.product-panel > span {
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.thread-card strong {
  font-size: 18px;
  line-height: 1.2;
}

.thread-card small {
  color: var(--muted);
}

.product-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px;
}

.health-row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 34px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f3faf4;
  color: var(--ink-2);
  font-size: 13px;
}

.health-row i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.health-row em {
  color: var(--green-deep);
  font-style: normal;
  font-weight: 850;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 390px;
  padding-bottom: 60px;
  text-align: center;
}

.status-pill,
.eyebrow,
.plan-label {
  margin: 0 0 14px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 107, 79, 0.2);
  border-radius: 999px;
  padding: 9px 14px;
  box-shadow: 0 10px 26px rgba(8, 38, 31, 0.08);
}

.hero h1,
.section h2,
.access-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(66px, 13vw, 150px);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-kicker {
  max-width: 940px;
  margin: 24px auto 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 730px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.access-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 840;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--green-deep);
  box-shadow: 0 12px 24px rgba(0, 107, 79, 0.2);
}

.button.primary:hover {
  background: #00553f;
}

.button.secondary {
  color: var(--ink);
  border-color: rgba(0, 107, 79, 0.28);
  background: rgba(255, 255, 255, 0.7);
}

.button.full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  margin: 38px auto 0;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid rgba(0, 107, 79, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.hero-metrics dt {
  color: var(--ink);
  font-weight: 860;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.launch-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 6vw, 84px);
  color: var(--white);
  background: var(--green-deep);
}

.launch-strip strong {
  margin-right: 10px;
}

.launch-strip span {
  color: rgba(255, 255, 255, 0.78);
}

.launch-strip a {
  min-width: max-content;
  color: var(--amber);
  font-weight: 860;
}

.section {
  scroll-margin-top: 86px;
  padding: clamp(70px, 9vw, 118px) clamp(18px, 6vw, 84px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 5.2vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.visual-copy p:not(.eyebrow),
.access-copy p:not(.eyebrow) {
  max-width: 770px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.price-card,
.node-panel,
.diagram-frame,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.price-card {
  padding: 24px;
}

.feature-card:nth-child(1) {
  background: linear-gradient(180deg, #ffffff, var(--green-soft));
}

.feature-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, var(--cyan-soft));
}

.feature-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, var(--amber-soft));
}

.feature-card:nth-child(4) {
  background: linear-gradient(180deg, #ffffff, var(--coral-soft));
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-deep);
  font-size: 12px;
  font-weight: 860;
}

.feature-card h3,
.price-card h3,
.node-copy h3,
.policy-grid h3 {
  margin: 18px 0 8px;
  font-size: 21px;
  line-height: 1.2;
}

.feature-card p,
.price-card p,
.node-copy li,
.policy-grid li {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  background:
    linear-gradient(90deg, #ffffff, var(--paper) 68%, var(--green-soft));
}

.node-panel {
  padding: 24px;
  overflow: hidden;
}

.node-map {
  position: relative;
  min-height: 270px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 107, 79, 0.18), transparent 28%),
    radial-gradient(circle at 18% 22%, rgba(60, 201, 210, 0.2), transparent 19%),
    radial-gradient(circle at 82% 24%, rgba(253, 186, 70, 0.22), transparent 18%),
    linear-gradient(90deg, rgba(0, 107, 79, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 107, 79, 0.08) 1px, transparent 1px),
    #f7fbf5;
  background-size: auto, auto, auto, 34px 34px, 34px 34px, auto;
}

.node-map::before,
.node-map::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0, 107, 79, 0.14);
}

.node-map::after {
  inset: 58px 92px;
  border-color: rgba(60, 201, 210, 0.2);
}

.orbit-ring,
.link,
.edge,
.server-node,
.micro-node {
  position: absolute;
  display: block;
}

.orbit-ring {
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 50%;
}

.ring-a {
  left: 12%;
  top: 14%;
  width: 76%;
  height: 66%;
}

.ring-b {
  left: 25%;
  top: 24%;
  width: 50%;
  height: 48%;
  border-color: rgba(0, 107, 79, 0.18);
}

.link,
.edge {
  height: 2px;
  border-radius: 999px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(0, 107, 79, 0), rgba(0, 107, 79, 0.48), rgba(60, 201, 210, 0));
}

.link-a {
  left: 21%;
  top: 30%;
  width: 58%;
  transform: rotate(2deg);
}

.link-b {
  left: 30%;
  top: 62%;
  width: 46%;
  transform: rotate(-15deg);
}

.link-c {
  left: 22%;
  top: 34%;
  width: 36%;
  transform: rotate(43deg);
}

.link-d {
  left: 51%;
  top: 46%;
  width: 34%;
  transform: rotate(-44deg);
}

.edge {
  height: 1px;
  opacity: 0.7;
  background: linear-gradient(90deg, rgba(253, 186, 70, 0), rgba(253, 186, 70, 0.62), rgba(253, 186, 70, 0));
}

.edge-a {
  left: 16%;
  top: 70%;
  width: 32%;
  transform: rotate(-18deg);
}

.edge-b {
  right: 14%;
  top: 30%;
  width: 22%;
  transform: rotate(42deg);
}

.edge-c {
  left: 46%;
  top: 24%;
  width: 28%;
  transform: rotate(35deg);
}

.edge-d {
  left: 34%;
  bottom: 22%;
  width: 38%;
  transform: rotate(12deg);
}

.server-node {
  width: 62px;
  height: 62px;
  border: 10px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 18px 40px rgba(16, 24, 32, 0.16), 0 0 0 1px rgba(16, 24, 32, 0.04);
  z-index: 2;
}

.server-node::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(0, 107, 79, 0.16);
  border-radius: 50%;
}

.server-node i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    -13px 0 0 rgba(255, 255, 255, 0.55),
    13px 0 0 rgba(255, 255, 255, 0.55);
  transform: translate(-50%, -50%);
}

.server-node.hub {
  left: calc(50% - 36px);
  top: calc(48% - 36px);
  width: 72px;
  height: 72px;
  background: var(--green);
}

.server-node.active {
  left: 15%;
  top: 18%;
  background: var(--green);
}

.server-node.amber {
  right: 15%;
  top: 17%;
  background: var(--amber);
}

.server-node.coral {
  left: 28%;
  bottom: 13%;
  background: var(--coral);
}

.server-node.cyan {
  right: 10%;
  bottom: 18%;
  background: var(--cyan);
}

.server-node.mint {
  left: 13%;
  bottom: 18%;
  background: #8ee2bd;
}

.micro-node {
  width: 11px;
  height: 11px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 8px 18px rgba(16, 24, 32, 0.16);
}

.micro-a {
  left: 45%;
  top: 17%;
}

.micro-b {
  right: 30%;
  bottom: 16%;
  background: var(--amber);
}

.micro-c {
  left: 9%;
  top: 52%;
  background: var(--cyan);
}

.micro-d {
  right: 8%;
  top: 54%;
  background: var(--coral);
}

.node-copy {
  padding: 10px 2px 2px;
}

.node-copy ul,
.policy-grid ul,
.price-card ul {
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.node-copy li,
.policy-grid li,
.price-card li {
  position: relative;
  padding-left: 22px;
  margin-top: 10px;
}

.node-copy li::before,
.policy-grid li::before,
.price-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.visual-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  background: #ffffff;
}

.diagram-frame {
  margin: 0;
  padding: 10px;
}

.diagram-frame img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.diagram-frame figcaption {
  padding: 11px 4px 2px;
  color: var(--muted);
  font-size: 14px;
}

.compliance-band {
  background:
    linear-gradient(135deg, var(--ink), #073f31 72%, #0d5b44);
  color: var(--white);
}

.compliance-band .section-heading p,
.compliance-band .policy-grid li {
  color: rgba(255, 255, 255, 0.75);
}

.compliance-band h2,
.compliance-band .eyebrow {
  color: var(--white);
}

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

.policy-grid > div {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.pricing-section {
  background:
    linear-gradient(180deg, #ffffff, var(--paper-2));
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price-card.highlighted {
  border-color: rgba(0, 183, 123, 0.5);
  background: linear-gradient(180deg, #ffffff, var(--green-soft));
  box-shadow: 0 20px 48px rgba(0, 107, 79, 0.16);
}

.price-card h3 {
  margin: 0;
  color: var(--green-deep);
  font-size: 38px;
}

.price-card h3 span {
  color: var(--muted);
  font-size: 16px;
}

.price-card p:not(.plan-label) {
  margin: 10px 0 0;
}

.pricing-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.access-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 520px);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  background:
    linear-gradient(135deg, var(--paper), #ffffff 58%, var(--cyan-soft));
}

.access-list {
  justify-content: flex-start;
  margin-top: 28px;
}

.access-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 780;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: #ffffff;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 760;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  padding: 12px 12px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 183, 123, 0.16);
}

.checkbox-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
}

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

.checkbox-row a,
.privacy-section a {
  color: var(--green-deep);
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green-deep);
  font-weight: 760;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 38px clamp(18px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer p {
  max-width: 560px;
  margin: 12px 0 0;
}

.site-footer .company-details {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 760;
}

.footer-brand .brand-mark {
  color: var(--ink);
  background: var(--white);
}

.footer-brand .brand-domain {
  color: var(--green);
}

.privacy-page {
  background: linear-gradient(180deg, var(--paper), #ffffff 48%, var(--paper-2));
}

.privacy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
}

.privacy-main {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 82px) 0;
}

.privacy-section {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.privacy-section + .privacy-section {
  margin-top: 28px;
}

.privacy-section h1,
.privacy-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  letter-spacing: 0;
}

.privacy-section h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 0.98;
}

.privacy-section h2 {
  margin: 30px 0 10px;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.08;
}

.privacy-section p,
.privacy-section li {
  color: var(--muted);
  font-size: 17px;
}

.privacy-section ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.privacy-updated {
  margin: 14px 0 0;
  color: var(--green-deep);
  font-weight: 780;
}

@media (max-width: 1040px) {
  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .visual-section,
  .access-section {
    grid-template-columns: 1fr;
  }

  .section-heading.compact {
    margin-bottom: 30px;
  }

  .product-layout {
    grid-template-columns: 120px 1fr;
  }

  .product-panel {
    display: none;
  }
}

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

  .nav-links {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header-cta {
    padding: 0 12px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-backdrop {
    top: 82px;
    height: 44px;
  }

  .hero-product {
    top: 116px;
    width: calc(100% - 24px);
    opacity: 0.68;
  }

  .product-layout {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .product-sidebar {
    display: none;
  }

  .product-thread {
    min-height: 210px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 355px;
    padding-bottom: 46px;
  }

  .hero-metrics,
  .policy-grid,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .launch-strip {
    display: block;
  }

  .launch-strip a {
    display: inline-flex;
    margin-top: 10px;
  }

  .visual-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .access-list {
    justify-content: flex-start;
  }

  .site-footer {
    display: block;
  }

  .privacy-header {
    display: block;
  }

  .privacy-header .footer-links {
    margin-top: 16px;
  }

  .footer-links {
    margin-top: 22px;
  }
}

@media (max-width: 440px) {
  .brand-mark {
    width: 42px;
    height: 32px;
  }

  .brand-domain {
    font-size: 18px;
  }

  .lang-toggle {
    width: 42px;
  }

  .header-cta {
    display: none;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-kicker {
    font-size: 28px;
  }

  .hero-copy,
  .section-heading p:not(.eyebrow),
  .visual-copy p:not(.eyebrow),
  .access-copy p:not(.eyebrow) {
    font-size: 16px;
  }
}
