:root {
  color-scheme: dark;
  --bg-forest-0: #04110f;
  --bg-forest-1: #0b1f1b;
  --bg-forest-2: #10313a;
  --bg-forest-3: #153640;
  --text-main: #edf4f1;
  --text-muted: #94a9a3;
  --text-soft: #b8c8c5;
  --accent-emerald: #4fe0b7;
  --accent-cyan: #6bdcf7;
  --accent-amber: #d6b56f;
  --panel-bg: rgba(8, 23, 25, 0.58);
  --panel-bg-strong: rgba(6, 18, 20, 0.8);
  --panel-border: rgba(106, 224, 200, 0.18);
  --line-soft: rgba(111, 201, 187, 0.1);
  --shadow-deep: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1240px;
  --font-sans: Inter, "Segoe UI", Arial, system-ui, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--text-main);
  background:
    radial-gradient(circle at 18% 18%, rgba(62, 134, 121, 0.2), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(50, 99, 128, 0.18), transparent 26%),
    linear-gradient(180deg, #04110f 0%, #071715 38%, #05100f 100%);
  overflow-x: hidden;
}

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

.page-noise,
.page-noise::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-noise {
  opacity: 0.2;
  background:
    linear-gradient(transparent 0%, rgba(255, 255, 255, 0.02) 100%);
  z-index: 1;
}

.page-noise::before {
  content: "";
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0 0.7px, transparent 0.7px),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.08) 0 0.9px, transparent 0.9px);
  background-size: 16px 16px, 24px 24px;
}

.site-shell,
.site-footer {
  position: relative;
  z-index: 2;
}

.landing-header {
  position: sticky;
  top: 14px;
  z-index: 4;
  width: min(calc(100% - 32px), var(--content-width));
  margin: 14px auto 0;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
    rgba(7, 19, 21, 0.68);
}

.brand-lockup {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 16px;
}

.top-nav a {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.site-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 18px 0 64px;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.1fr);
  gap: 24px;
  min-height: 100vh;
  align-items: center;
  padding: 28px 0 40px;
}

