:root {
  color-scheme: dark;
  --bg: #081013;
  --bg-soft: #0d171a;
  --bg-elevated: rgba(13, 23, 26, 0.82);
  --surface: rgba(17, 31, 35, 0.72);
  --surface-strong: rgba(19, 35, 40, 0.9);
  --line: rgba(125, 164, 160, 0.16);
  --line-strong: rgba(125, 164, 160, 0.28);
  --text: #edf4ef;
  --text-muted: #b0c1bc;
  --text-dim: #7d9390;
  --accent: #2ad1b2;
  --accent-soft: #7ce6d2;
  --accent-deep: #0f806f;
  --warm: #f4c675;
  --danger: #ff8d7f;
  --max: 1180px;
  --wide: 1600px;
  --radius: 28px;
  --radius-small: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(56, 130, 246, 0.12), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(42, 209, 178, 0.12), transparent 24%),
    linear-gradient(180deg, #091519 0%, #08111e 100%);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(124, 230, 210, 0.18);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 92%);
  pointer-events: none;
}

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

a,
button,
summary,
.btn,
.button-link {
  touch-action: manipulation;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--accent-soft);
  color: #041211;
  font-weight: 700;
  padding: 12px 16px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 4px;
}

img,
svg {
  max-width: 100%;
}

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

.site-shell {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(8, 16, 19, 0.35);
  border-bottom: 1px solid rgba(125, 164, 160, 0.1);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.header-inner {
  width: min(calc(100% - 48px), var(--wide));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 20px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 0.88rem;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  border: 1px solid rgba(124, 230, 210, 0.45);
  background:
    linear-gradient(135deg, rgba(124, 230, 210, 0.18), rgba(42, 209, 178, 0.02)),
    rgba(10, 20, 23, 0.9);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
}

.brand-mark::before {
  width: 3px;
  height: 16px;
  left: 13px;
  top: 6px;
}

.brand-mark::after {
  width: 16px;
  height: 3px;
  left: 7px;
  top: 13px;
}

.nav-links,
.footer-links,
.meta-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a,
.meta-links a,
.footer-links a {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.nav-links a:hover,
.footer-links a:hover,
.meta-links a:hover {
  color: var(--text);
}

.nav-links a[aria-current="page"] {
  color: var(--accent);
}

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

.language-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 0.82rem;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
}

.mobile-toggle[aria-expanded="true"] {
  background: rgba(124, 230, 210, 0.08);
  color: var(--accent-soft);
}

.mobile-menu {
  display: none;
}

.btn,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.button-link:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #05100f;
  background: linear-gradient(135deg, #89efdc, #2ad1b2);
  box-shadow: 0 12px 32px rgba(42, 209, 178, 0.22);
}

.btn-secondary {
  border-color: rgba(124, 230, 210, 0.22);
  background: rgba(124, 230, 210, 0.05);
  color: var(--text);
}

.btn-ghost {
  color: var(--text-muted);
  border-color: var(--line);
}

main {
  display: block;
}

.hero {
  position: relative;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(6, 16, 24, 0.8) 0%, rgba(6, 16, 19, 0.42) 44%, rgba(6, 16, 22, 0.08) 76%),
    radial-gradient(circle at 76% 48%, rgba(56, 130, 246, 0.12), transparent 34%),
    radial-gradient(circle at 8% 18%, rgba(42, 209, 178, 0.08), transparent 30%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 48%, rgba(42, 209, 178, 0.12), transparent 34%),
    radial-gradient(circle at 8% 18%, rgba(42, 209, 178, 0.08), transparent 30%);
  pointer-events: none;
}

.hero.full-bleed .section-inner {
  width: min(calc(100% - 48px), var(--wide));
}

.hero-panel {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.hero-grid {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 64px); /* Full height up to natural limits */
  padding-bottom: 40px; /* buffer */
}

