:root {
  --blue-950: #071a3b;
  --blue-900: #0b2554;
  --blue-800: #123b82;
  --blue-700: #1f4da8;
  --blue-600: #2a5fc3;
  --blue-100: #dce8ff;
  --blue-50: #f2f6ff;
  --gold-600: #a87406;
  --gold-500: #d6a62e;
  --gold-300: #efd47b;
  --gold-100: #fbf1cc;
  --ink: #111827;
  --muted: #647083;
  --line: #dfe5ee;
  --mist: #f6f8fb;
  --white: #ffffff;
  --success: #247a52;
  --danger: #b42318;
  --shadow-sm: 0 10px 30px rgba(7, 26, 59, 0.08);
  --shadow-lg: 0 24px 70px rgba(7, 26, 59, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --page: min(1180px, calc(100% - 48px));
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(214, 166, 46, 0.8);
  outline-offset: 3px;
}

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

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(223, 229, 238, 0.78);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-950);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img,
.brand-mark {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border: 1px solid rgba(31, 77, 168, 0.12);
  border-radius: 10px;
  box-shadow: 0 7px 18px rgba(31, 77, 168, 0.12);
}

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

.nav-link {
  padding: 10px 14px;
  color: #485568;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-cta,
.button-primary {
  color: var(--white);
  background: var(--blue-700);
  box-shadow: 0 10px 24px rgba(31, 77, 168, 0.2);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--blue-800);
  box-shadow: 0 14px 30px rgba(31, 77, 168, 0.28);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--blue-900);
  border-color: rgba(31, 77, 168, 0.2);
  background: rgba(255, 255, 255, 0.86);
}

.button-secondary:hover {
  border-color: rgba(31, 77, 168, 0.45);
  background: var(--white);
  transform: translateY(-2px);
}

.button-light {
  color: var(--blue-950);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  color: var(--blue-900);
  background: var(--blue-50);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: currentColor;
  transition: 0.25s ease;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--gold-500);
}

.section-head {
  max-width: 720px;
  margin-bottom: 50px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

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

h1,
h2,
h3,
h4 {
  color: var(--blue-950);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.3vw, 5.8rem);
  font-weight: 830;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.3vw, 4rem);
  font-weight: 820;
}

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

p {
  color: var(--muted);
}

.lead {
  max-width: 660px;
  font-size: clamp(1.07rem, 1.6vw, 1.26rem);
  line-height: 1.7;
}

.fine-print {
  color: #7b8593;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 7%, rgba(42, 95, 195, 0.13), transparent 32%),
    linear-gradient(180deg, #fbfdff 0%, #f3f7ff 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(31, 77, 168, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 77, 168, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 74%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding: 80px 0 96px;
}

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

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 30px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  color: #5f6978;
  list-style: none;
  font-size: 13px;
  font-weight: 750;
}

.trust-line li::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  content: "";
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px var(--gold-100);
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.hero-photo {
  position: absolute;
  inset: 16px 0 72px 54px;
  width: calc(100% - 54px);
  height: calc(100% - 88px);
  border: 10px solid rgba(255, 255, 255, 0.88);
  border-radius: 48px 10px 48px 10px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  filter: saturate(0.85) contrast(1.04);
}

.scenario-float {
  position: absolute;
  z-index: 2;
  top: 52px;
  left: 0;
  width: 206px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.scenario-float strong,
.record-float strong {
  display: block;
  margin-bottom: 11px;
  color: var(--blue-950);
  font-size: 13px;
}

.scenario-row {
  display: grid;
  grid-template-columns: 42px 1fr 30px;
  gap: 8px;
  align-items: center;
  margin: 9px 0;
  color: #6d7787;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.scenario-bar {
  height: 5px;
  overflow: hidden;
  border-radius: 9px;
  background: #e7ebf2;
}

.scenario-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue-600);
}

.scenario-row.bull .scenario-bar i {
  background: var(--gold-500);
}