.hero-copy {
  padding: 24px 0;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--accent-cyan);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.hero-title {
  margin: 0;
  max-width: 9.5ch;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero-lead,
.hero-detail,
.hero-support-line,
.section-heading p,
.output-card p,
.timber-panel p,
.footer-brand p {
  color: var(--text-soft);
  line-height: 1.72;
}

.hero-lead {
  max-width: 54ch;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
}

.hero-support-line {
  margin: 18px 0 0;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-detail {
  max-width: 52ch;
  margin: 14px 0 0;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button-primary {
  color: #04110f;
  background: linear-gradient(135deg, var(--accent-emerald), #8be5ff);
  box-shadow: 0 12px 36px rgba(94, 228, 212, 0.2);
}

.button-secondary {
  color: var(--text-main);
  background: rgba(10, 28, 29, 0.46);
  border-color: rgba(132, 224, 208, 0.18);
}

.button-primary:hover,
.button-secondary:hover,
.nordic-footer-link:hover {
  transform: translateY(-2px);
}

.metrics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.metric-pill {
  display: grid;
  gap: 6px;
  min-width: 180px;
  flex: 1 1 220px;
  padding: 14px 16px;
  border: 1px solid rgba(117, 220, 196, 0.14);
  border-radius: 20px;
  background: rgba(8, 24, 24, 0.5);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.metric-label,
.tree-id,
.tree-tag,
.callout-key,
.panel-status,
.table-row span,
.soon-state {
  font-family: var(--font-mono);
}

.metric-label {
  color: var(--accent-cyan);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.metric-pill strong {
  font-size: 0.94rem;
  line-height: 1.35;
}

.forest-visual {
  position: relative;
  min-height: min(82vh, 860px);
  border: 1px solid rgba(115, 217, 200, 0.12);
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 22%, rgba(107, 220, 247, 0.16), transparent 18%),
    radial-gradient(circle at 56% 62%, rgba(79, 224, 183, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(18, 43, 46, 0.45) 0%, rgba(5, 14, 15, 0.94) 80%);
  box-shadow: var(--shadow-deep);
}

.visual-atmosphere,
.scan-grid,
.scan-wave,
.forest-depth,
.fog,
.tree-marker,
.measurement-callout,
.visual-panel {
  position: absolute;
}

.visual-atmosphere {
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(107, 220, 247, 0.16), transparent 22%),
    radial-gradient(circle at 24% 82%, rgba(79, 224, 183, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(15, 32, 32, 0.08), rgba(4, 12, 12, 0.36));
  animation: fogDrift 18s ease-in-out infinite alternate;
}

.scan-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(107, 220, 247, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 220, 247, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, transparent 0%, rgba(7, 19, 20, 0.5) 100%);
  background-size: 58px 58px, 58px 58px, 100% 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 1));
}

.scan-wave {
  inset: -10%;
  background:
    linear-gradient(
      102deg,
      transparent 32%,
      rgba(107, 220, 247, 0.03) 43%,
      rgba(107, 220, 247, 0.12) 48%,
      rgba(79, 224, 183, 0.14) 50%,
      rgba(107, 220, 247, 0.04) 56%,
      transparent 67%
    );
  transform: translateX(-28%);
  animation: scanSweep 13s linear infinite;
}

.fog {
  inset: auto 0 0 0;
  border-radius: 50%;
  filter: blur(72px);
}

.fog-back {
  height: 32%;
  background: rgba(72, 108, 102, 0.24);
  transform: translateY(24%);
}

.fog-front {
  height: 24%;
  background: rgba(48, 86, 94, 0.2);
  transform: translateY(32%);
}

.forest-depth {
  inset: 0;
}

.trunk {
  position: absolute;
  bottom: -6%;
  width: 16px;
  border-radius: 999px 999px 0 0;
  background:
    linear-gradient(180deg, rgba(135, 214, 203, 0.2), rgba(22, 44, 42, 0.92) 18%, rgba(5, 11, 11, 0.96));
  box-shadow:
    0 0 0 1px rgba(132, 224, 208, 0.03),
    0 0 28px rgba(64, 128, 118, 0.18);
}

.depth-far .trunk {
  opacity: 0.45;
  filter: blur(1px);
}

.depth-mid .trunk {
  opacity: 0.72;
}

.depth-front .trunk {
  opacity: 0.92;
  box-shadow:
    inset 0 0 0 1px rgba(160, 255, 233, 0.06),
    0 0 44px rgba(41, 91, 84, 0.18);
}

.trunk-1 { left: 7%; height: 58%; width: 10px; }
.trunk-2 { left: 18%; height: 52%; width: 12px; }
.trunk-3 { left: 31%; height: 64%; width: 9px; }
.trunk-4 { left: 44%; height: 56%; width: 13px; }
.trunk-5 { left: 84%; height: 60%; width: 10px; }
.trunk-6 { left: 12%; height: 76%; width: 16px; }
.trunk-7 { left: 27%; height: 71%; width: 18px; }
.trunk-8 { left: 53%; height: 74%; width: 16px; }
.trunk-9 { left: 69%; height: 68%; width: 17px; }
.trunk-10 { left: 80%; height: 72%; width: 14px; }
.trunk-11 { left: 4%; height: 88%; width: 20px; }
.trunk-12 { left: 38%; height: 84%; width: 22px; }
.trunk-13 { left: 61%; height: 86%; width: 19px; }
.trunk-14 { left: 90%; height: 82%; width: 18px; }

.tree-marker {
  display: grid;
  gap: 4px;
  min-width: 92px;
  padding: 8px 10px 10px 14px;
  border: 1px solid rgba(107, 220, 247, 0.18);
  border-radius: 16px;
  background: rgba(6, 20, 22, 0.72);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 10px 24px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.tree-marker::before,
.tree-marker::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.tree-marker::before {
  left: -16px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid var(--accent-emerald);
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(79, 224, 183, 0.08);
}

.tree-marker::after {
  left: -20px;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(107, 220, 247, 0.32);
  transform: translateY(-50%);
  animation: markerPulse 3.2s ease-in-out infinite;
}

.tree-id {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
}

.tree-tag {
  font-size: 0.72rem;
  color: var(--text-soft);
}

.marker-01 { left: 15%; top: 19%; }
.marker-02 { left: 29%; top: 27%; }
.marker-03 { left: 63%; top: 18%; }
.marker-04 { left: 72%; top: 31%; }
.marker-05 { left: 48%; top: 40%; }
.marker-06 { left: 18%; top: 52%; }
.marker-07 { left: 78%; top: 56%; }
.marker-08 { left: 56%; top: 61%; }
.marker-09 { left: 33%; top: 68%; }
.marker-10 { left: 67%; top: 74%; }

.measurement-callout {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-left: 2px solid var(--accent-amber);
  border-radius: 12px;
  background: rgba(7, 21, 23, 0.7);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.callout-key {
  color: var(--accent-amber);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.measurement-callout strong {
  font-size: 0.86rem;
  font-weight: 600;
}

.callout-01 { left: 6%; bottom: 30%; }
.callout-02 { left: 40%; top: 14%; }
.callout-03 { right: 10%; bottom: 24%; }
.callout-04 { right: 18%; top: 46%; }

.glass-panel {
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%),
    var(--panel-bg);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 24px 50px rgba(0, 0, 0, 0.24);
}

.visual-panel {
  right: 28px;
  bottom: 30px;
  width: min(320px, calc(100% - 56px));
  padding: 18px 18px 16px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.panel-head .section-kicker {
  margin-bottom: 0;
}

.panel-status {
  color: var(--accent-amber);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-copy {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.stem-profile {
  position: relative;
  margin-top: 16px;
  height: 74px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(91, 166, 149, 0.06), rgba(5, 16, 15, 0.14)),
    rgba(5, 15, 15, 0.5);
  overflow: hidden;
}

.stem-profile-large {
  margin-top: 20px;
  height: 96px;
}

.stem-line,
.cut,
.stem-node {
  position: absolute;
}

.stem-line {
  left: 7%;
  right: 7%;
  top: 50%;
  height: 8px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(86, 182, 163, 0.35), rgba(215, 181, 111, 0.58), rgba(76, 157, 145, 0.26));
}

.cut {
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: rgba(107, 220, 247, 0.85);
  box-shadow: 0 0 0 6px rgba(107, 220, 247, 0.08);
}

.cut::before,
.cut::after {
  content: "";
  position: absolute;
  left: -7px;
  width: 16px;
  height: 2px;
  background: rgba(107, 220, 247, 0.85);
}

.cut::before { top: 0; }
.cut::after { bottom: 0; }

.cut-a { left: 28%; }
.cut-b { left: 53%; }
.cut-c { left: 78%; }

.stem-node {
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent-emerald);
  box-shadow: 0 0 0 6px rgba(79, 224, 183, 0.09);
}

.node-a { left: 28%; }
.node-b { left: 53%; }
.node-c { left: 78%; }

.data-table-mini {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.table-row {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(116, 202, 184, 0.08);
  border-radius: 14px;
  background: rgba(6, 18, 19, 0.48);
}

.table-head {
  background: rgba(19, 45, 47, 0.65);
}

.table-row span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.content-section {
  padding: 28px 0 0;
}

.problem-section,
.pipeline-section,
.bucking-section,
.use-cases-section,
.why-ai-section {
  padding-top: 72px;
}

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

.section-heading h2,
.output-card h3,
.coming-soon-card h3,
.timber-panel h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.02;
}

.section-heading p {
  margin: 14px 0 0;
}

.output-grid,
.coming-soon-grid,
.problem-grid,
.use-case-grid,
.bucking-layout {
  display: grid;
  gap: 18px;
}

.output-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.use-case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
}

.output-card,
.coming-soon-card,
.timber-panel,
.problem-card,
.use-case-card,
.quote-block {
  padding: 22px;
}

.output-card h3,
.coming-soon-card h3,
.timber-panel h2,
.problem-card h3,
.use-case-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.output-card p,
.coming-soon-card p,
.timber-panel p,
.problem-card p,
.use-case-card p {
  margin: 12px 0 0;
}

.demo-disclaimer,
.bucking-copy,
.vision-copy {
  color: var(--text-soft);
  line-height: 1.66;
}

.demo-disclaimer {
  margin: 14px 0 0;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}

.bucking-copy {
  margin: 18px 0 0;
}

.problem-card,
.use-case-card {
  min-height: 200px;
}

.pipeline-strip {
  margin-top: 28px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.pipeline-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(107, 220, 247, 0.14);
  background: rgba(8, 25, 27, 0.58);
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pipeline-strip span:not(:last-child)::after {
  content: "→";
  margin-left: 10px;
  color: var(--accent-cyan);
}

.output-card-wide {
  min-height: 100%;
}

.output-card-map {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.preview-sheet {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.preview-row {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(116, 202, 184, 0.08);
  border-radius: 14px;
  background: rgba(6, 18, 19, 0.44);
}

.preview-row span {
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-row strong {
  font-size: 0.88rem;
  line-height: 1.45;
}

.compartment-map {
  position: relative;
  min-height: 280px;
  margin-top: 18px;
  border-radius: 24px;
  border: 1px solid rgba(107, 220, 247, 0.12);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 26%, rgba(79, 224, 183, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(10, 30, 33, 0.8), rgba(4, 13, 14, 0.94));
}

.map-boundary,
.map-trace,
.map-point {
  position: absolute;
}

.map-boundary {
  inset: 10%;
  border: 1px dashed rgba(107, 220, 247, 0.26);
  border-radius: 26px 44px 32px 38px;
}

.map-trace {
  height: 1px;
  background: rgba(107, 220, 247, 0.36);
  transform-origin: left center;
}

.trace-a {
  left: 18%;
  top: 38%;
  width: 52%;
  transform: rotate(-18deg);
}

.trace-b {
  left: 30%;
  top: 60%;
  width: 36%;
  transform: rotate(22deg);
}

.map-point {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 0 8px rgba(79, 224, 183, 0.08);
}

.point-a { left: 22%; top: 32%; }
.point-b { left: 39%; top: 44%; }
.point-c { left: 58%; top: 28%; }
.point-d { left: 52%; top: 62%; }
.point-e { left: 72%; top: 52%; }

.stem-profile-annotated {
  min-height: 180px;
}

.stem-note {
  position: absolute;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(7, 20, 22, 0.78);
  border: 1px solid rgba(107, 220, 247, 0.14);
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note-a { left: 10%; top: 16px; }
.note-b { left: 39%; top: 16px; }
.note-c { left: 63%; top: 16px; }
.note-d { left: 12%; bottom: 16px; }
.note-e { right: 10%; bottom: 16px; max-width: 190px; text-align: right; }

.quote-block blockquote {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(1.7rem, 3vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.vision-copy {
  margin: 16px 0 0;
  max-width: 68ch;
}

.signal-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text-soft);
}

.signal-list li {
  padding-left: 18px;
  position: relative;
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 1px;
  background: var(--accent-emerald);
}

.coming-soon-section {
  padding-top: 72px;
}

.coming-soon-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.coming-soon-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
}

.coming-soon-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(107, 220, 247, 0.18), transparent 22%),
    linear-gradient(140deg, transparent 48%, rgba(107, 220, 247, 0.08) 61%, transparent 72%);
  pointer-events: none;
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.soon-state {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(214, 181, 111, 0.2);
  color: var(--accent-amber);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(214, 181, 111, 0.06);
}

.timber-section {
  padding-top: 72px;
}

.timber-panel {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  background:
    radial-gradient(circle at 90% 20%, rgba(107, 220, 247, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%),
    rgba(7, 19, 21, 0.64);
}

.nordic-footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(107, 220, 247, 0.18);
  background: rgba(8, 24, 25, 0.7);
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease;
}

.site-footer {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 30px 0 54px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(118, 205, 189, 0.12);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.footer-links a {
  color: var(--text-soft);
}

.coming-page-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), var(--content-width));
  min-height: calc(100vh - 110px);
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 24px 0 56px;
}

.coming-page-stage {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid rgba(115, 217, 200, 0.1);
  background:
    radial-gradient(circle at 16% 20%, rgba(79, 224, 183, 0.12), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(107, 220, 247, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(11, 29, 31, 0.64), rgba(4, 12, 13, 0.92));
  box-shadow: var(--shadow-deep);
}

.coming-page-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107, 220, 247, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 220, 247, 0.06) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: 0.35;
  pointer-events: none;
}

.coming-ambient-card {
  position: absolute;
  padding: 16px;
  filter: blur(10px);
  opacity: 0.72;
  transform: scale(0.98);
}

.ambient-a {
  left: 4%;
  top: 14%;
  width: min(320px, 36vw);
}

.ambient-b {
  right: 6%;
  top: 18%;
  width: min(300px, 32vw);
}

.ambient-c {
  left: 11%;
  bottom: 10%;
  width: min(290px, 31vw);
}

.ambient-d {
  right: 12%;
  bottom: 12%;
  width: min(280px, 28vw);
}

.coming-panel {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 32px));
  padding: 34px 30px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
    rgba(7, 20, 22, 0.74);
}

.coming-panel h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.coming-panel p {
  margin: 18px auto 0;
  max-width: 56ch;
  color: var(--text-soft);
  line-height: 1.72;
}

.coming-subtitle {
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.coming-actions,
.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.ghost-table .table-row,
.ghost-stack span {
  background: rgba(6, 18, 19, 0.48);
}

.ghost-stack {
  display: grid;
  gap: 10px;
}

.ghost-stack span {
  display: block;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(116, 202, 184, 0.08);
}

.timeline-stack span:nth-child(1) { width: 72%; }
.timeline-stack span:nth-child(2) { width: 88%; }
.timeline-stack span:nth-child(3) { width: 64%; }
.timeline-stack span:nth-child(4) { width: 91%; }
.timeline-stack span:nth-child(5) { width: 58%; }

.contact-panel {
  width: min(760px, calc(100% - 32px));
}

.inline-mail-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.inquiry-checklist {
  max-width: 520px;
  margin: 20px auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  text-align: left;
}

.inquiry-checklist li {
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(107, 220, 247, 0.12);
  border-radius: 14px;
  background: rgba(6, 18, 19, 0.38);
  color: var(--text-soft);
  position: relative;
}

.inquiry-checklist li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--accent-emerald);
}

@keyframes scanSweep {
  from {
    transform: translateX(-28%);
  }
  to {
    transform: translateX(22%);
  }
}

@keyframes markerPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(-50%) scale(0.92);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
  }
}