.hero-grid > *,
.section-intro > *,
.footer-top > *,
.footer-mid > *,
.footer-bottom > * {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(26px, 3.4vw, 52px) 0 clamp(26px, 3.4vw, 52px) clamp(14px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(22px, 3vw, 34px);
  width: min(860px, 62vw);
  max-width: min(860px, 100%);
  min-width: 0;
}

.hero-copy .stack {
  gap: clamp(12px, 1.7vw, 18px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(124, 230, 210, 0.18);
  border-radius: 999px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.73rem;
  max-width: 100%;
  line-height: 1.35;
  text-align: left;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(3.1rem, 4.55vw, 5.25rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  max-width: 11.6ch;
  text-wrap: balance;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.hero-copy p,
.page-hero p,
.lede,
.section-intro p {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.62;
}

.hero-copy p {
  max-width: 700px;
}

.hero-actions,
.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 8px;
}

.hero-proof div {
  padding-top: 18px;
  border-top: 1px solid rgba(124, 230, 210, 0.18);
}

.hero-proof strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.hero-proof span {
  color: var(--text-dim);
  font-size: 0.92rem;
}

.hero-visual {
  position: absolute;
  z-index: 0;
  min-width: 0;
  right: clamp(24px, 7vw, 150px);
  top: 50%;
  width: min(44vw, 620px);
  height: min(44vw, 620px);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.82;
  pointer-events: none;
  transform: translateY(-50%);
}

.hero-orbit,
.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(124, 230, 210, 0.12);
}

.hero-orbit {
  width: min(100%, clamp(420px, 34vw, 580px));
  height: min(100%, clamp(420px, 34vw, 580px));
  animation: drift 18s linear infinite;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  inset: 12%;
}

.hero-orbit::after {
  inset: 24%;
}

.mockup-window {
  position: relative;
  width: min(100%, 470px);
  background: rgba(8, 18, 21, 0.92);
  border: 1px solid rgba(124, 230, 210, 0.18);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32);
}

.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dots {
  display: flex;
  gap: 8px;
}

.dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 14px;
}

.mockup-block {
  border-radius: 22px;
  border: 1px solid rgba(124, 230, 210, 0.1);
  background: linear-gradient(180deg, rgba(16, 31, 35, 0.9), rgba(11, 23, 26, 0.72));
  padding: 16px;
}

.mockup-block h3,
.metric-strip strong {
  margin: 0 0 10px;
  font-size: 0.94rem;
}

.chart-lines {
  display: grid;
  gap: 10px;
}

.chart-lines span,
.mini-bars span,
.list-lines span {
  display: block;
  border-radius: 999px;
}

.chart-lines span {
  height: 12px;
  background: linear-gradient(90deg, rgba(42, 209, 178, 0.12), rgba(42, 209, 178, 0.72));
}

.chart-lines span:nth-child(2) {
  width: 78%;
}

.chart-lines span:nth-child(3) {
  width: 64%;
}

.mini-bars {
  display: grid;
  gap: 10px;
  padding-top: 8px;
}

.mini-bars span {
  height: 10px;
  background: linear-gradient(90deg, rgba(244, 198, 117, 0.22), rgba(124, 230, 210, 0.8));
}

.mini-bars span:nth-child(2) {
  width: 62%;
}

.mini-bars span:nth-child(3) {
  width: 74%;
}

.list-lines {
  display: grid;
  gap: 12px;
}

.list-lines span {
  height: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(124, 230, 210, 0.08);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.metric-strip div {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.metric-strip span {
  color: var(--text-dim);
  font-size: 0.84rem;
}

.section {
  position: relative;
  padding: 100px 0; /* Increased padding for softer transitions */
}

/* Subtle separator for normal sections */
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 230, 210, 0.08), transparent);
}

@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-alt {
  background: linear-gradient(-45deg, 
    rgba(8, 16, 28, 0.95), 
    rgba(22, 45, 64, 0.9), 
    rgba(12, 28, 32, 0.95), 
    rgba(28, 60, 70, 0.85)
  ) !important;
  background-size: 300% 300% !important;
  animation: gradient-flow 12s ease-in-out infinite !important;
}

.page-hero {
  padding-top: 30px;
}

