﻿:root {
  --bg: #e8e6e6;
  --surface: #ffffff;
  --ink: #485253;
  --muted: #595947;
  --line: #c3c3b4;
  --green: #595947;
  --blue: #485253;
  --orange: #c3c3b4;
  --award: #167a3a;
  --selected: #16c7c9;
  --gold: #595947;
  --shadow: 0 18px 45px rgba(72, 82, 83, 0.11);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 20px;
  color: #485253;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #c3c3b4;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(72, 82, 83, 0.18);
}

.cookie-banner p {
  margin: 6px 0 0;
  max-width: 720px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.cookie-actions button {
  border: 0;
  border-radius: 6px;
  padding: 10px 16px;
  color: #fff;
  background: #595947;
  font-weight: 800;
  cursor: pointer;
}

.legal-shell {
  width: min(920px, calc(100% - 40px));
  margin: 112px auto 72px;
}

.legal-shell.wide {
  width: min(1180px, calc(100% - 40px));
}

.legal-card {
  padding: 38px;
  background: #fff;
  border: 1px solid #c3c3b4;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(72, 82, 83, 0.08);
}

.legal-card h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 56px);
  color: #485253;
}

.legal-card h2 {
  margin: 32px 0 10px;
  color: #485253;
}

.legal-warning {
  padding: 14px 16px;
  background: #e8e6e6;
  border-left: 4px solid #595947;
  border-radius: 6px;
  font-weight: 700;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 28px;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  vertical-align: top;
  padding: 12px 10px;
  border: 1px solid #c3c3b4;
  text-align: left;
}

.legal-table th {
  background: #e8e6e6;
  color: #485253;
  font-weight: 800;
}

.legal-table td {
  color: #595947;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 28px;
  color: #595947;
  background: #e8e6e6;
}

.site-footer a {
  color: inherit;
  font-weight: 700;
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(22px, 5vw, 72px);
  border-bottom: 1px solid rgba(195, 195, 180, 0.86);
  background: rgba(232, 230, 230, 0.9);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
}

.site-nav .brand-link img {
  display: block;
  width: 170px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-weight: 700;
}

.button.primary {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(22px, 5vw, 72px);
}

.landing-hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(70px, 10vw, 126px) clamp(22px, 5vw, 72px);
  background: #e1dddb;
}

