:root {
  --navy-950: #06172f;
  --navy-900: #09264b;
  --navy-800: #0b3a70;
  --blue-700: #075aa9;
  --blue-600: #0878d1;
  --blue-500: #2294ed;
  --blue-100: #ddecfb;
  --blue-50: #f2f8fe;
  --coral: #ff4d4f;
  --coral-dark: #db3538;
  --ink: #10233d;
  --muted: #5f7189;
  --line: #dce6f0;
  --surface: #ffffff;
  --soft: #f5f8fb;
  --success: #0e9f6e;
  --danger: #d9363e;
  --shadow-sm: 0 10px 30px rgba(9, 38, 75, 0.08);
  --shadow-lg: 0 28px 80px rgba(5, 25, 52, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(34, 148, 237, 0.5);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--blue-700);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 230, 240, 0.8);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-950);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand img,
.h5-brand img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(6, 23, 47, 0.2);
}

.brand em {
  color: var(--coral);
  font-style: normal;
}

.nav-wrap,
.site-nav {
  display: flex;
  align-items: center;
}

.nav-wrap {
  gap: 30px;
}

.site-nav {
  gap: 5px;
}

.site-nav a {
  position: relative;
  padding: 10px 13px;
  color: #4c617b;
  border-radius: 9px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-700);
  background: var(--blue-50);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 11px;
  text-decoration: none;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-action,
.button-primary {
  color: #fff;
  background: var(--blue-700);
  box-shadow: 0 10px 24px rgba(7, 90, 169, 0.22);
}

.header-action:hover,
.button-primary:hover {
  background: var(--navy-800);
  box-shadow: 0 14px 30px rgba(7, 90, 169, 0.28);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--navy-900);
  border-color: #c9d8e8;
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover {
  border-color: var(--blue-500);
  background: #fff;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: var(--navy-900);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 3px;
  background: currentColor;
  content: "";
  transition: 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 6.2vw, 5.85rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(34, 148, 237, 0.22), transparent 26%),
    linear-gradient(130deg, #f9fcff 0%, #edf6ff 58%, #ddecfb 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: linear-gradient(rgba(7, 90, 169, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 90, 169, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, #000, transparent 74%);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 690px;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
  padding-block: 78px 94px;
}

.hero-copy {
  max-width: 670px;
}

.hero-copy h1 span {
  display: block;
  color: var(--blue-700);
}

.hero-copy .lead {
  max-width: 630px;
  margin-bottom: 32px;
}

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

.microcopy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 640px;
  margin: 26px 0 0;
  color: #6d7e91;
  font-size: 0.82rem;
}

.microcopy strong {
  color: var(--navy-900);
}

.micro-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 77, 79, 0.12);
}

.hero-visual {
  position: relative;
}

.photo-frame {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.1deg);
}

.photo-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 23, 47, 0.08), rgba(6, 23, 47, 0.68));
  content: "";
}

.photo-frame img {
  width: 100%;
  height: 530px;
  object-fit: cover;
}

.market-card {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: -34px;
  width: min(370px, 80%);
  padding: 21px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(6, 23, 47, 0.92);
  box-shadow: 0 24px 60px rgba(6, 23, 47, 0.34);
  backdrop-filter: blur(16px);
}

.market-card-top,
.ticker-row,
.metric-row,
.section-heading,
.policy-meta,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.market-card-top {
  margin-bottom: 21px;
  color: #a7c5e4;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-pill {
  color: #a7f3d0;
  font-size: 0.67rem;
}

.live-pill::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #34d399;
  content: "";
}