.page-hero-panel {
  padding: clamp(28px, 4vw, 54px);
  border-radius: 34px;
  border: 1px solid rgba(124, 230, 210, 0.12);
  background: linear-gradient(180deg, rgba(10, 20, 23, 0.92), rgba(8, 15, 18, 0.84));
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-intro h2 {
  margin: 10px 0 0;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.kicker {
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.grid-2,
.grid-3,
.grid-4,
.stats-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.panel,
.outline-panel,
.quote-panel,
.faq-item,
.form-shell {
  border-radius: var(--radius);
  border: 1px solid rgba(124, 230, 210, 0.12);
  background: rgba(12, 23, 26, 0.7);
}

.panel {
  padding: 24px;
}

.outline-panel,
.quote-panel,
.faq-item,
.form-shell {
  padding: 22px;
}

.panel h3,
.outline-panel h3,
.quote-panel h3,
.faq-item summary,
.form-shell h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.panel p,
.outline-panel p,
.quote-panel p,
.faq-item p,
.faq-item li,
.form-shell p,
.list-inline li {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.stat-number {
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.stat-label {
  color: var(--text-dim);
  margin-top: 8px;
}

.stack {
  display: grid;
  gap: 14px;
}

.list-inline,
.feature-list,
.mini-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.feature-list li,
.mini-list li {
  position: relative;
  padding-left: 18px;
}

.feature-list li::before,
.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
}

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

.timeline-step {
  padding: 20px;
  border-top: 1px solid rgba(124, 230, 210, 0.2);
}

.timeline-step strong {
  display: block;
  margin-bottom: 12px;
}

.diagram {
  padding: 28px;
  border-radius: 34px;
  border: 1px solid rgba(124, 230, 210, 0.12);
  background:
    linear-gradient(180deg, rgba(11, 23, 26, 0.92), rgba(9, 18, 21, 0.84)),
    radial-gradient(circle at 50% 0%, rgba(42, 209, 178, 0.08), transparent 30%);
}

.diagram-grid {
  display: grid;
  grid-template-columns: 1fr 100px 1fr 100px 1fr;
  align-items: center;
  gap: 12px;
}

.diagram-node {
  min-height: 180px;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(124, 230, 210, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.diagram-link {
  height: 2px;
  background: linear-gradient(90deg, rgba(124, 230, 210, 0.15), rgba(124, 230, 210, 0.8));
  position: relative;
}

.diagram-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.split-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.quote-panel blockquote {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.35;
}

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--accent-soft);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-body {
  padding-top: 14px;
}

.form-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.form-tab {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-muted);
  border-radius: 999px;
  min-height: 44px;
  padding: 0 16px;
}

.form-tab[aria-selected="true"] {
  background: rgba(124, 230, 210, 0.08);
  color: var(--text);
  border-color: rgba(124, 230, 210, 0.28);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
}

.form-layout {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(124, 230, 210, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 14px 16px;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note,
.fine-print {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.thank-you {
  display: none;
  padding: 18px;
  border-radius: 18px;
  background: rgba(124, 230, 210, 0.08);
  border: 1px solid rgba(124, 230, 210, 0.18);
}

.thank-you.is-visible {
  display: block;
}

.footer {
  padding: 32px 0 44px;
  border-top: 1px solid rgba(125, 164, 160, 0.1);
}

.consent-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: min(420px, calc(100% - 24px));
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(124, 230, 210, 0.18);
  background: rgba(7, 16, 19, 0.94);
  box-shadow: var(--shadow);
  max-height: calc(100svh - 40px);
  overflow: auto;
}

.consent-banner h3 {
  margin: 0 0 10px;
}

.consent-banner p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-inner {
  display: grid;
  gap: 22px;
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.muted {
  color: var(--text-dim);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes drift {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .section-intro,
  .split-panel,
  .contact-grid,
  .diagram-grid {
    grid-template-columns: 1fr;
  }

  .diagram-link {
    width: 2px;
    height: 54px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(124, 230, 210, 0.15), rgba(124, 230, 210, 0.8));
  }

  .diagram-link::after {
    right: -4px;
    top: auto;
    bottom: 0;
  }

  .grid-4,
  .stats-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    min-height: clamp(610px, calc(100svh - 116px), 700px);
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 6.2vw, 4.9rem);
  }
}

@media (max-width: 860px) {
  .nav-links,
  .language-pill,
  .header-actions .btn-secondary {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    display: none;
    width: min(calc(100% - 24px), var(--max));
    margin: 0 auto 12px;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid rgba(124, 230, 210, 0.12);
    background: rgba(8, 16, 19, 0.94);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 10px;
  }

  .mobile-menu a {
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--text-muted);
  }

  .mobile-menu a:hover,
  .mobile-menu a[aria-current="page"] {
    background: rgba(124, 230, 210, 0.06);
    color: var(--text);
  }

  .hero {
    padding-top: 18px;
  }

  .hero-grid {
    display: block;
    min-height: auto;
  }

  .hero-copy {
    width: auto;
  }

  .hero-visual {
    position: absolute;
    right: clamp(8px, 3vw, 22px);
    bottom: clamp(64px, 12vw, 112px);
    width: min(52vw, 320px);
    height: min(52vw, 320px);
    padding: 0;
    opacity: 0.2;
    transform: none;
  }

  .hero-orbit {
    width: 100%;
    height: 100%;
  }

  .hero-copy h1 {
    max-width: 10.5ch;
  }

  .grid-3,
  .grid-2,
  .field-grid,
  .hero-proof,
  .mockup-grid {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero.full-bleed .section-inner {
    width: 100%;
  }

  .hero-copy {
    padding: 32px 28px 40px;
  }

  .page-hero-panel,
  .diagram,
  .panel,
  .outline-panel,
  .quote-panel,
  .faq-item,
  .form-shell {
    border-radius: 24px;
  }

  .grid-4,
  .stats-grid,
  .timeline,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 10.6vw, 3.35rem);
    max-width: 10.5ch;
  }

  .hero-copy p,
  .page-hero p,
  .lede,
  .section-intro p {
    font-size: 1rem;
  }

  .hero-actions .btn,
  .final-cta-block .cluster .btn,
  .fit-block .cluster .btn {
    width: 100%;
  }

  .consent-banner {
    position: static;
    width: auto;
    margin: 16px 8px;
    padding: 12px 16px 14px;
    border-radius: 18px;
    max-height: 172px;
  }

  .consent-banner h3 {
    margin-bottom: 6px;
    font-size: 1rem;
  }

  .consent-banner p {
    max-height: 3.8em;
    overflow: hidden;
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 10px;
  }

  .consent-actions .btn {
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.92rem;
  }
}

/* ===== NEW SECTION STYLES ===== */

body { font-family: "DM Sans", "Avenir Next", sans-serif; }
.hero-copy h1, .page-hero h1, .section-intro h2, .definition-block h2,
.flow-header h2, .fit-block h2, .why-now-block h2, .investor-panel h2,
.final-cta-block h2 {
  font-family: "DM Serif Display", "Iowan Old Style", serif;
}

/* Supporting copy */
.supporting-copy { color: var(--text-dim); font-size: 0.95rem; font-style: italic; }
.hero-note { color: var(--text-dim); font-size: 0.85rem; border-left: 2px solid var(--accent-deep); padding-left: 12px; }
.body-copy { color: var(--text-muted); line-height: 1.75; font-size: 1.05rem; margin: 0 0 24px; max-width: 780px; }

/* Section dark variant */
.section-dark { 
  background: linear-gradient(180deg, rgba(12,24,28,0.8), rgba(16,28,45,0.6), rgba(12,24,28,0.8)); 
  position: relative; 
  padding: 120px 0; /* slightly larger for differentiation */
}
.section-dark::before { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: radial-gradient(ellipse at 50% 0%, rgba(42,209,178,0.06), transparent 60%); 
  pointer-events: none; 
}
.section-dark::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 230, 210, 0.15), transparent);
}

