:root {
  --ink: #07182d;
  --navy: #06386f;
  --navy-2: #0a4a87;
  --blue: #1167a9;
  --sky: #63c8f2;
  --mist: #eaf5fb;
  --silver: #d8dee5;
  --slate: #53657a;
  --paper: #f7fafc;
  --white: #ffffff;
  --line: rgba(7, 24, 45, 0.12);
  --success: #0b7a62;
  --warning: #b26915;
  --shadow-sm: 0 12px 30px rgba(3, 36, 70, 0.09);
  --shadow-lg: 0 28px 80px rgba(3, 36, 70, 0.18);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --max: 1180px;
}

* {
  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;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(99, 200, 242, 0.65);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(7, 24, 45, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.brand img,
.footer-brand img,
.h5-brand img {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(7, 24, 45, 0.1);
  border-radius: 10px;
  object-fit: cover;
}

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

.nav-link {
  padding: 8px 13px;
  border-radius: 10px;
  color: #405369;
  font-size: 0.93rem;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
  background: var(--mist);
}

.nav-cta,
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-cta,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 12px 25px rgba(6, 56, 111, 0.22);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-cta:hover,
.btn-primary:hover {
  box-shadow: 0 16px 32px rgba(6, 56, 111, 0.28);
}

.btn-secondary {
  border-color: rgba(7, 24, 45, 0.14);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
}

.btn-secondary:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: 0.25s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 92px;
  background:
    radial-gradient(circle at 8% 4%, rgba(99, 200, 242, 0.26), transparent 28%),
    radial-gradient(circle at 88% 75%, rgba(17, 103, 169, 0.16), transparent 30%),
    linear-gradient(145deg, #fbfdff 0%, #eef7fc 58%, #f8fafc 100%);
}

.hero::before {
  position: absolute;
  top: 11%;
  right: -90px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(17, 103, 169, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: clamp(48px, 7vw, 88px);
}

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

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

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(3rem, 6.3vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.067em;
  line-height: 0.97;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--navy-2);
}

.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: #445a70;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  color: #536a80;
  font-size: 0.84rem;
  font-weight: 750;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-dot {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  font-size: 0.68rem;
}

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

.hero-photo {
  position: absolute;
  inset: 16px 0 70px 40px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(3, 30, 59, 0.68));
  content: "";
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lens-panel {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 4px;
  width: min(360px, 86%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.panel-kicker {
  margin: 0;
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-title {
  margin: 2px 0 0;
  font-size: 1.2rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.readiness {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 6px solid #caeaf8;
  border-top-color: var(--blue);
  border-right-color: var(--blue);
  border-radius: 50%;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
  transform: rotate(16deg);
}

.readiness span {
  transform: rotate(-16deg);
}

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

.signal-line {
  display: grid;
  align-items: center;
  grid-template-columns: 106px 1fr 28px;
  gap: 10px;
  color: #4d6074;
  font-size: 0.78rem;
  font-weight: 700;
}

.signal-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfeaf1;
}

.signal-track i {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sky), var(--blue));
}

.section {
  padding: 108px 0;
}

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

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(99, 200, 242, 0.16), transparent 28%),
    linear-gradient(135deg, #041c38, #06386f);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.section-head > div {
  max-width: 720px;
}

.section h2,
.section-head h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-intro {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 1.08rem;
}

.section-dark .section-intro {
  color: #bdd4e6;
}

.micro-note {
  max-width: 270px;
  padding-left: 18px;
  border-left: 2px solid var(--sky);
  color: var(--slate);
  font-size: 0.86rem;
}

.method-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.method-step {
  position: relative;
  min-height: 350px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.method-step:last-child {
  border-right: 0;
}

.method-step:nth-child(2) {
  background: linear-gradient(180deg, #f8fcff, #eef7fc);
}

.step-no {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 42px;
  border: 1px solid rgba(17, 103, 169, 0.18);
  border-radius: 50%;
  color: var(--navy);
  background: var(--mist);
  font-size: 0.82rem;
  font-weight: 900;
}

.method-step h3 {
  margin: 0 0 13px;
  font-size: 1.6rem;
  letter-spacing: -0.035em;
}

.method-step p {
  margin: 0;
  color: var(--slate);
}

.step-detail {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--navy-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-arrow {
  font-size: 1.2rem;
}

.evidence-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 64px;
  align-items: center;
}

.evidence-copy h2 {
  margin-bottom: 24px;
}

.evidence-list {
  display: grid;
  gap: 11px;
  margin-top: 32px;
}

.evidence-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.evidence-icon,
.feature-icon,
.chapter-icon,
.contact-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  color: var(--navy);
  background: var(--mist);
  font-weight: 900;
}

.evidence-item h3 {
  margin: 0;
  font-size: 1.05rem;
}

.evidence-item p {
  margin: 3px 0 0;
  color: #aac8dc;
  font-size: 0.92rem;
}

.evidence-board {
  position: relative;
  min-height: 500px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.board-label {
  color: #9dc8df;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.board-score {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 6px;
}

.board-score strong {
  font-size: 4.6rem;
  letter-spacing: -0.08em;
  line-height: 1;
}

.board-score span {
  color: #9dc8df;
}

.chart {
  position: relative;
  display: flex;
  height: 210px;
  align-items: end;
  gap: 12px;
  margin: 42px 0 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.chart::before,
.chart::after {
  position: absolute;
  right: 0;
  left: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.11);
  content: "";
}

.chart::before {
  top: 33%;
}

.chart::after {
  top: 66%;
}

.bar {
  position: relative;
  z-index: 1;
  flex: 1;
  height: var(--bar);
  min-width: 10px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, #7bd4f6, #1674b4);
  opacity: 0.87;
}

.board-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #b8d2e3;
  font-size: 0.82rem;
}

.status-pill,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #0d5144;
  background: #c7f0e6;
  font-size: 0.75rem;
  font-weight: 850;
}

.notebook-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.notebook-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.notebook-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.notebook-top h3 {
  margin: 4px 0 0;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.scenario-field {
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.scenario-field:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.scenario-field span {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-2);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scenario-field p {
  margin: 0;
  color: #354c63;
}

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

.feature-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 20px;
  border-radius: 18px;
  transition: 0.25s ease;
}

.feature-row:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.feature-row h3 {
  margin: 0;
  font-size: 1.05rem;
}

.feature-row p {
  margin: 3px 0 0;
  color: var(--slate);
  font-size: 0.92rem;
}

.field-guide {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.guide-sticky {
  position: sticky;
  top: 118px;
}

.guide-sticky p {
  color: var(--slate);
}

.lesson-list {
  counter-reset: lesson;
}

.lesson {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  counter-increment: lesson;
}

.lesson:first-child {
  border-top: 0;
}

.lesson::before {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  color: var(--navy);
  background: var(--mist);
  content: "0" counter(lesson);
  font-size: 0.8rem;
  font-weight: 900;
}

.lesson h3 {
  margin: 0;
  font-size: 1.32rem;
  letter-spacing: -0.025em;
}

.lesson p {
  margin: 6px 0 0;
  color: var(--slate);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 54px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(99, 200, 242, 0.35), transparent 28%),
    linear-gradient(135deg, #052c58, #0b5d9a);
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.7rem);
}

.cta-band p {
  max-width: 630px;
  margin: 15px 0 0;
  color: #c4dcec;
}

.site-footer {
  padding: 62px 0 28px;
  color: #b7c9da;
  background: #03172e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 54px;
  padding-bottom: 46px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  font-weight: 850;
}

.footer-copy {
  max-width: 440px;
  margin: 18px 0 0;
}

.footer-col h3 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

.footer-disclaimer {
  max-width: 650px;
  text-align: right;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 84px;
  background:
    radial-gradient(circle at 92% 5%, rgba(99, 200, 242, 0.24), transparent 26%),
    linear-gradient(145deg, #f8fcff, #eaf5fb);
}

.page-hero p {
  max-width: 720px;
  margin: 28px 0 0;
  color: #445a70;
  font-size: 1.14rem;
}

.page-hero-centered {
  text-align: center;
}

.page-hero-centered .eyebrow,
.page-hero-centered h1,
.page-hero-centered p {
  margin-right: auto;
  margin-left: auto;
}

.about-lead {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 68px;
  align-items: center;
}

.about-photo {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(3, 29, 57, 0.72));
  content: "";
}

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

.about-photo-note {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  color: var(--white);
}

.about-photo-note strong {
  display: block;
  font-size: 1.2rem;
}

.about-photo-note span {
  color: #d6e6f1;
  font-size: 0.88rem;
}

.about-copy h2 {
  margin-bottom: 24px;
}

.about-copy > p {
  color: var(--slate);
  font-size: 1.06rem;
}

.principle-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.principle {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
}

.principle-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--navy);
  background: var(--mist);
  font-weight: 900;
}

.principle h3 {
  margin: 0;
  font-size: 1rem;
}

.principle p {
  margin: 2px 0 0;
  color: var(--slate);
  font-size: 0.9rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: 0.25s ease;
}

.value-card:hover {
  border-color: rgba(17, 103, 169, 0.24);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.value-no {
  color: var(--navy-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.value-card h3 {
  margin: 54px 0 12px;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.value-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.93rem;
}

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

.boundary-card {
  padding: 36px;
  border-radius: var(--radius);
}

.boundary-card.is {
  color: #dcf8f2;
  background: #075749;
}

.boundary-card.is-not {
  color: #d7e6f2;
  background: #0a2e55;
}

.boundary-card h3 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 1.5rem;
}

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

.check-list li {
  position: relative;
  padding-left: 27px;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 900;
  content: "✓";
}

.boundary-card.is-not .check-list li::before {
  content: "—";
}

.privacy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.privacy-nav {
  position: sticky;
  top: 108px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.privacy-nav strong {
  display: block;
  margin-bottom: 14px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-nav a {
  display: block;
  padding: 8px 0;
  color: var(--slate);
  font-size: 0.9rem;
}

.privacy-nav a:hover {
  color: var(--navy);
}

.privacy-promise {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin-bottom: 30px;
  padding: 28px;
  border: 1px solid #bfe9de;
  border-radius: var(--radius);
  color: #184c42;
  background: #effbf8;
}

.promise-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: var(--success);
  font-size: 1.3rem;
  font-weight: 900;
}

.privacy-promise h2 {
  margin: 0;
  font-size: 1.5rem;
}

.privacy-promise p {
  margin: 5px 0 0;
}

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

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

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

.policy-title h2 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

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

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

.data-table {
  width: 100%;
  margin: 24px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-spacing: 0;
  border-radius: 16px;
}

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

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

.data-table th {
  color: var(--navy);
  background: var(--mist);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.data-table td {
  color: var(--slate);
  font-size: 0.9rem;
}

.rights-box {
  margin-top: 24px;
  padding: 26px;
  border-left: 4px solid var(--sky);
  border-radius: 0 16px 16px 0;
  background: var(--mist);
}

.rights-box strong {
  color: var(--navy);
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.contact-card,
.contact-side {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-card {
  padding: clamp(28px, 5vw, 48px);
}

.form-head h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.045em;
}

.form-head p {
  margin: 8px 0 30px;
  color: var(--slate);
}

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

.field {
  display: grid;
  gap: 8px;
}

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

.field label,
.field-label {
  color: #273e55;
  font-size: 0.86rem;
  font-weight: 800;
}

.required {
  color: #ad351f;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cdd8e2;
  border-radius: 13px;
  color: var(--ink);
  background: #fbfdff;
  transition: border 0.2s ease, box-shadow 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 {
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(17, 103, 169, 0.1);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #c2412d;
}

.field-error {
  min-height: 18px;
  color: #a53424;
  font-size: 0.78rem;
}

.file-input {
  padding: 12px !important;
}

.checkbox-field {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--slate);
  font-size: 0.88rem;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--navy);
}

.checkbox-field a {
  color: var(--navy-2);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.form-status {
  margin: 0;
  color: var(--slate);
  font-size: 0.86rem;
}

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

.form-status.error {
  color: #a53424;
  font-weight: 750;
}

.contact-side {
  overflow: hidden;
}

.contact-side-head {
  padding: 32px;
  color: var(--white);
  background: linear-gradient(135deg, #052c58, #0a5894);
}

.contact-side-head h2 {
  margin: 0;
  font-size: 1.75rem;
}

.contact-side-head p {
  margin: 10px 0 0;
  color: #c2daea;
}

.contact-options {
  padding: 12px 30px 28px;
}

.contact-option {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

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

.contact-option h3 {
  margin: 0;
  font-size: 1rem;
}

.contact-option p {
  margin: 2px 0 0;
  color: var(--slate);
  font-size: 0.88rem;
}

.contact-option a {
  color: var(--navy-2);
  font-weight: 800;
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--success);
  font-weight: 800;
}

.status-line::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #18aa88;
  box-shadow: 0 0 0 5px rgba(24, 170, 136, 0.12);
  content: "";
}

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

.reveal.is-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;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 980px) {
  .hero-grid,
  .about-lead,
  .notebook-grid,
  .evidence-grid,
  .field-guide,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-photo {
    right: 8%;
  }

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

  .method-step {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

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

  .privacy-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .privacy-nav strong {
    grid-column: 1 / -1;
  }

  .guide-sticky {
    position: static;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 30px), var(--max));
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.25s ease;
  }

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

  .nav-link,
  .nav-cta {
    width: 100%;
    padding: 16px;
    text-align: center;
  }

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

  .hero-grid {
    gap: 40px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-photo {
    inset: 0 5% 70px 0;
    border-width: 5px;
  }

  .lens-panel {
    right: 0;
    width: 90%;
  }

  .signal-line {
    grid-template-columns: 93px 1fr 26px;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 38px;
  }

  .micro-note {
    margin-top: 24px;
  }

  .method-step {
    padding: 28px;
  }

  .evidence-board {
    min-height: 450px;
    padding: 28px;
  }

  .board-score strong {
    font-size: 3.8rem;
  }

  .notebook-card,
  .contact-card {
    padding: 25px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 34px 26px;
  }

  .cta-band .btn {
    width: 100%;
  }

  .footer-grid,
  .boundary-grid,
  .values-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child,
  .field-full,
  .checkbox-field {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-disclaimer {
    margin-top: 14px;
    text-align: left;
  }

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

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

  .privacy-nav {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .form-actions {
    display: grid;
  }

  .form-actions .btn {
    width: 100%;
  }
}

/* Standalone mobile About view */
.h5-body {
  min-width: 320px;
  color: #10283f;
  background: #f4f9fc;
}

.h5-shell {
  width: min(100% - 28px, 640px);
  margin: 0 auto;
}

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

.h5-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.h5-hero {
  padding: 54px 0 40px;
}

.h5-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 13vw, 4.4rem);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.h5-hero p {
  margin: 22px 0 0;
  color: var(--slate);
  font-size: 1.05rem;
}

.h5-photo {
  position: relative;
  height: min(70vw, 440px);
  min-height: 300px;
  margin-bottom: 38px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.h5-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.h5-section h2 {
  margin: 0 0 14px;
  font-size: 1.75rem;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.h5-section > p {
  color: var(--slate);
}

.h5-card {
  margin-top: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.h5-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
}

.h5-card p {
  margin: 0;
  color: var(--slate);
}

.h5-boundary {
  margin-top: 14px;
  padding: 22px;
  border-radius: 19px;
  color: #dcebf5;
  background: #073464;
}

.h5-boundary strong {
  display: block;
  margin-bottom: 9px;
  color: var(--white);
}

.h5-footer {
  margin-top: 30px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--slate);
  font-size: 0.82rem;
}