.market-equity {
  margin-bottom: 5px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.market-change {
  color: #5ee2b0;
  font-size: 0.8rem;
  font-weight: 750;
}

.sparkline {
  display: flex;
  height: 48px;
  align-items: flex-end;
  gap: 4px;
  margin: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sparkline i {
  display: block;
  flex: 1;
  height: var(--h);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(#39a9ff, rgba(57, 169, 255, 0.16));
}

.metric-row {
  color: #a7c5e4;
  font-size: 0.72rem;
}

.metric-row strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
}

.market-note {
  position: absolute;
  z-index: 3;
  top: 30px;
  left: -34px;
  padding: 11px 15px;
  color: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.market-note b {
  color: var(--coral-dark);
}

.tape {
  overflow: hidden;
  color: #d5e9fb;
  background: var(--navy-950);
}

.tape-inner {
  display: flex;
  width: var(--container);
  min-height: 68px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.ticker-row {
  flex: 1;
  min-width: 100px;
  justify-content: flex-start;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.ticker-row strong {
  color: #fff;
}

.up {
  color: #59d8a7;
}

.down {
  color: #ff8587;
}

.sim-label {
  padding: 7px 10px;
  color: #ffb8b9;
  border: 1px solid rgba(255, 77, 79, 0.4);
  border-radius: 7px;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.section {
  padding-block: 112px;
}

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

.section-dark {
  color: #c6d8e9;
  background: var(--navy-950);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-heading {
  margin-bottom: 54px;
  align-items: flex-end;
}

.section-heading > div {
  max-width: 780px;
}

.section-heading .lead {
  max-width: 510px;
  margin-bottom: 7px;
}

.section-kicker {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-stack {
  display: grid;
  gap: 16px;
}

.feature-row {
  position: relative;
  display: grid;
  min-height: 220px;
  overflow: hidden;
  grid-template-columns: 90px 1fr 0.8fr;
  align-items: center;
  gap: 34px;
  padding: 40px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 4px 0 rgba(9, 38, 75, 0.02);
  transition: 200ms ease;
}

.feature-row:hover {
  border-color: #b8d2eb;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.feature-row::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 7px;
  height: 100%;
  background: var(--blue-600);
  content: "";
}

.feature-row:nth-child(even)::after {
  background: var(--coral);
}

.feature-mark {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  color: var(--blue-700);
  border: 1px solid #c8def1;
  border-radius: 23px;
  background: var(--blue-50);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.feature-row:nth-child(even) .feature-mark {
  color: var(--coral-dark);
  border-color: #ffd4d5;
  background: #fff5f5;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
}

.feature-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 7px 11px;
  color: #47627f;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f9fbfd;
  font-size: 0.74rem;
  font-weight: 750;
}

.planner-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
}

.planner-copy .lead {
  margin-bottom: 30px;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #b9cde0;
}

.check-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--navy-950);
  border-radius: 6px;
  background: #55d9a8;
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
}

.plan-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #0a2345;
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.32);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 15px 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b5b7b;
}

.window-bar i:first-child {
  background: var(--coral);
}

.plan-content {
  padding: 30px;
}

.plan-heading {
  margin-bottom: 26px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 800;
}

.plan-symbol {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.plan-symbol b {
  color: #fff;
  font-size: 1.08rem;
}

.plan-symbol small {
  color: #5ee2b0;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.plan-field {
  padding: 13px;
  color: #7696b7;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  font-size: 0.67rem;
}

.plan-field b {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: 0.93rem;
}

.risk-meter {
  position: relative;
  height: 9px;
  margin: 28px 0 12px;
  overflow: hidden;
  border-radius: 9px;
  background: linear-gradient(90deg, #55d9a8 0 58%, #f5c451 58% 78%, var(--coral) 78%);
}

.risk-meter::after {
  position: absolute;
  top: -4px;
  left: 54%;
  width: 3px;
  height: 17px;
  border: 2px solid #fff;
  border-radius: 3px;
  background: var(--navy-950);
  content: "";
}

.plan-foot {
  display: flex;
  justify-content: space-between;
  color: #7595b4;
  font-size: 0.68rem;
}

.workflow {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 9vw, 120px);
}

.workflow-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.workflow-steps {
  position: relative;
  display: grid;
  gap: 0;
}

.workflow-steps::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 30px;
  width: 1px;
  background: #cbdcec;
  content: "";
}

.workflow-step {
  position: relative;
  display: grid;
  min-height: 176px;
  grid-template-columns: 62px 1fr;
  gap: 26px;
  padding: 26px 0;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--blue-700);
  border: 1px solid #b9d5ec;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(7, 90, 169, 0.08);
  font-weight: 900;
}

.workflow-step p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--muted);
}