/* Typography Utilities */
.font-sans { font-family: "DM Sans", "Avenir Next", sans-serif; }
.font-serif { font-family: "DM Serif Display", "Iowan Old Style", serif; }
.font-accent {
  font-family: "DM Serif Display", "Iowan Old Style", serif;
  font-style: italic;
  font-weight: 400;
  padding-right: 0.1em; /* prevents cutoff on italic letters */
}
.text-accent { color: var(--accent); }
.text-accent-soft { color: var(--accent-soft); }
.text-gradient { 
  background: linear-gradient(135deg, var(--accent-soft), var(--accent)); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  display: inline-block;
  padding-right: 0.1em;
}
.text-glow {
  color: var(--accent-soft);
  text-shadow: 0 0 16px rgba(42, 209, 178, 0.4);
}
.glow {
  filter: drop-shadow(0 0 12px rgba(42, 209, 178, 0.35));
}
.italic { font-style: italic; }
.font-light { font-weight: 300; }

/* Hero abstract visual */
.hero-abstract { position: relative; width: min(100%, clamp(320px, 29vw, 440px)); height: min(100%, clamp(320px, 29vw, 440px)); }
.abstract-core { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, rgba(42,209,178,0.2), rgba(42,209,178,0.05)); border: 1.5px solid rgba(124,230,210,0.3); display: flex; align-items: center; justify-content: center; z-index: 2; }
.core-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-soft); text-align: center; }
.abstract-layer { position: absolute; display: flex; align-items: center; justify-content: center; }
.layer-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); background: rgba(8,16,19,0.9); border: 1px solid rgba(124,230,210,0.15); border-radius: 999px; padding: 6px 14px; z-index: 2; }
.layer-pulse { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse-glow 3s ease-in-out infinite; }
.layer-visibility { top: 20px; left: 50%; transform: translateX(-50%); }
.layer-automation { left: 20px; top: 50%; transform: translateY(-50%); }
.layer-intelligence { right: 20px; top: 50%; transform: translateY(-50%); }
.layer-capital { bottom: 20px; left: 50%; transform: translateX(-50%); }
.connectors { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
@keyframes pulse-glow { 0%,100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 1; transform: scale(1.6); } }