.record-float {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 32px;
  width: 240px;
  padding: 18px 20px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(7, 26, 59, 0.93);
  box-shadow: var(--shadow-lg);
}

.record-float strong {
  color: var(--white);
}

.confidence-track {
  position: relative;
  height: 8px;
  margin: 14px 0 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.17);
}

.confidence-track::before {
  display: block;
  width: 72%;
  height: 100%;
  content: "";
  border-radius: inherit;
  background: var(--gold-500);
}

.record-meta {
  display: flex;
  justify-content: space-between;
  color: #bfcce1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 112px 0;
}

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

.section-deep {
  color: var(--white);
  background: var(--blue-950);
}

.section-deep h2,
.section-deep h3 {
  color: var(--white);
}

.section-deep p {
  color: #b9c5d8;
}

.logic-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(40px, 7vw, 94px);
  align-items: center;
}

.workspace-panel {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(31, 77, 168, 0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.workspace-panel::before {
  position: absolute;
  top: -92px;
  right: -92px;
  width: 210px;
  height: 210px;
  content: "";
  border-radius: 50%;
  background: rgba(214, 166, 46, 0.13);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.panel-top strong {
  color: var(--blue-950);
  font-size: 14px;
}

.local-badge {
  padding: 6px 9px;
  color: var(--success);
  border: 1px solid rgba(36, 122, 82, 0.18);
  border-radius: 999px;
  background: #edf8f2;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chart-box {
  position: relative;
  height: 210px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background-image: linear-gradient(to bottom, transparent 49px, #eef1f5 50px);
  background-size: 100% 50px;
}

.chart-line {
  position: absolute;
  inset: 0;
}

.chart-line span {
  position: absolute;
  height: 3px;
  border-radius: 4px;
  background: var(--blue-600);
  transform-origin: left center;
}

.chart-line span:nth-child(1) { left: 4%; bottom: 25%; width: 22%; transform: rotate(-11deg); }
.chart-line span:nth-child(2) { left: 25%; bottom: 34%; width: 20%; transform: rotate(13deg); }
.chart-line span:nth-child(3) { left: 44%; bottom: 25%; width: 21%; transform: rotate(-24deg); }
.chart-line span:nth-child(4) { left: 62%; bottom: 42%; width: 18%; transform: rotate(-7deg); }
.chart-line span:nth-child(5) { left: 79%; bottom: 46%; width: 17%; transform: rotate(-25deg); background: var(--gold-500); }

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

.panel-stat {
  padding: 14px;
  border-radius: 13px;
  background: var(--blue-50);
}

.panel-stat small {
  display: block;
  margin-bottom: 5px;
  color: #71809a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-stat b {
  color: var(--blue-900);
  font-size: 15px;
}

.steps {
  position: relative;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.steps::before {
  position: absolute;
  top: 16px;
  bottom: 22px;
  left: 20px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--blue-600), var(--gold-500));
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--blue-700);
  box-shadow: 0 0 0 1px var(--blue-100);
  font-size: 11px;
  font-weight: 900;
}

.step:last-child .step-number {
  color: var(--blue-950);
  background: var(--gold-500);
}

.step h3 {
  margin: 2px 0 6px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.step p {
  margin-bottom: 0;
  font-size: 15px;
}

.paths-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}

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

.path-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  transition: 0.3s ease;
}

.path-card:hover {
  border-color: rgba(239, 212, 123, 0.42);
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(5px);
}

.path-glyph {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--gold-300);
  font-size: 23px;
  font-weight: 900;
}

.path-card h3 {
  margin-bottom: 5px;
  font-size: 21px;
}

.path-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.path-tag {
  color: var(--gold-300);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guardrail-section {
  overflow: hidden;
}

.guardrail-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(50px, 8vw, 118px);
  align-items: center;
}