.disclosure-band {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  color: #d8e8f7;
  background: linear-gradient(120deg, var(--navy-900), var(--blue-700));
}

.disclosure-band::after {
  position: absolute;
  top: -150px;
  right: -120px;
  width: 430px;
  height: 430px;
  border: 90px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  content: "";
}

.disclosure-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  align-items: center;
  gap: 60px;
}

.disclosure-inner h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
}

.disclosure-inner p {
  margin: 0;
  font-size: 0.98rem;
}

.cta-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: clamp(38px, 6vw, 68px);
  border: 1px solid #cfe1f1;
  border-radius: 30px;
  background: linear-gradient(135deg, #f9fcff, #e9f5ff);
}

.cta-panel::before {
  position: absolute;
  right: -70px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  border: 55px solid rgba(34, 148, 237, 0.09);
  border-radius: 50%;
  content: "";
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 700px;
  margin-bottom: 13px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.cta-panel p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 96px;
  background: linear-gradient(135deg, #f9fcff, #eaf5ff);
}

.page-hero::after {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(7, 90, 169, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(7, 90, 169, 0.03), 0 0 0 140px rgba(7, 90, 169, 0.025);
  content: "";
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.page-hero h1 {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
}

.about-photo {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 30px;
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.about-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 23, 47, 0.72));
  content: "";
}

.about-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.photo-caption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  font-size: 0.85rem;
}

.photo-caption span:last-child {
  color: #acd5f5;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mission-band {
  padding: 70px 0;
  color: #c9daeb;
  background: var(--navy-950);
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}

.mission-grid h2 {
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
}

.mission-grid p {
  margin: 0;
  font-size: 1.1rem;
}

.principles {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}

.principle-list {
  border-top: 1px solid var(--line);
}

.principle {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}

.principle-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue-700);
  border-radius: 14px;
  background: var(--blue-50);
  font-size: 0.72rem;
  font-weight: 900;
}

.principle p {
  margin: 0;
  color: var(--muted);
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.11);
}

.responsibility-item {
  padding: 38px;
  background: var(--navy-950);
}

.responsibility-item .index {
  display: block;
  margin-bottom: 48px;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
}

.responsibility-item p {
  margin: 0;
  color: #a9c0d8;
}

.policy-hero {
  padding: 96px 0 70px;
  color: #d4e3f2;
  background:
    radial-gradient(circle at 84% 15%, rgba(34, 148, 237, 0.2), transparent 24%),
    var(--navy-950);
}

.policy-hero h1 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.policy-hero .lead {
  max-width: 780px;
  color: #b9cee2;
}

.policy-meta {
  margin-top: 40px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.policy-meta span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  font-size: 0.78rem;
}

.promise-strip {
  margin-top: -1px;
  color: var(--navy-900);
  background: #dff2ff;
}

.promise-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.promise {
  padding: 31px 28px;
  border-right: 1px solid #bfdced;
}

.promise:last-child {
  border-right: 0;
}

.promise b {
  display: block;
  margin-bottom: 4px;
}

.promise small {
  color: #52708e;
}

.policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(55px, 8vw, 110px);
}

.policy-nav {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}

.policy-nav strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy-950);
  font-size: 0.8rem;
}

.policy-nav a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
}

.policy-nav a:hover {
  color: var(--blue-700);
}

.policy-section {
  scroll-margin-top: 115px;
  padding: 0 0 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.policy-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.policy-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.policy-section h3 {
  margin-top: 29px;
  font-size: 1.18rem;
  letter-spacing: -0.015em;
}

.policy-section p,
.policy-section li {
  color: #536980;
}

.policy-section ul {
  padding-left: 22px;
}

.policy-section li + li {
  margin-top: 9px;
}

.callout {
  margin: 27px 0;
  padding: 23px 25px;
  border-left: 4px solid var(--blue-600);
  border-radius: 0 14px 14px 0;
  background: var(--blue-50);
}

.callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-900);
}

.callout p {
  margin: 0;
}

.data-table {
  width: 100%;
  margin: 25px 0;
  border-collapse: collapse;
  border: 1px solid var(--line);
  font-size: 0.88rem;
}