/* Problem cards */
.problem-cards { margin-top: 28px; }
.problem-card { padding: 28px; border-radius: var(--radius); border: 1px solid rgba(124,230,210,0.1); background: linear-gradient(180deg, rgba(12,23,26,0.8), rgba(8,16,19,0.6)); transition: border-color 300ms ease, transform 300ms ease; }
.problem-card:hover { border-color: rgba(124,230,210,0.25); transform: translateY(-3px); }
.problem-icon { margin-bottom: 16px; width: 44px; height: 44px; border-radius: 12px; background: rgba(42,209,178,0.08); display: flex; align-items: center; justify-content: center; }
.problem-card h3 { margin: 0 0 10px; font-size: 1.05rem; }
.problem-card p { margin: 0; color: var(--text-muted); line-height: 1.65; font-size: 0.94rem; }

/* Definition block (What Tangibl Is) */
.definition-block { text-align: center; max-width: 800px; margin: 0 auto; padding: 60px 0; }
.definition-block h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -0.04em; margin: 12px 0 0; }
.definition-sub { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--accent-soft); margin: 16px 0 0; font-weight: 500; }
.definition-block .body-copy { margin: 24px auto 0; text-align: center; }
.supporting-line { color: var(--text-dim); font-style: italic; margin-top: 20px; font-size: 1rem; }

/* Definition visual - orbiting nodes */
.definition-visual { position: relative; width: 280px; height: 280px; margin: 48px auto 0; }
.orbit-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(124,230,210,0.08); }
.ring-1 { inset: 0; animation: drift 24s linear infinite; }
.ring-2 { inset: 20%; border-color: rgba(124,230,210,0.12); animation: drift 18s linear infinite reverse; }
.ring-3 { inset: 38%; border-color: rgba(124,230,210,0.16); animation: drift 12s linear infinite; }
.orbit-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent-soft); background: rgba(8,16,19,0.95); border: 1px solid rgba(124,230,210,0.25); border-radius: 50%; width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; z-index: 2; }
.orbit-node { position: absolute; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); background: rgba(8,16,19,0.9); border: 1px solid rgba(124,230,210,0.15); border-radius: 999px; padding: 5px 12px; z-index: 2; }
.node-1 { top: -8px; left: 50%; transform: translateX(-50%); }
.node-2 { right: -16px; top: 50%; transform: translateY(-50%); }
.node-3 { bottom: -8px; left: 50%; transform: translateX(-50%); }
.node-4 { left: -16px; top: 50%; transform: translateY(-50%); }