.data-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.scene-grid {
  position: absolute;
  inset: -40px;
  background:
    linear-gradient(90deg, rgba(89, 89, 71, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(72, 82, 83, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 64% 38%, rgba(89, 89, 71, 0.16), transparent 26%),
    linear-gradient(135deg, #e8e6e6 0%, #c3c3b4 58%, #e8e6e6 100%);
  background-size: 70px 70px, 70px 70px, auto, auto;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(232, 230, 230, 0.96) 0%, rgba(232, 230, 230, 0.84) 45%, rgba(232, 230, 230, 0.42) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

.hero-copy h1 {
  margin: 10px 0 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.99;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px 0 0;
  color: #595947;
  font-size: 20px;
  line-height: 1.55;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.scene-point {
  position: absolute;
  z-index: 1;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(72, 82, 83, 0.11);
}

.scene-point.blue {
  background: var(--blue);
}

.scene-point.orange {
  background: var(--orange);
}

.scene-point.gold {
  background: var(--gold);
  box-shadow: 0 0 0 11px rgba(89, 89, 71, 0.19);
}

.scene-panel {
  position: absolute;
  z-index: 1;
  width: min(260px, 28vw);
  padding: 16px;
  border: 1px solid rgba(195, 195, 180, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.scene-panel span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.scene-panel strong {
  display: block;
  margin-top: 5px;
}

.panel-a {
  right: 9%;
  top: 22%;
}

.panel-b {
  right: 18%;
  bottom: 16%;
}

.section.alt {
  background: #e1dddb;
}

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

.section h1,
.section h2 {
  margin: 0;
  max-width: 870px;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.section-intro {
  max-width: 730px;
  margin: 18px 0 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

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

.feature-list {
  display: grid;
  gap: 10px;
  max-width: 620px;
}

.feature-list span {
  display: block;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: #595947;
}

.cta-band {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.cta-band p {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 22px;
  align-items: stretch;
}

.product-visual,
.metric,
.price-card,
.source-row,
.license-block,
.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.product-visual {
  min-height: 420px;
  padding: 18px;
  overflow: hidden;
}

.mini-map {
  height: 100%;
  min-height: 380px;
  border: 1px solid #c3c3b4;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(72, 82, 83, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(89, 89, 71, 0.08) 1px, transparent 1px),
    #e1dddb;
  background-size: 44px 44px;
  position: relative;
}

.map-point {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px rgba(72, 82, 83, 0.13);
}

.map-point.planned {
  background: var(--orange);
}

.map-point.awarded {
  box-shadow: 0 0 0 4px rgba(89, 89, 71, 0.25);
}

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

.metric,
.price-card,
.source-row,
.license-block,
.form-panel {
  padding: 22px;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.metric strong {
  display: block;
  font-size: 30px;
}

.metric span,
.source-row span,
.license-block p,
.form-panel p,
.price-card p {
  color: var(--muted);
}

.price-card h3,
.source-row h3,
.license-block h3 {
  margin: 0 0 10px;
}

.price {
  font-size: 40px;
  font-weight: 800;
  margin: 18px 0 6px;
}

.price-card ul,
.license-block ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.price-action {
  margin-top: auto;
  width: 100%;
}

.trial-card .price-action {
  margin-top: 8px;
}

.trial-card {
  background: #f7f7f5;
  border-color: var(--brand);
}

.trial-form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.trial-form .form-status-slot {
  min-height: 0;
}

.trial-form .form-status {
  font-size: 13px;
  line-height: 1.35;
}

.source-row {
  display: grid;
  gap: 8px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 8px;
  background: #e1dddb;
  color: #595947;
  font-size: 13px;
  font-weight: 750;
  white-space: normal;
  overflow-wrap: anywhere;
}

.form-wrap {
  min-height: calc(100vh - 75px);
  display: grid;
  place-items: center;
  padding: 46px 22px;
}

.form-panel {
  width: min(460px, 100%);
  display: grid;
  gap: 14px;
}

.form-panel h1 {
  margin: 0;
  font-size: 34px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 650;
}

input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
}

select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
  font: inherit;
}

.dual-form-wrap {
  grid-template-columns: repeat(2, minmax(300px, 460px));
  gap: 18px;
  align-items: start;
}

.form-panel button {
  width: 100%;
}

.form-help {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-help a {
  color: var(--ink);
  font-weight: 800;
}

.form-status-slot {
  min-height: 44px;
}

.form-status {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.form-status strong {
  color: var(--ink);
}

.form-status.warn {
  border-color: #c3c3b4;
  background: #e1dddb;
}

.form-status.success {
  border-color: #c3c3b4;
  background: #ffffff;
}

.optional-label {
  color: var(--muted);
  font-size: 0.82em;
  font-weight: 600;
}

.hidden {
  display: none !important;
}

footer {
  padding: 34px clamp(22px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.landing-page {
  --bg: #e8e6e6;
  --surface: #ffffff;
  --surface-soft: #e1dddb;
  --ink: #485253;
  --muted: #595947;
  --line: #c3c3b4;
  --brand: #595947;
  --deep: #485253;
  --fresh: #ffffff;
  background: var(--bg);
}

.landing-page .site-nav {
  min-height: 68px;
  padding: 10px clamp(18px, 4.6vw, 70px);
  background: rgba(232, 230, 230, 0.94);
}

.landing-page .logo-brand img {
  width: 170px;
  height: 44px;
}

.landing-page .nav-links a:not(.button) {
  position: relative;
  padding: 9px 0;
  font-weight: 650;
}

.landing-page .nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.landing-page .nav-links a:not(.button):hover::after {
  opacity: 0.55;
  transform: scaleX(1);
}

.landing-page .nav-cta {
  background: #ffffff;
}

.landing-page .landing-hero {
  position: relative;
  min-height: auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(40px, 5.8vw, 64px) clamp(18px, 4.6vw, 70px) 32px;
  background: #e8e6e6;
  isolation: isolate;
}

.landing-page .landing-hero::after,
.landing-page .data-scene,
.landing-page .scene-grid,
.landing-page .scene-point,
.landing-page .scene-panel {
  display: none;
}

.landing-page .hero-copy {
  z-index: 2;
  align-self: center;
  width: 100%;
  grid-column: 1;
  grid-row: 1;
}

.landing-page .hero-copy h1 {
  max-width: 820px;
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(42px, 5.7vw, 74px);
  line-height: 1.01;
  letter-spacing: 0;
}

.landing-page .hero-copy .hero-lede {
  max-width: 800px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.58;
}

.landing-page .eyebrow {
  color: var(--muted);
  letter-spacing: 0;
}

.landing-page .button {
  min-height: 44px;
  border-radius: 8px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.landing-page .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(72, 82, 83, 0.12);
}

.landing-page .button.primary {
  background: var(--brand);
  border-color: var(--brand);
}

.scroll-story {
  --story-scale: 1;
  --story-x: 0vw;
  --story-y: 0vh;
  --story-copy-opacity: 1;
  --story-card-opacity: 0;
  --story-card-y: 34px;
  --story-ring-opacity: 0;
  --story-ring-scale: 0.72;
  --story-marker-scale: 0.72;
  --story-copy-y: 0px;
  --story-proof-opacity: 0.92;
  --story-proof-y: 0px;
  --story-image-brightness: 1.1;
  --story-image-contrast: 0.9;
  --story-image-saturation: 0.76;
  --story-marker-left: 40.251%;
  --story-marker-top: 46.227%;
  position: relative;
  height: 190vh;
  background: #e8e6e6;
}

.story-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.story-image-layer,
.story-marker-layer {
  position: absolute;
  inset: -7%;
  width: 114%;
  height: 114%;
  transform: translate3d(var(--story-x), var(--story-y), 0) scale(var(--story-scale));
  transform-origin: 40.25% 46.23%;
  will-change: transform;
}

.story-image-layer {
  z-index: 0;
}

.story-marker-layer {
  z-index: 4;
  pointer-events: none;
}

.story-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter:
    brightness(var(--story-image-brightness))
    contrast(var(--story-image-contrast))
    saturate(var(--story-image-saturation));
  will-change: filter;
}

.story-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 40.25% 46.23%, rgba(22, 199, 201, 0.12), transparent 12%),
    linear-gradient(90deg, rgba(232, 230, 230, 0.92) 0%, rgba(232, 230, 230, 0.63) 34%, rgba(232, 230, 230, 0.15) 62%, rgba(72, 82, 83, 0.42) 100%),
    linear-gradient(180deg, rgba(232, 230, 230, 0.1) 0%, rgba(72, 82, 83, 0.28) 100%);
}

.story-copy {
  position: absolute;
  left: clamp(22px, 7vw, 112px);
  top: clamp(120px, 18vh, 180px);
  z-index: 2;
  width: min(720px, calc(100% - 44px));
  opacity: var(--story-copy-opacity);
  transform: translateY(var(--story-copy-y));
  will-change: opacity, transform;
}

.story-copy h1 {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(42px, 5.45vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: balance;
}

.story-copy p:not(.eyebrow) {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.52;
}

.story-copy .actions {
  margin-top: 30px;
}

.story-target {
  position: absolute;
  left: var(--story-marker-left);
  top: var(--story-marker-top);
  width: clamp(58px, 6vw, 94px);
  aspect-ratio: 1;
  border: 2px solid var(--selected);
  border-radius: 50%;
  opacity: var(--story-ring-opacity);
  transform: translate(-50%, -50%) scale(var(--story-marker-scale));
  box-shadow:
    0 0 0 12px rgba(22, 199, 201, 0.12),
    0 0 0 28px rgba(22, 199, 201, 0.06);
  will-change: opacity, transform;
}

.story-target span {
  position: absolute;
  inset: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 5px var(--selected);
  transform: translate(-50%, -50%);
}

.story-data-card {
  position: absolute;
  right: clamp(18px, 7vw, 108px);
  top: clamp(86px, 12vh, 132px);
  z-index: 5;
  width: min(500px, calc(100% - 36px));
  max-height: min(78vh, 760px);
  overflow: auto;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(195, 195, 180, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 26px 70px rgba(31, 40, 42, 0.24);
  opacity: var(--story-card-opacity);
  transform: translateY(var(--story-card-y));
  backdrop-filter: blur(16px);
  will-change: opacity, transform;
}

.story-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(195, 195, 180, 0.86);
}

.story-card-header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story-card-header strong {
  color: var(--ink);
  font-size: clamp(18px, 2.1vw, 24px);
}

.story-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.story-status-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(89, 89, 71, 0.1);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.story-status-row span:last-child {
  background: rgba(22, 122, 58, 0.12);
  color: var(--award);
}

.story-data-grid {
  display: grid;
  gap: 0;
  margin: 0;
}

.story-data-grid div {
  display: grid;
  grid-template-columns: minmax(142px, 0.86fr) minmax(0, 1fr);
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(195, 195, 180, 0.62);
}

.story-data-grid dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.story-data-grid dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 780;
  text-align: right;
}

.story-proof {
  position: absolute;
  top: clamp(158px, 27vh, 300px);
  right: clamp(22px, 6.8vw, 108px);
  z-index: 4;
  display: grid;
  width: min(320px, 28vw);
  gap: 12px;
  opacity: var(--story-proof-opacity);
  transform: translateY(var(--story-proof-y));
  will-change: opacity, transform;
}

.story-proof span {
  display: grid;
  gap: 2px;
  min-height: 62px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 16px 42px rgba(31, 40, 42, 0.14);
  backdrop-filter: blur(12px);
}

.story-proof strong {
  color: var(--ink);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1;
}

.story-proof small {
  color: var(--muted);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 850;
}

.hero-proof {
  position: absolute;
  left: clamp(18px, 4.6vw, 70px);
  bottom: -160px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 24px;
}

.hero-proof div {
  min-height: 92px;
  padding: 15px;
  border: 1px solid rgba(195, 195, 180, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-proof strong {
  display: block;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  align-self: stretch;
  grid-column: 2;
  grid-row: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.platform-map {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(72, 82, 83, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(89, 89, 71, 0.08) 1px, transparent 1px),
    #e1dddb;
  background-size: 42px 42px;
}

.map-land {
  position: absolute;
  border: 1px solid rgba(89, 89, 71, 0.28);
  background: rgba(195, 195, 180, 0.72);
}

.land-a {
  width: 58%;
  height: 72%;
  left: 24%;
  top: 11%;
  border-radius: 48% 38% 44% 32%;
  transform: rotate(-8deg);
}

.land-b {
  width: 30%;
  height: 42%;
  left: 8%;
  top: 46%;
  border-radius: 45% 35% 50% 40%;
  transform: rotate(18deg);
}

.land-c {
  width: 26%;
  height: 36%;
  right: 4%;
  top: 36%;
  border-radius: 52% 40% 46% 42%;
  transform: rotate(-18deg);
}

.turbine-point {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--deep);
  box-shadow: 0 0 0 6px rgba(72, 82, 83, 0.18);
}

.turbine-point.planned {
  background: #c3c3b4;
}

.turbine-point.awarded {
  background: #ffffff;
  border-color: var(--brand);
  box-shadow: 0 0 0 6px rgba(89, 89, 71, 0.24);
}

.data-card {
  position: absolute;
  z-index: 3;
  width: min(260px, 62%);
  padding: 16px;
  border: 1px solid rgba(195, 195, 180, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(72, 82, 83, 0.14);
}

.data-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.data-card strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  line-height: 1.25;
}

.card-mastr {
  left: 24px;
  top: 24px;
}

.card-generation {
  right: 24px;
  top: 38%;
}

.card-auctions {
  left: 34px;
  bottom: 28px;
  width: min(280px, 64%);
}

.card-reference {
  right: 24px;
  bottom: 36px;
  width: min(260px, 56%);
}

.statement-section {
  background: #ffffff;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

.statement-grid p:last-child {
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.6;
}

.landing-page .section.alt {
  background: #e1dddb;
}

.capability-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.capability-card,
.audience-grid article {
  min-height: 250px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 2px rgba(72, 82, 83, 0.05);
}

.capability-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 28px;
  border-radius: 8px;
  background: var(--brand);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.capability-card h3,
.audience-grid h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.capability-card p,
.audience-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.product-section {
  position: relative;
  padding: clamp(48px, 5vw, 82px) clamp(22px, 5vw, 72px) clamp(76px, 8vw, 116px);
  overflow: hidden;
  background: #ffffff;
}

.product-section::before {
  display: none;
}

.landing-product-grid {
  position: relative;
  width: min(1420px, 100%);
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: clamp(22px, 3.8vw, 56px);
  overflow: visible;
}

.landing-product-grid > div:first-child {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 3;
  width: 100%;
  grid-row: 2;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(560px, 1.05fr);
  gap: clamp(34px, 4.8vw, 72px);
  align-items: center;
}

.landing-product-grid > div:first-child h2 {
  max-width: 560px;
  font-size: clamp(36px, 3.45vw, 50px);
  line-height: 1.04;
}

.landing-product-grid > div:first-child .section-intro {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(17px, 1.35vw, 20px);
}

.landing-product-grid .feature-list {
  max-width: none;
  counter-reset: productFeature;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: center;
  margin-top: 0;
}

.landing-product-grid .feature-list span {
  position: relative;
  min-height: 112px;
  padding: 18px 18px 18px 58px;
  font-size: 15px;
  line-height: 1.45;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(72, 82, 83, 0.07);
}

.landing-product-grid .feature-list span::before {
  counter-increment: productFeature;
  content: "0" counter(productFeature);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 28px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: #ffffff;
  font-size: 11px;
  font-weight: 850;
}

.analytics-visual {
  min-height: 520px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  background: #ffffff;
}

.analytics-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.analytics-header span,
.site-quality-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.analytics-header strong {
  max-width: 260px;
  text-align: right;
  color: var(--ink);
}

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

.analytics-kpis div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e8e6e6;
}

.analytics-kpis strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
}

.analytics-kpis span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.chart-bars {
  min-height: 220px;
  display: grid;
  grid-template-columns: repeat(7, minmax(22px, 1fr));
  align-items: end;
  gap: 10px;
  padding: 22px 8px 0;
  border-bottom: 1px solid var(--line);
}

.chart-bars span {
  display: block;
  border-radius: 6px 6px 0 0;
  background: var(--deep);
}

.chart-bars span:nth-child(even) {
  background: var(--brand);
}

.site-quality-strip {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e1dddb;
}

.tool-slideshow {
  position: relative;
  min-height: auto;
  padding: 0;
  background: transparent;
}

.slide-track {
  height: 100%;
  min-height: auto;
  display: flex;
  width: 300%;
  animation: toolSlideShow 18s infinite;
}

.tool-slide {
  width: 33.333%;
  padding: 0;
  display: grid;
  grid-template-rows: auto;
  gap: 18px;
}

.monitor-showcase {
  position: relative;
  grid-row: 1;
  z-index: 4;
  width: min(1200px, 100%);
  margin: 0 auto;
  min-height: auto;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.monitor-showcase .slide-track {
  min-height: auto;
}

.monitor-slide {
  grid-template-rows: 1fr;
  align-items: start;
  padding: 0;
}

.laptop-mockup {
  position: relative;
  width: min(1160px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  transform: none;
  --laptop-screen-left: 19.14%;
  --laptop-screen-top: 13.62%;
  --laptop-screen-width: 64.38%;
  --laptop-screen-height: 62.47%;
}

.laptop-frame {
  position: absolute;
  left: 8.72%;
  top: 3.19%;
  width: 85.9%;
  height: 93.62%;
  display: block;
  object-fit: fill;
  z-index: 1;
  pointer-events: none;
}

.laptop-screen {
  position: absolute;
  left: var(--laptop-screen-left);
  top: var(--laptop-screen-top);
  width: var(--laptop-screen-width);
  height: var(--laptop-screen-height);
  z-index: 2;
  overflow: hidden;
  background: #ffffff;
  border-radius: 1px;
  box-shadow: inset 0 0 0 1px rgba(72, 82, 83, 0.08);
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.monitor-slide:nth-child(2) .laptop-mockup {
  --laptop-screen-left: 18.81%;
  --laptop-screen-top: 13.24%;
  --laptop-screen-width: 65.0%;
  --laptop-screen-height: 71.21%;
}

.monitor-slide:nth-child(3) .laptop-mockup {
  --laptop-screen-left: 19.0%;
  --laptop-screen-top: 13.12%;
  --laptop-screen-width: 64.81%;
  --laptop-screen-height: 70.26%;
}

.desktop-monitor {
  position: relative;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(72, 82, 83, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(232, 230, 230, 0.78)),
    #e8e6e6;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 36px 80px rgba(31, 40, 42, 0.28);
}

.desktop-monitor::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -70px;
  width: 22%;
  height: 70px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, #c3c3b4, #8f9082);
  transform: translateX(-50%);
  z-index: -1;
}

.desktop-monitor::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -86px;
  width: 46%;
  height: 18px;
  border-radius: 999px;
  background: rgba(72, 82, 83, 0.18);
  transform: translateX(-50%);
  filter: blur(1px);
  z-index: -2;
}

.monitor-topbar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(195, 195, 180, 0.8);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.monitor-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c3c3b4;
}

.monitor-topbar span:nth-child(2) {
  background: #9fa092;
}

.monitor-topbar span:nth-child(3) {
  background: #595947;
}

.monitor-topbar strong {
  margin-left: auto;
  color: var(--ink);
  font-size: 12px;
}

.monitor-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(72, 82, 83, 0.26);
  border-radius: 0 0 10px 10px;
  background: #ffffff;
}

.monitor-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.monitor-caption {
  display: none;
  gap: 6px;
  width: min(560px, 92%);
  margin: 96px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(195, 195, 180, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.monitor-caption span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.monitor-caption strong {
  color: var(--ink);
  line-height: 1.35;
}

.tool-slide .analytics-kpis div {
  background: #e8e6e6;
}

.map-slide {
  grid-template-rows: auto 1fr auto;
}

.tool-map-preview {
  position: relative;
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 35%, rgba(89, 89, 71, 0.32) 0 16%, transparent 17%),
    radial-gradient(circle at 67% 52%, rgba(195, 195, 180, 0.5) 0 18%, transparent 19%),
    linear-gradient(135deg, rgba(72, 82, 83, 0.12), rgba(232, 230, 230, 0.5)),
    #f7f7f5;
}

.tool-map-preview::before,
.tool-map-preview::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.tool-map-preview::before {
  width: 72%;
  height: 12px;
  left: 12%;
  top: 28%;
  transform: rotate(-14deg);
}

.tool-map-preview::after {
  width: 58%;
  height: 10px;
  right: 8%;
  bottom: 26%;
  transform: rotate(18deg);
}

.map-dot {
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  background: var(--deep);
  box-shadow: 0 0 0 4px rgba(72, 82, 83, 0.18);
}

.map-dot.planned {
  background: var(--orange);
}

.map-dot.awarded {
  box-shadow: 0 0 0 4px var(--award);
}

.map-dot.selected {
  background: var(--deep);
  box-shadow: 0 0 0 4px var(--selected);
}

.selection-box {
  position: absolute;
  z-index: 1;
  left: 44%;
  top: 34%;
  width: 34%;
  height: 38%;
  border: 2px solid var(--selected);
  border-radius: 8px;
  background: rgba(22, 199, 201, 0.09);
}

.tool-table-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e8e6e6;
}

.tool-table-preview span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tool-table-preview strong {
  color: var(--ink);
}

.report-slide {
  grid-template-rows: auto 1fr;
}

.report-preview {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.report-logo {
  justify-self: end;
  color: var(--brand);
  font-weight: 900;
  letter-spacing: 0;
}

.report-preview h3 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
}

.report-map-block {
  min-height: 150px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(72, 82, 83, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(89, 89, 71, 0.08) 1px, transparent 1px),
    #e8e6e6;
  background-size: 34px 34px;
}

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

.report-meta-grid span {
  padding: 12px;
  border-radius: 8px;
  background: #e1dddb;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.report-preview p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.slide-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slide-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
  animation: toolDotShow 18s infinite;
}

.slide-dots span:nth-child(2) {
  animation-delay: 6s;
}

.slide-dots span:nth-child(3) {
  animation-delay: 12s;
}

@keyframes toolSlideShow {
  0%,
  28% {
    transform: translateX(0);
  }
  33%,
  61% {
    transform: translateX(-33.333%);
  }
  66%,
  94% {
    transform: translateX(-66.666%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes toolDotShow {
  0%,
  32% {
    background: var(--brand);
    width: 22px;
  }
  33%,
  100% {
    background: var(--line);
    width: 8px;
  }
}

@keyframes storyMarketReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes storyDetailReveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

.audience-grid article {
  min-height: 190px;
}

.audience-grid h3 {
  margin-top: 0;
  font-size: 24px;
}

.governance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 44px);
}

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

.landing-source-list .source-row {
  min-height: 168px;
}

.landing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
}

.landing-cta h2 {
  max-width: 780px;
}

.landing-cta p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 16px;
}

.pricing-section {
  background: #ffffff;
}

.landing-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  margin-top: 30px;
}

.landing-price-card {
  min-height: 310px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.landing-price-card.featured {
  border-color: var(--brand);
  background: #f7f7f5;
}

.price-label {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 8px;
  background: #e1dddb;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-price-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
}

.landing-price-card strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
}

.landing-price-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #ffffff;
}

.site-footer img {
  width: 142px;
  height: 38px;
  object-fit: contain;
  object-position: left center;
}

.data-hero {
  background: #ffffff;
}

.data-hero-grid,
.freshness-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.52fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
}

.data-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

.freshness-card,
.source-card,
.update-steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 2px rgba(72, 82, 83, 0.05);
}

.freshness-card {
  padding: 24px;
}

.freshness-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.freshness-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.14;
}

.freshness-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.source-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.source-card {
  min-width: 0;
  min-height: 360px;
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: hidden;
}

.source-card h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 22px;
  overflow-wrap: anywhere;
}

.source-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.source-card dl {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
}

.source-card dl div {
  min-width: 0;
}

.source-card dt {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.source-card dd {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.update-steps {
  display: grid;
  gap: 10px;
}

.update-steps article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
}

.update-steps strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: #ffffff;
}

.update-steps span {
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 880px) {
  .site-nav,
  .nav-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-grid,
  .metric-grid,
  .pricing-grid,
  .source-list,
  .dual-form-wrap {
    grid-template-columns: 1fr;
  }

  .scene-panel {
    display: none;
  }

  .landing-hero::after {
    background: rgba(232, 230, 230, 0.9);
  }
}

@media (max-width: 1120px) {
  .landing-page .landing-hero,
  .statement-grid,
  .governance-grid,
  .landing-cta,
  .data-hero-grid,
  .freshness-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
    grid-column: 1;
    grid-row: 2;
  }

  .landing-page .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-proof {
    position: static;
  }

  .capability-grid,
  .audience-grid,
  .source-matrix,
  .landing-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-data-card {
    top: auto;
    right: 24px;
    bottom: 76px;
    width: min(560px, calc(100% - 48px));
    max-height: 58vh;
  }

  .story-proof {
    top: auto;
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story-copy {
    top: 104px;
    width: min(660px, calc(100% - 48px));
  }

  .story-copy h1 {
    max-width: 640px;
    font-size: clamp(40px, 8vw, 64px);
    line-height: 1.04;
  }

  .product-section {
    background: #ffffff;
  }

  .landing-product-grid {
    min-height: auto;
    display: grid;
    gap: 34px;
    padding: clamp(26px, 5vw, 46px) clamp(18px, 5vw, 42px) 56px;
  }

  .landing-product-grid > div:first-child,
  .product-section .monitor-showcase {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 0;
  }

  .landing-product-grid > div:first-child {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .landing-product-grid .feature-list {
    margin-top: 0;
  }

  .product-section .monitor-showcase {
    order: -1;
  }

  .laptop-mockup {
    transform: none;
  }
}

@media (max-width: 700px) {
  .site-nav,
  .nav-links {
    align-items: center;
    flex-direction: row;
  }

  .site-nav {
    gap: 10px;
    padding: 10px 14px;
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px 14px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
    font-size: 13px;
  }

  .nav-links > * {
    flex: 0 0 auto;
  }

  .landing-page .site-nav,
  .landing-page .nav-links {
    align-items: center;
    flex-direction: row;
  }

  .landing-page .site-nav {
    gap: 12px;
  }

  .landing-page .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 13px;
  }

  .landing-page .nav-links .button {
    min-height: 36px;
    padding: 0 12px;
  }

  .site-nav .brand-link img,
  .landing-page .logo-brand img {
    width: 150px;
    height: 39px;
  }

  .legal-shell,
  .legal-shell.wide {
    width: calc(100% - 24px);
    margin: 28px auto 42px;
  }

  .legal-card {
    padding: 22px 16px;
  }

  .legal-card h1 {
    font-size: clamp(32px, 12vw, 46px);
  }

  .legal-card h2 {
    margin-top: 26px;
    font-size: 21px;
  }

  .legal-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .legal-table thead,
  .legal-table tbody,
  .legal-table tr {
    min-width: 720px;
  }

  .legal-table th,
  .legal-table td {
    min-width: 170px;
    padding: 10px;
    font-size: 13px;
  }

  .dual-form-wrap,
  .signup-card,
  .login-card {
    width: 100%;
  }

  .price-card,
  .landing-price-card {
    padding: 20px 16px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
  }

  .cookie-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .scroll-story {
    height: auto;
    background: #e8e6e6;
  }

  .story-sticky {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: auto;
    overflow: visible;
    padding: 0 14px 24px;
  }

  .story-image-layer {
    position: relative;
    inset: auto;
    width: calc(100% + 28px);
    height: clamp(310px, 43svh, 430px);
    margin: 0 -14px;
    transform: none !important;
    transform-origin: 40.25% 46.23%;
    order: 1;
  }

  .story-marker-layer {
    position: absolute;
    inset: auto;
    top: 0;
    left: -14px;
    width: calc(100% + 28px);
    height: clamp(310px, 43svh, 430px);
    transform: none !important;
  }

  .story-shade {
    position: absolute;
    inset: auto;
    top: 0;
    left: -14px;
    right: auto;
    width: calc(100% + 28px);
    height: clamp(310px, 43svh, 430px);
    background:
      radial-gradient(circle at 40.25% 46.23%, rgba(22, 199, 201, 0.14), transparent 14%),
      linear-gradient(180deg, rgba(232, 230, 230, 0.12) 0%, rgba(232, 230, 230, 0.3) 55%, rgba(72, 82, 83, 0.5) 100%);
  }

  .story-copy {
    position: relative;
    left: auto;
    top: auto;
    z-index: 5;
    width: 100%;
    padding-top: 20px;
    opacity: 1 !important;
    transform: none !important;
    order: 2;
  }

  .story-copy h1 {
    max-width: 100%;
    font-size: clamp(31px, 8.6vw, 42px);
    line-height: 1.08;
    overflow-wrap: normal;
  }

  .story-copy p:not(.eyebrow) {
    max-width: 100%;
    margin-top: 16px;
    font-size: 16px;
  }

  .story-target {
    left: var(--story-marker-left);
    top: var(--story-marker-top);
    width: 56px;
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(0.82) !important;
    box-shadow:
      0 0 0 8px rgba(22, 199, 201, 0.14),
      0 0 0 18px rgba(22, 199, 201, 0.08);
  }

  .story-data-card {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: 5;
    width: 100%;
    max-height: none;
    margin-top: 16px;
    padding: 16px;
    opacity: 1 !important;
    transform: none !important;
    order: 4;
    animation: storyDetailReveal 0.72s ease 0.32s both;
  }

  .story-data-card::before {
    content: "Einzel-WEA im Detail";
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    margin-bottom: 12px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(22, 199, 201, 0.12);
    color: var(--deep);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .story-card-header {
    display: grid;
  }

  .story-data-grid div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px 0;
  }

  .story-data-grid dd {
    text-align: left;
  }

  .story-proof {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: 5;
    width: 100%;
    margin-top: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    opacity: 1 !important;
    transform: none !important;
    order: 3;
    animation: storyMarketReveal 0.64s ease 0.12s both;
  }

  .story-proof::before {
    content: "Marktüberblick";
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .story-proof span {
    min-height: 58px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.84);
  }

  .landing-page .landing-hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-proof,
  .capability-grid,
  .audience-grid,
  .analytics-kpis,
  .source-matrix,
  .landing-pricing-grid {
    grid-template-columns: 1fr;
  }

  .tool-slideshow,
  .slide-track {
    min-height: 500px;
  }

  .tool-slide {
    padding: 14px;
  }

  .monitor-showcase,
  .monitor-showcase .slide-track {
    min-height: auto;
  }

  .product-section {
    overflow-x: hidden;
    padding-left: 0;
    padding-right: 0;
  }

  .product-section .section-inner {
    width: 100%;
    max-width: 100%;
  }

  .landing-product-grid {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .landing-product-grid > *,
  .landing-product-grid > div:first-child,
  .product-section .monitor-showcase,
  .monitor-showcase .slide-track,
  .monitor-slide,
  .tool-slide,
  .laptop-mockup {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-section .monitor-showcase {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
  }

  .monitor-showcase .slide-track {
    width: 100%;
    display: grid;
    animation: none;
  }

  .monitor-slide {
    grid-area: 1 / 1;
    width: 100%;
    max-width: none;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    animation: mobileToolSlideShow 18s infinite;
  }

  .monitor-slide:nth-child(2) {
    animation-delay: 6s;
  }

  .monitor-slide:nth-child(3) {
    animation-delay: 12s;
  }

  .laptop-mockup {
    width: min(520px, 100%);
    max-width: 100%;
    flex: 0 0 auto;
    aspect-ratio: 16 / 9;
    transform: none !important;
  }

  .laptop-screen img {
    object-fit: contain;
    object-position: center center;
  }

  .landing-product-grid .feature-list {
    grid-template-columns: 1fr;
  }

  .landing-product-grid {
    padding-left: 14px;
    padding-right: 14px;
  }

  .landing-product-grid > div:first-child h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .landing-product-grid .feature-list span {
    min-height: 50px;
    padding: 14px 14px 14px 60px;
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .landing-product-grid .feature-list span::before {
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 28px;
    border-radius: 8px;
  }

  .tool-table-preview,
  .report-meta-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 360px;
  }

  .data-card {
    width: min(260px, calc(100% - 42px));
  }

  .card-generation {
    right: 20px;
    top: 42%;
  }

  .card-auctions,
  .card-reference {
    width: min(250px, calc(100% - 42px));
  }

  .card-reference {
    right: 20px;
    bottom: 24px;
  }

  .capability-card,
  .audience-grid article {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@keyframes mobileToolSlideShow {
  0%,
  29% {
    opacity: 1;
  }
  34%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-story {
    height: auto;
  }

  .story-sticky {
    position: relative;
  }

  .story-image-layer {
    transform: none;
  }

  .story-copy,
  .story-data-card,
  .story-target {
    opacity: 1;
    transform: none;
  }

  .story-proof,
  .story-data-card {
    animation: none;
  }
}