.data-table th,
.data-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--navy-900);
  background: #f2f7fb;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.contact-hero {
  padding: 100px 0 210px;
  color: #c8ddf0;
  background:
    radial-gradient(circle at 80% 20%, rgba(34, 148, 237, 0.22), transparent 24%),
    var(--navy-950);
}

.contact-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.contact-hero .lead {
  max-width: 720px;
  color: #b4c9de;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  margin-top: -135px;
}

.form-panel,
.contact-aside {
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.form-panel {
  padding: clamp(29px, 5vw, 54px);
}

.form-intro {
  margin-bottom: 36px;
}

.form-intro h2 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.form-intro p {
  margin: 0;
  color: var(--muted);
}

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

.field {
  position: relative;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #263d57;
  font-size: 0.8rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cad8e6;
  border-radius: 11px;
  background: #fbfdff;
  color: var(--ink);
  transition: 180ms ease;
}

.field input,
.field select {
  height: 52px;
  padding: 0 15px;
}

.field textarea {
  min-height: 150px;
  padding: 14px 15px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-500);
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(34, 148, 237, 0.12);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  min-height: 19px;
  margin-top: 5px;
  color: var(--danger);
  font-size: 0.72rem;
}

.file-input {
  padding: 13px !important;
  height: auto !important;
}

.file-note {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.7rem;
}

.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 25px 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue-700);
}

.consent-row a {
  color: var(--blue-700);
  font-weight: 700;
}

.submit-button {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  display: none;
  margin: 20px 0 0;
  padding: 15px 17px;
  border-radius: 11px;
  font-size: 0.82rem;
}

.form-status.show {
  display: block;
}

.form-status.success {
  color: #087653;
  border: 1px solid #afe2cf;
  background: #ecfbf5;
}

.form-status.error {
  color: #a3242a;
  border: 1px solid #f4bec0;
  background: #fff1f1;
}

.contact-aside {
  overflow: hidden;
}

.aside-top {
  padding: 38px;
  color: #d1e4f5;
  background: var(--blue-700);
}

.aside-top h3 {
  color: #fff;
}

.aside-top p {
  margin: 0;
}

.contact-methods {
  padding: 12px 38px;
}