.dial {
  position: relative;
  display: grid;
  width: min(430px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--white) 0 52%, transparent 53%),
    conic-gradient(from 220deg, var(--blue-700) 0 32%, var(--gold-500) 32% 51%, #e8edf5 51% 72%, transparent 72% 100%);
  box-shadow: inset 0 0 0 1px rgba(31, 77, 168, 0.08), var(--shadow-sm);
}

.dial::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32%;
  height: 3px;
  content: "";
  border-radius: 5px;
  background: var(--blue-950);
  transform: rotate(-37deg);
  transform-origin: left center;
}

.dial-center {
  position: relative;
  z-index: 1;
  text-align: center;
}

.dial-center strong {
  display: block;
  color: var(--blue-950);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.dial-center span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guardrail-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 34px;
}

.guardrail-item {
  padding: 19px;
  border-left: 3px solid var(--gold-500);
  background: var(--mist);
}

.guardrail-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-950);
  font-size: 15px;
}

.guardrail-item span {
  color: var(--muted);
  font-size: 13px;
}

.record-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.record-book {
  position: relative;
  padding: 14px 0 14px 28px;
}

.record-book::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 3px;
  content: "";
  border-radius: 4px;
  background: linear-gradient(var(--gold-500), var(--blue-600));
}

.decision-row {
  position: relative;
  margin-bottom: 12px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 7px 24px rgba(7, 26, 59, 0.05);
}

.decision-row::before {
  position: absolute;
  top: 28px;
  left: -28px;
  width: 13px;
  height: 13px;
  content: "";
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 1px var(--blue-100);
}

.decision-row:last-child::before {
  background: var(--gold-500);
}

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

.decision-top strong {
  color: var(--blue-950);
  font-size: 14px;
}

.decision-date {
  color: #778399;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.decision-row p {
  margin-bottom: 0;
  font-size: 13px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 74px;
  border-radius: var(--radius-lg);
  background: var(--blue-700);
  box-shadow: var(--shadow-lg);
}

