:root {
  --blue-950: #06142d;
  --blue-900: #08235a;
  --blue-800: #0a3b86;
  --blue-700: #0b5bd3;
  --blue-600: #1273f1;
  --blue-100: #eaf2ff;
  --blue-50: #f4f8ff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --green: #128047;
  --red: #c2414b;
  --gold: #c79a2b;
  --shadow: 0 24px 70px rgba(6, 20, 45, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg,
canvas {
  display: block;
}

.container {
  width: min(1168px, calc(100% - 48px));
  margin: 0 auto;
}

.market-strip {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 34px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--blue-950);
  color: #cfe1ff;
}

.market-track {
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  height: 100%;
  padding-left: 24px;
  white-space: nowrap;
  animation: market-scroll 24s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 600;
}

.ticker-item strong {
  color: #ffffff;
  font-weight: 800;
}

.ticker-up {
  color: #6ee7a8;
}

.ticker-down {
  color: #fda4af;
}

@keyframes market-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 50;
  height: 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 35, 90, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-logo {
  width: auto;
  height: 40px;
}

.brand span {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
  color: #ffffff;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 7px;
  background: #ffffff;
  color: var(--blue-900) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  border-radius: 4px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 176px 0 84px;
  background:
    linear-gradient(90deg, rgba(6, 20, 45, 0.98), rgba(8, 35, 90, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 112px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 112px),
    var(--blue-900);
  color: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  background: linear-gradient(90deg, var(--blue-600), #68a7ff, var(--blue-600));
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.28;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 430px;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  color: #ffffff;
  font-size: clamp(2.45rem, 5vw, 4.55rem);
  line-height: 1;
  font-weight: 800;
}

.hero-copy p {
  max-width: 690px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 7px;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--blue-600);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(18, 115, 241, 0.28);
}

.btn-primary:hover {
  background: var(--blue-700);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.section-white .btn-secondary,
.contact-section .btn-secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 800;
}

.desk-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, var(--blue-50));
}

.panel-kicker,
.quote-card span,
.panel-row span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-header h2 {
  margin-top: 4px;
  font-size: 1.28rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eafaf0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.quote-card {
  margin: 24px;
  padding: 20px;
  border: 1px solid #d7e4f8;
  border-radius: 10px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.quote-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.quote-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1.02rem;
}

.quote-price {
  color: var(--blue-900);
  font-size: 1.75rem;
  font-weight: 800;
  white-space: nowrap;
}

.panel-list {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 24px;
  background: #ffffff;
}

.panel-row strong {
  font-size: 0.94rem;
}

.operation-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.operation-flow span {
  padding: 15px 10px;
  background: var(--blue-50);
  color: var(--blue-900);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
}

.heritage-band {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  background: var(--blue-50);
}

.heritage-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: center;
}

.heritage-copy h2 {
  max-width: 480px;
  color: var(--blue-950);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.heritage-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #d7e4f8;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
}

.heritage-metrics div {
  min-height: 104px;
  padding: 20px;
  border-right: 1px solid #d7e4f8;
}

.heritage-metrics div:last-child {
  border-right: 0;
}

.heritage-metrics strong {
  display: block;
  color: var(--blue-700);
  font-size: 1.45rem;
  line-height: 1;
}

.heritage-metrics span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

.section-white {
  background: #ffffff;
}

.section-muted {
  background: var(--soft);
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(6, 20, 45, 0.98), rgba(8, 35, 90, 0.94)),
    var(--blue-950);
  color: #ffffff;
}

.section-blueprint {
  background:
    linear-gradient(180deg, rgba(10, 59, 134, 0.92), rgba(6, 20, 45, 0.98)),
    var(--blue-900);
  color: #ffffff;
}

.split-layout,
.institutional,
.compliance-layout,
.contact-panel,
.trajectory-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.section-intro h2,
.section-heading h2,
.institutional h2,
.contact-panel h2 {
  max-width: 640px;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
  font-weight: 800;
}

.section-dark .section-intro h2,
.section-dark .section-heading h2,
.section-blueprint .section-intro h2 {
  color: #ffffff;
}

.section-intro p,
.body-copy p,
.institutional p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-dark .section-intro p,
.section-blueprint .section-intro p {
  color: rgba(255, 255, 255, 0.74);
}

.body-copy {
  display: grid;
  gap: 18px;
  padding-top: 32px;
}

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

.feature-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: var(--blue-100);
  color: var(--blue-700);
}

.icon-box svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.timeline-item h3,
.compliance-grid h3 {
  color: var(--blue-950);
  font-size: 1.12rem;
  line-height: 1.25;
}

.feature-card p,
.timeline-item p,
.compliance-grid p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 44px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
}

.timeline-item {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.timeline-item:last-child {
  border-right: 0;
}

.timeline-item span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--blue-700);
  font-size: 0.88rem;
  font-weight: 800;
}

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

.compliance-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.compliance-grid h3 {
  color: #ffffff;
}

.compliance-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.compliance-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: #9bc9ff;
  font-size: 0.88rem;
  font-weight: 800;
}

.compact-strip .static-track {
  width: auto;
  animation: none;
}

.policy-hero {
  padding: 160px 0 72px;
  background:
    linear-gradient(90deg, rgba(6, 20, 45, 0.98), rgba(8, 35, 90, 0.92)),
    var(--blue-900);
  color: #ffffff;
}

.policy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 72px;
  align-items: end;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.policy-hero h1 {
  max-width: 860px;
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1;
}

.policy-hero p {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.04rem;
}

.policy-summary-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.policy-summary-card span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-summary-card strong {
  display: block;
  margin: 8px 0 22px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.35;
}

.policy-summary-card .btn {
  width: 100%;
}