.contact-method {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.contact-method:last-child {
  border-bottom: 0;
}

.contact-method small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method a,
.contact-method strong {
  color: var(--navy-900);
  text-decoration: none;
  font-size: 0.98rem;
}

.contact-method a:hover {
  color: var(--blue-700);
}

.support-note {
  margin: 22px 38px 38px;
  padding: 18px;
  color: #536d86;
  border-radius: 13px;
  background: var(--blue-50);
  font-size: 0.78rem;
}

.support-note b {
  color: var(--navy-900);
}

.contact-disclosure {
  grid-template-columns: 0.7fr 1.3fr;
  color: #536980;
}

.site-footer {
  padding: 70px 0 28px;
  color: #a8bfd4;
  background: #05162d;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 50px;
  padding-bottom: 48px;
}

.footer-brand .brand {
  margin-bottom: 18px;
  color: #fff;
}

.footer-brand p {
  max-width: 510px;
  margin: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 11px 36px;
}

.footer-links a {
  color: #bdd0e2;
  text-decoration: none;
  font-size: 0.84rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7590aa;
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-simulated {
  color: #ffa3a5;
  font-weight: 750;
}

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

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

.h5-body {
  background: #f5f8fb;
}

.h5-top {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.h5-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-950);
  font-weight: 850;
}

.h5-main {
  width: min(100%, 620px);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.h5-hero {
  padding: 56px 24px 46px;
  background: linear-gradient(150deg, #f7fbff, #e4f2ff);
}

.h5-hero h1 {
  margin-bottom: 19px;
  font-size: clamp(2.7rem, 13vw, 4.1rem);
}

.h5-image {
  width: calc(100% - 32px);
  height: 340px;
  margin: 0 16px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.h5-section {
  padding: 56px 24px;
}

.h5-section-dark {
  color: #bdd0e2;
  background: var(--navy-950);
}

.h5-section h2 {
  font-size: 2.25rem;
}

.h5-section-dark h2,
.h5-section-dark h3 {
  color: #fff;
}

.h5-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

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

.h5-section-dark .h5-item {
  border-color: rgba(255, 255, 255, 0.12);
}

.h5-item small {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  place-items: center;
  color: var(--blue-700);
  border-radius: 11px;
  background: var(--blue-50);
  font-weight: 900;
}

.h5-item p {
  margin: 0;
  color: var(--muted);
}

.h5-section-dark .h5-item p {
  color: #aac1d7;
}

.h5-footer {
  padding: 30px 24px;
  color: #7b94ad;
  background: #041329;
  font-size: 0.72rem;
}

.h5-footer p {
  margin: 0 0 7px;
}

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

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

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

@media (max-width: 1020px) {
  .hero-grid,
  .page-hero-grid,
  .planner-layout,
  .principles,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-block: 70px 110px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    width: min(680px, 94%);
    margin-inline: auto;
  }

  .page-hero-copy {
    max-width: 760px;
  }

  .about-photo {
    min-height: 420px;
  }

  .about-photo img {
    height: 420px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .policy-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 50px;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 32px, 720px);
  }

  .header-inner {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-wrap {
    position: fixed;
    inset: 70px 0 auto;
    display: none;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 20px 16px 30px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 20px 40px rgba(6, 23, 47, 0.12);
  }

  .nav-wrap.open {
    display: block;
  }

  .site-nav {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .header-action {
    width: 100%;
    margin-top: 12px;
  }

  .section,
  .page-hero {
    padding-block: 78px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .lead {
    margin-top: 20px;
  }

  .feature-row {
    grid-template-columns: 68px 1fr;
    gap: 24px;
    padding: 30px;
  }

  .feature-mark {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .feature-detail {
    grid-column: 2;
  }

  .workflow {
    grid-template-columns: 1fr;
  }

  .workflow-intro {
    position: static;
  }

  .disclosure-inner,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .contact-disclosure {
    grid-template-columns: 1fr;
  }

  .responsibility-grid {
    grid-template-columns: 1fr;
  }

  .responsibility-item .index {
    margin-bottom: 24px;
  }

  .promise-inner {
    grid-template-columns: 1fr;
  }

  .promise {
    border-right: 0;
    border-bottom: 1px solid #bfdced;
  }

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

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 7px 15px;
  }

  .policy-nav strong {
    width: 100%;
  }

  .policy-nav a {
    padding: 3px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 28px);
  }

  .brand span {
    display: none;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 58px;
    padding-block: 56px 91px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    width: calc(100% - 9px);
    margin-left: 0;
  }

  .photo-frame,
  .photo-frame img {
    min-height: 410px;
    height: 410px;
  }

  .market-note {
    top: -22px;
    left: 13px;
  }

  .market-card {
    right: -9px;
    bottom: -45px;
    width: 92%;
  }

  .tape-inner {
    min-height: 86px;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 7px 24px;
    padding-block: 14px;
  }

  .ticker-row {
    flex: 0 1 auto;
  }

  .sim-label {
    order: -1;
    width: 100%;
    border: 0;
    padding: 0;
  }

  .section {
    padding-block: 66px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 24px;
  }

  .feature-detail {
    grid-column: auto;
  }

  .plan-content {
    padding: 22px;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    grid-template-columns: 50px 1fr;
    gap: 18px;
  }

  .workflow-steps::before {
    left: 24px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .disclosure-inner {
    gap: 27px;
  }

  .page-hero {
    padding-block: 62px;
  }

  .about-photo,
  .about-photo img {
    min-height: 360px;
    height: 360px;
  }

  .photo-caption {
    display: block;
  }

  .photo-caption span {
    display: block;
    margin-top: 6px;
  }

  .mission-grid {
    gap: 22px;
  }

  .principles {
    gap: 32px;
  }

  .contact-hero {
    padding: 72px 0 175px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .aside-top,
  .contact-methods {
    padding-inline: 25px;
  }

  .support-note {
    margin-inline: 25px;
  }

  .data-table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom p + p {
    margin-top: 8px;
  }
}