/* Four Pillars */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(124,230,210,0.1); }
.pillar-card { padding: 32px 24px; background: linear-gradient(180deg, rgba(12,23,26,0.85), rgba(8,16,19,0.7)); position: relative; transition: background 300ms ease; }
.pillar-card:hover { background: rgba(42,209,178,0.04); }
.pillar-number { font-size: 2.4rem; font-weight: 700; letter-spacing: -0.05em; color: rgba(124,230,210,0.2); margin-bottom: 8px; line-height: 1; }
.pillar-connector { width: 32px; height: 2px; background: linear-gradient(90deg, var(--accent), transparent); margin-bottom: 18px; }
.pillar-card h3 { margin: 0 0 12px; font-size: 1.08rem; }
.pillar-card p { margin: 0; color: var(--text-muted); line-height: 1.65; font-size: 0.92rem; }

/* Pillars flow (connected) */
.pillars-flow { padding: 48px; border-radius: 34px; border: 1px solid rgba(124,230,210,0.1); background: rgba(10,20,23,0.6); text-align: center; }
.flow-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.1; letter-spacing: -0.03em; margin: 10px 0 0; }
.flow-sub { color: var(--text-muted); margin: 16px 0 0; font-size: 1.05rem; }
.flow-chain { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 40px 0; flex-wrap: nowrap; }
.flow-step { flex: 1; padding: 20px; border: 1px solid rgba(124,230,210,0.12); border-radius: 20px; background: rgba(255,255,255,0.02); min-width: 140px; transition: border-color 300ms; }
.flow-step:hover { border-color: rgba(124,230,210,0.3); }
.flow-label { display: block; font-weight: 600; font-size: 0.92rem; color: var(--accent-soft); margin-bottom: 6px; }
.flow-step p { margin: 0; color: var(--text-dim); font-size: 0.84rem; line-height: 1.5; }
.flow-arrow { flex-shrink: 0; padding: 0 4px; display: flex; align-items: center; }
.flow-closing { color: var(--text-dim); font-style: italic; margin: 0; font-size: 1rem; }

/* Practice grid */
.practice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.practice-card { padding: 28px; border-radius: var(--radius); border: 1px solid rgba(124,230,210,0.1); background: linear-gradient(180deg, rgba(12,23,26,0.75), rgba(8,16,19,0.6)); transition: border-color 300ms ease, transform 300ms ease; }
.practice-card:hover { border-color: rgba(124,230,210,0.22); transform: translateY(-2px); }
.practice-card-wide { grid-column: 1 / -1; }
.practice-number { font-size: 1.6rem; font-weight: 700; color: rgba(124,230,210,0.18); margin-bottom: 12px; }
.practice-card h3 { margin: 0 0 10px; font-size: 1.05rem; }
.practice-card p { margin: 0; color: var(--text-muted); line-height: 1.65; font-size: 0.94rem; }

/* Practice visuals */
.practice-visual { margin-top: 20px; padding: 16px; border-radius: 16px; background: rgba(255,255,255,0.02); border: 1px solid rgba(124,230,210,0.06); }
.pv-bar { height: 10px; border-radius: 999px; background: linear-gradient(90deg, rgba(42,209,178,0.15), rgba(42,209,178,0.6)); margin-bottom: 8px; }
.pv-bar:last-child { margin-bottom: 0; }
.pv-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.pv-row:last-child { margin-bottom: 0; }
.pv-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(124,230,210,0.3); flex-shrink: 0; }
.pv-dot.active { background: var(--accent); box-shadow: 0 0 8px rgba(42,209,178,0.4); }
.pv-line { flex: 1; height: 2px; background: linear-gradient(90deg, rgba(42,209,178,0.4), rgba(42,209,178,0.1)); }
.pv-line.dim { background: rgba(255,255,255,0.06); }
.pv-tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-soft); }
.pv-tag.dim { color: var(--text-dim); }