.policy-section {
  padding: 72px 0 96px;
  background: var(--soft);
}

.policy-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

.policy-sidebar h2 {
  margin-bottom: 12px;
  color: var(--blue-950);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-sidebar a {
  display: block;
  padding: 13px 12px;
  border-radius: 8px;
  color: var(--blue-950);
  font-size: 0.9rem;
  font-weight: 800;
}

.policy-sidebar a + a {
  margin-top: 4px;
}

.policy-sidebar a span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-sidebar a.active,
.policy-sidebar a:hover {
  background: var(--blue-50);
}

.policy-document {
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.06);
}

.policy-document h2 {
  margin: 34px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--blue-950);
  font-size: 1.5rem;
  line-height: 1.18;
}

.policy-document h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.policy-document h3 {
  margin: 28px 0 12px;
  color: var(--blue-900);
  font-size: 1.12rem;
}

.policy-document p,
.policy-document li {
  color: #334155;
  font-size: 1rem;
  line-height: 1.78;
}

.policy-document p + p {
  margin-top: 14px;
}

.policy-document ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 18px 22px;
}

.trajectory-layout {
  align-items: center;
}

.trajectory-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.trajectory-line {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.trajectory-line div {
  display: grid;
  grid-template-columns: 52px 0.7fr 1.3fr;
  gap: 22px;
  align-items: start;
  padding: 26px;
  background: rgba(6, 20, 45, 0.52);
}

.trajectory-line span {
  color: #8cc1ff;
  font-weight: 800;
}

.trajectory-line strong {
  color: #ffffff;
  font-size: 1rem;
}

.trajectory-line p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.metric {
  min-height: 142px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.metric:nth-child(2),
.metric:nth-child(4) {
  border-right: 0;
}

.metric:nth-child(3),
.metric:nth-child(4) {
  border-bottom: 0;
}

.metric strong {
  display: block;
  color: var(--blue-700);
  font-size: 2.1rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
}

.contact-section {
  padding: 0 0 96px;
  background: #ffffff;
}

.contact-panel {
  align-items: center;
  padding: 42px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(8, 35, 90, 0.98), rgba(18, 115, 241, 0.96)),
    var(--blue-700);
  color: #ffffff;
}

.contact-panel .eyebrow,
.contact-panel h2,
.contact-panel p {
  color: #ffffff;
}

.contact-panel p {
  max-width: 540px;
  margin-top: 16px;
  opacity: 0.8;
}

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

.contact-panel .btn-primary {
  background: #ffffff;
  color: var(--blue-950);
  box-shadow: none;
}

.footer {
  padding: 52px 0 28px;
  background: var(--blue-950);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  width: auto;
  height: 42px;
  margin-bottom: 18px;
  opacity: 0.9;
}

.footer p,
.footer span,
.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.footer h3 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer a {
  margin-bottom: 9px;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  max-width: 940px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 106px;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--blue-700);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(6, 20, 45, 0.28);
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 36px, 760px);
  }

  .nav {
    position: fixed;
    top: 110px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(8, 35, 90, 0.98);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .mobile-toggle {
    display: block;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .hero {
    padding: 150px 0 70px;
  }

  .hero-grid,
  .split-layout,
  .institutional,
  .compliance-layout,
  .contact-panel,
  .trajectory-layout,
  .heritage-grid,
  .policy-hero-grid,
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .policy-sidebar {
    position: static;
  }

  .desk-panel {
    max-width: 520px;
  }

  .feature-grid,
  .timeline,
  .heritage-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .heritage-metrics div:nth-child(2) {
    border-right: 0;
  }

  .heritage-metrics div:nth-child(1),
  .heritage-metrics div:nth-child(2) {
    border-bottom: 1px solid #d7e4f8;
  }

  .timeline-item:nth-child(2) {
    border-right: 0;
  }

  .timeline-item:nth-child(1),
  .timeline-item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 540px);
  }

  .site-header {
    height: 68px;
  }

  .brand-logo {
    height: 34px;
  }

  .brand span {
    font-size: 0.9rem;
  }

  .hero {
    padding: 132px 0 56px;
  }

  .policy-hero {
    padding: 132px 0 56px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .policy-hero h1 {
    font-size: 2.25rem;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .trust-row span {
    width: 100%;
  }

  .desk-panel {
    border-radius: 10px;
  }

  .quote-main,
  .panel-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-price {
    font-size: 1.5rem;
  }

  .operation-flow {
    grid-template-columns: 1fr;
  }

  .section,
  .heritage-band {
    padding: 68px 0;
  }

  .section-intro h2,
  .section-heading h2,
  .institutional h2,
  .contact-panel h2 {
    font-size: 2rem;
  }

  .body-copy {
    padding-top: 0;
  }

  .feature-grid,
  .timeline,
  .compliance-grid,
  .metrics-grid,
  .footer-grid,
  .heritage-metrics {
    grid-template-columns: 1fr;
  }

  .heritage-metrics div,
  .heritage-metrics div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #d7e4f8;
  }

  .heritage-metrics div:last-child {
    border-bottom: 0;
  }

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

  .timeline-item,
  .timeline-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline-item:last-child {
    border-bottom: 0;
  }

  .timeline-item span {
    margin-bottom: 24px;
  }

  .trajectory-line div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .metric,
  .metric:nth-child(2),
  .metric:nth-child(3),
  .metric:nth-child(4) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .contact-section {
    padding-bottom: 68px;
  }

  .contact-panel {
    padding: 30px 22px;
  }

  .policy-document {
    padding: 28px 20px;
  }

  .floating-cta {
    display: inline-flex;
    right: 14px;
    bottom: 14px;
  }
}