@keyframes fogDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(1.2%, 0.6%, 0) scale(1.04);
  }
}

@media (max-width: 1180px) {
  .landing-header {
    top: 10px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 12px;
  }

  .hero-title {
    max-width: 11ch;
  }

  .forest-visual {
    min-height: 720px;
  }

  .problem-grid,
  .use-case-grid,
  .coming-soon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coming-page-stage {
    min-height: 72vh;
  }
}

@media (max-width: 820px) {
  .landing-header {
    width: min(calc(100% - 24px), var(--content-width));
    align-items: start;
    flex-direction: column;
  }

  .top-nav {
    justify-content: start;
  }

  .site-shell {
    width: min(calc(100% - 24px), var(--content-width));
    padding-top: 20px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .forest-visual {
    min-height: 620px;
    border-radius: 28px;
  }

  .visual-panel {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .output-grid,
  .problem-grid,
  .use-case-grid,
  .coming-soon-grid {
    grid-template-columns: 1fr;
  }

  .timber-panel,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .nordic-footer-link {
    min-width: 0;
    width: 100%;
  }

  .quote-block blockquote {
    max-width: none;
  }

  .coming-page-shell {
    width: min(calc(100% - 24px), var(--content-width));
  }

  .coming-ambient-card {
    filter: blur(8px);
    opacity: 0.62;
  }

  .ambient-a,
  .ambient-b,
  .ambient-c,
  .ambient-d {
    width: min(240px, 44vw);
  }
}

@media (max-width: 620px) {
  .hero-copy {
    padding-top: 8px;
  }

  .metrics-row {
    flex-direction: column;
  }

  .forest-visual {
    min-height: 560px;
  }

  .pipeline-strip {
    padding: 14px;
  }

  .pipeline-strip span {
    width: 100%;
    justify-content: space-between;
  }

  .pipeline-strip span:not(:last-child)::after {
    margin-left: auto;
  }

  .tree-marker {
    min-width: 78px;
    padding: 7px 8px 8px 11px;
  }

  .tree-tag,
  .tree-id,
  .table-row span,
  .soon-state {
    font-size: 0.62rem;
  }

  .measurement-callout {
    padding: 8px 10px;
  }

  .preview-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .stem-profile-annotated {
    min-height: 220px;
  }

  .note-a,
  .note-b,
  .note-c,
  .note-d,
  .note-e {
    max-width: 150px;
    font-size: 0.6rem;
  }

  .note-a { left: 8px; top: 10px; }
  .note-b { left: 33%; top: 10px; }
  .note-c { right: 8px; top: 10px; left: auto; }
  .note-d { left: 8px; bottom: 10px; }
  .note-e { right: 8px; bottom: 10px; }

  .coming-page-stage {
    min-height: 0;
    padding: 84px 0;
  }

  .coming-panel {
    width: calc(100% - 24px);
    padding: 28px 18px;
  }

  .coming-panel h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .ambient-d,
  .ambient-c {
    display: none;
  }

  .ambient-a {
    left: 10px;
    top: 18px;
    width: 54vw;
  }

  .ambient-b {
    right: 10px;
    top: auto;
    bottom: 16px;
    width: 50vw;
  }

  .callout-02,
  .callout-04,
  .marker-03,
  .marker-10 {
    display: none;
  }

  .marker-01 { left: 10%; top: 18%; }
  .marker-02 { left: 27%; top: 30%; }
  .marker-04 { left: 70%; top: 29%; }
  .marker-05 { left: 49%; top: 42%; }
  .marker-06 { left: 14%; top: 56%; }
  .marker-07 { left: 72%; top: 58%; }
  .marker-08 { left: 54%; top: 66%; }
  .marker-09 { left: 29%; top: 72%; }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