/* Fit block (Who fits) */
.fit-block { max-width: 720px; margin: 0 auto; }
.fit-block h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.1; letter-spacing: -0.03em; margin: 10px 0 0; }
.fit-sub { color: var(--text-muted); font-size: 1.1rem; margin: 14px 0 0; }
.fit-block .body-copy { margin: 20px 0 0; }
.fit-checklist { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.fit-checklist li { display: flex; align-items: flex-start; gap: 14px; padding: 14px 18px; border-radius: 16px; border: 1px solid rgba(124,230,210,0.08); background: rgba(255,255,255,0.02); color: var(--text-muted); font-size: 0.96rem; line-height: 1.55; transition: border-color 200ms; }
.fit-checklist li:hover { border-color: rgba(124,230,210,0.2); }
.check-icon { flex-shrink: 0; margin-top: 2px; }

/* Why now block */
.why-now-block { text-align: center; max-width: 760px; margin: 0 auto; padding: 40px 0; }
.why-now-block h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.03em; margin: 10px 0 0; }
.why-now-sub { color: var(--text-muted); font-size: 1.1rem; margin: 16px 0 0; }
.why-now-block .body-copy { margin: 24px auto 0; text-align: center; }

/* Investor panel */
.investor-panel { padding: clamp(36px, 5vw, 64px); border-radius: 34px; border: 1px solid rgba(124,230,210,0.12); background: linear-gradient(160deg, rgba(8,18,22,0.95), rgba(6,14,17,0.85)); box-shadow: 0 32px 80px rgba(0,0,0,0.3); position: relative; overflow: hidden; }
.investor-panel::before { content: ""; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: radial-gradient(ellipse at 100% 30%, rgba(42,209,178,0.06), transparent 70%); pointer-events: none; }
.investor-content { max-width: 640px; position: relative; z-index: 1; }
.investor-panel h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.1; letter-spacing: -0.03em; margin: 10px 0 0; }
.investor-sub { color: var(--accent-soft); font-size: 1.1rem; margin: 14px 0 0; font-weight: 500; }
.investor-panel .body-copy { margin: 20px 0 0; }

/* Final CTA */
.final-cta-block { text-align: center; max-width: 700px; margin: 0 auto; padding: 64px 0; }
.final-cta-block h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.08; letter-spacing: -0.04em; margin: 0; }
.final-cta-sub { color: var(--text-muted); font-size: 1.1rem; margin: 18px 0 0; }
.final-cta-block .body-copy { margin: 16px auto 0; text-align: center; }
.final-cta-block .cluster { justify-content: center; }

/* Footer improvements */
.footer-tagline { color: var(--text-dim); font-size: 0.9rem; margin: 0; }
.footer-mid { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: var(--text-dim); font-size: 0.88rem; }
.footer-legal a:hover { color: var(--text); }
.btn-sm { min-height: 38px; font-size: 0.88rem; padding: 0 14px; }

/* Responsive for new sections */
@media (max-width: 1080px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-chain { flex-direction: column; gap: 12px; }
  .flow-arrow { transform: rotate(90deg); padding: 4px 0; }
}
@media (max-width: 860px) {
  .pillars-grid, .practice-grid { grid-template-columns: 1fr; }
  .pillars-flow { padding: 28px; }
  .investor-panel { padding: 28px; }
  .footer-mid { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .hero-copy {
    padding: 28px 22px 36px;
  }

  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.09em;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.28rem, 10.4vw, 2.82rem);
  }

  .hero-visual {
    width: 240px;
    height: 240px;
    right: 10px;
    bottom: 88px;
    opacity: 0.16;
  }

  .hero-abstract {
    width: 280px;
    height: 280px;
  }

  .layer-automation {
    left: 0;
  }

  .layer-intelligence {
    right: 0;
  }

  .definition-visual {
    width: 240px;
    height: 240px;
  }
}

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

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

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