.cta-band::after {
  position: absolute;
  top: -130px;
  right: -90px;
  width: 390px;
  height: 390px;
  content: "";
  border: 58px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-band-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.cta-band h2 {
  max-width: 660px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.cta-band p {
  max-width: 610px;
  margin-bottom: 0;
  color: #d9e5fa;
}

.site-footer {
  padding: 64px 0 28px;
  color: #aebbd0;
  background: var(--blue-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand p {
  max-width: 490px;
  margin: 18px 0 0;
  color: #9fadc1;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}

.footer-links a {
  color: #c4cede;
  font-size: 13px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
  color: #8492a8;
}

/* Interior pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 96px;
  background: linear-gradient(145deg, #f8fbff 0%, #edf3ff 64%, #fbf4d8 140%);
}

.page-hero::after {
  position: absolute;
  right: -120px;
  bottom: -230px;
  width: 470px;
  height: 470px;
  content: "";
  border: 1px solid rgba(31, 77, 168, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(31, 77, 168, 0.04), 0 0 0 140px rgba(31, 77, 168, 0.03);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 930px;
  font-size: clamp(3.1rem, 6vw, 5.5rem);
}

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

.about-intro {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  min-height: 590px;
}

.about-photo-wrap::before {
  position: absolute;
  top: 30px;
  left: -30px;
  width: 120px;
  height: 120px;
  content: "";
  border-radius: 24px;
  background: var(--gold-100);
  transform: rotate(12deg);
}

.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px 48px 12px 48px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.principles-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(45px, 8vw, 110px);
  align-items: start;
}

.principle-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.principle {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 27px;
  background: var(--white);
}

.principle-glyph,
.policy-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--blue-700);
  border-radius: 14px;
  background: var(--blue-50);
  font-size: 20px;
  font-weight: 900;
}

.principle h3 {
  margin: 3px 0 7px;
  font-size: 19px;
}

.principle p {
  margin: 0;
  font-size: 14px;
}

.numbers-panel {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 38px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--blue-950);
}

.numbers-panel h3 {
  margin-bottom: 30px;
  color: var(--white);
}

.number-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.number-line strong {
  color: var(--gold-300);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.number-line span {
  max-width: 160px;
  color: #b9c5d8;
  font-size: 13px;
  text-align: right;
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
}

.promise {
  padding: 34px;
  background: var(--blue-950);
}

.promise span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.promise h3 {
  font-size: 22px;
}

.promise p {
  margin-bottom: 0;
  font-size: 14px;
}

/* Privacy */
.privacy-hero {
  padding-bottom: 70px;
}

.update-pill {
  display: inline-flex;
  margin-top: 18px;
  padding: 9px 13px;
  color: var(--blue-800);
  border: 1px solid rgba(31, 77, 168, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
}

.privacy-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.policy-nav strong {
  display: block;
  margin-bottom: 13px;
  color: var(--blue-950);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-nav a {
  display: block;
  padding: 8px 10px;
  color: #647083;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 650;
}

.policy-nav a:hover {
  color: var(--blue-800);
  background: var(--blue-50);
}

.security-promise {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  margin-bottom: 42px;
  padding: 30px;
  border: 1px solid rgba(36, 122, 82, 0.18);
  border-radius: var(--radius-md);
  background: #f0f9f5;
}

.security-promise .policy-icon {
  width: 60px;
  height: 60px;
  color: var(--success);
  background: var(--white);
}

.security-promise h2 {
  margin-bottom: 8px;
  font-size: 25px;
}

.security-promise p {
  margin-bottom: 0;
  color: #466657;
}

.policy-section {
  scroll-margin-top: calc(var(--header-height) + 26px);
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.policy-section:first-of-type {
  border-top: 0;
}

.policy-title {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.policy-title .policy-icon {
  width: 48px;
  height: 48px;
  font-size: 16px;
}

.policy-title h2 {
  margin: 0;
  font-size: 28px;
}

.policy-section p,
.policy-section li {
  color: #5b6677;
  font-size: 15px;
}

.policy-section ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.data-table {
  width: 100%;
  margin: 26px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  font-size: 14px;
}

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

.data-table th {
  color: var(--blue-950);
  background: var(--blue-50);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.rights-box {
  margin-top: 24px;
  padding: 28px;
  border-left: 4px solid var(--gold-500);
  background: #fffbec;
}

.rights-box h3 {
  font-size: 20px;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
}

.contact-form {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field {
  position: relative;
}

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

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-950);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cfd7e3;
  border-radius: 12px;
  color: var(--ink);
  background: #fbfcfe;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--blue-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(42, 95, 195, 0.1);
}

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

.field-error {
  min-height: 20px;
  margin: 5px 0 0;
  color: var(--danger);
  font-size: 12px;
}

.file-control {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 11px 14px;
  overflow: hidden;
  border: 1px dashed #b9c5d5;
  border-radius: 12px;
  background: var(--blue-50);
}

.file-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file-label {
  color: var(--blue-700);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.file-name {
  margin-left: 10px;
  color: var(--muted);
  font-size: 12px;
}

.check-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  margin: 5px 0 2px;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue-700);
}

.check-field label {
  color: #566173;
  font-size: 13px;
}

.check-field a {
  color: var(--blue-700);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.form-status {
  margin: 0;
  font-size: 13px;
  font-weight: 750;
}

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

.form-status.error {
  color: var(--danger);
}

.contact-aside {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.contact-card {
  margin-bottom: 18px;
  padding: 30px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--blue-950);
}

.contact-card h3 {
  color: var(--white);
}

.contact-card p {
  color: #b9c5d8;
  font-size: 14px;
}

.contact-card a {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold-300);
  font-weight: 800;
}

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

.response-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.response-list li:last-child {
  border-bottom: 0;
}

.response-list strong {
  color: var(--blue-950);
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #3ca875;
  box-shadow: 0 0 0 4px rgba(60, 168, 117, 0.12);
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@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; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  :root { --header-height: 74px; }
  .site-header { height: var(--header-height); }
  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 6px;
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.25s ease;
  }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav .nav-link { padding: 13px; }
  .site-nav .header-cta { margin-top: 6px; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero-grid { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 560px; }
  .logic-grid,
  .paths-layout,
  .guardrail-grid,
  .record-layout,
  .about-intro,
  .principles-grid,
  .contact-layout { grid-template-columns: 1fr; }
  .paths-layout > div:first-child { max-width: 760px; }
  .numbers-panel,
  .contact-aside { position: static; }
  .about-photo-wrap { min-height: 520px; order: -1; }
  .privacy-shell { grid-template-columns: 1fr; gap: 38px; }
  .policy-nav { position: static; display: flex; flex-wrap: wrap; gap: 4px; }
  .policy-nav strong { width: 100%; }
  .cta-band-content { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  :root { --page: min(100% - 32px, 1180px); }
  .brand span { display: none; }
  .section { padding: 76px 0; }
  .page-hero { padding: 76px 0 70px; }
  .hero-grid { padding: 54px 0 72px; }
  .hero-visual { min-height: 470px; }
  .hero-photo { inset: 16px 0 54px 24px; width: calc(100% - 24px); height: calc(100% - 70px); border-width: 7px; border-radius: 32px 8px 32px 8px; }
  .scenario-float { top: 4px; width: 180px; padding: 14px; }
  .record-float { right: 0; bottom: 8px; width: 210px; }
  .panel-stats { grid-template-columns: 1fr; }
  .chart-box { height: 170px; }
  .path-card { grid-template-columns: 52px 1fr; padding: 20px; }
  .path-glyph { width: 52px; height: 52px; }
  .path-tag { grid-column: 2; }
  .guardrail-list { grid-template-columns: 1fr; }
  .cta-band { padding: 42px 28px; }
  .footer-main { grid-template-columns: 1fr; align-items: start; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .about-photo-wrap { min-height: 390px; }
  .promise-strip { grid-template-columns: 1fr; }
  .principle { grid-template-columns: 46px 1fr; padding: 22px; }
  .principle-glyph { width: 46px; height: 46px; }
  .security-promise { grid-template-columns: 1fr; }
  .policy-title { grid-template-columns: 42px 1fr; }
  .policy-title .policy-icon { width: 42px; height: 42px; }
  .data-table { display: block; overflow-x: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
}

/* Standalone mobile About */
.h5-body {
  background: var(--mist);
}

.h5-shell {
  width: min(100%, 680px);
  margin-inline: auto;
  background: var(--white);
  box-shadow: 0 0 50px rgba(7, 26, 59, 0.08);
}

.h5-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.h5-header img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

.h5-header strong {
  color: var(--blue-950);
}

.h5-hero {
  padding: 64px 22px 48px;
  background: linear-gradient(145deg, #f7faff, #eaf2ff);
}

.h5-hero h1 {
  font-size: clamp(2.6rem, 13vw, 4.4rem);
}

.h5-content {
  padding: 22px;
}

.h5-photo {
  width: 100%;
  height: 340px;
  margin: 16px 0 48px;
  border-radius: 10px 28px 10px 28px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.h5-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

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

.h5-principle {
  margin: 13px 0;
  padding: 20px;
  border-radius: 16px;
  background: var(--blue-50);
}

.h5-principle strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-950);
}

.h5-principle p {
  margin: 0;
  font-size: 14px;
}

.h5-footer {
  padding: 30px 22px;
  color: #aebbd0;
  background: var(--blue-950);
}

.h5-footer p {
  margin: 0;
  color: #aebbd0;
  font-size: 12px;
}

@media (max-width: 420px) {
  .hero-visual { min-height: 420px; }
  .scenario-float { width: 166px; }
  .record-float { width: 190px; padding: 15px; }
  .workspace-panel { padding: 20px; }
  .decision-top { align-items: flex-start; flex-direction: column; gap: 4px; }
  .contact-form { border-radius: 22px; }
  .h5-photo { height: 270px; }
}
