:root {
  --ink: #071a34;
  --ink-soft: #44546a;
  --blue: #0874e8;
  --blue-dark: #0759b6;
  --teal: #18cfbf;
  --mint: #dffbf7;
  --sky: #edf7ff;
  --paper: #ffffff;
  --wash: #f5f9fc;
  --line: #dce7f0;
  --warning: #ffb94a;
  --shadow-sm: 0 12px 34px rgba(7, 26, 52, 0.08);
  --shadow-lg: 0 28px 80px rgba(7, 67, 120, 0.16);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid rgba(8, 116, 232, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.section {
  padding: 108px 0;
}

.section-tight {
  padding: 76px 0;
}

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

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(24, 207, 191, 0.25), transparent 27%),
    linear-gradient(135deg, #06172f, #073c6f);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  content: "";
}

.section-dark .eyebrow {
  color: #78f0e3;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

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

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.1vw, 4rem);
}

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

.lead {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.65vw, 1.28rem);
  line-height: 1.7;
}

.section-dark .lead,
.section-dark p {
  color: #d2dfec;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

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

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading.center .lead {
  margin-inline: auto;
}

.gradient-text {
  color: var(--blue);
  background: linear-gradient(100deg, var(--blue) 5%, #0799df 55%, #16bfae 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 820;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand img,
.brand-logo-static {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border: 1px solid #e4edf5;
  border-radius: 10px;
  object-fit: cover;
}

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

.nav-links a {
  position: relative;
  color: #43536a;
  font-size: 0.94rem;
  font-weight: 680;
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 0.25s ease;
}

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

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links .nav-cta {
  padding: 11px 18px;
  border-radius: 11px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(7, 26, 52, 0.16);
}

.nav-links .nav-cta:hover {
  color: #fff;
  background: var(--blue-dark);
  transform: translateY(-1px);
}

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

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: 0.25s ease;
}

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

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

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 780;
  line-height: 1.25;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(110deg, var(--blue), #078dcf 58%, #15bdaa);
  box-shadow: 0 14px 30px rgba(8, 116, 232, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(8, 116, 232, 0.3);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.88);
}

.button-secondary:hover {
  border-color: #accbe8;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.button-arrow {
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}

.button:hover .button-arrow {
  transform: translateX(4px);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    linear-gradient(rgba(8, 116, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 116, 232, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 82% 18%, rgba(24, 207, 191, 0.14), transparent 26%),
    radial-gradient(circle at 8% 86%, rgba(8, 116, 232, 0.12), transparent 30%),
    #fbfdff;
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(24, 207, 191, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 680px;
  align-items: center;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 70px;
  padding: 82px 0 96px;
}

.hero-copy .lead {
  max-width: 625px;
  margin-bottom: 34px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 7px 12px 7px 8px;
  border: 1px solid #cae5f5;
  border-radius: 999px;
  color: #185383;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 790;
  letter-spacing: 0.04em;
}

.hero-kicker-dot {
  width: 24px;
  height: 24px;
  border: 6px solid #c8faf3;
  border-radius: 50%;
  background: var(--teal);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  color: #536379;
  font-size: 0.84rem;
  font-weight: 650;
}

.hero-proof span::before {
  margin-right: 7px;
  color: var(--teal);
  content: "●";
}

.plan-stage {
  position: relative;
  min-height: 600px;
}

.plan-halo {
  position: absolute;
  inset: 3% -7% 1% 7%;
  border-radius: 42% 58% 60% 40% / 46% 42% 58% 54%;
  background: linear-gradient(145deg, rgba(8, 116, 232, 0.18), rgba(24, 207, 191, 0.2));
  filter: blur(1px);
  transform: rotate(-4deg);
}

.plan-board {
  position: relative;
  z-index: 2;
  width: min(100%, 480px);
  margin: 24px auto 0;
  padding: 20px;
  border: 1px solid rgba(201, 225, 240, 0.9);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}

.plan-board::before {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 66px;
  height: 7px;
  border-radius: 99px;
  background: #d7e4ed;
  content: "";
  transform: translateX(-50%);
}

.plan-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 8px 17px;
}

.plan-topbar small,
.route-head small {
  display: block;
  margin-bottom: 3px;
  color: #758398;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-topbar strong {
  display: block;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.budget-ring {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--teal) 0 68%, #e8f0f4 68% 100%);
}

.budget-ring::after {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  content: "68%";
  font-size: 0.68rem;
  font-weight: 800;
}

.budget-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 20px;
  border-radius: 21px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(24, 207, 191, 0.45), transparent 42%),
    linear-gradient(130deg, #086cca, #063f7c);
}

.budget-card p {
  margin: 0 0 3px;
  color: #cae9ff;
  font-size: 0.76rem;
  font-weight: 700;
}

.budget-card strong {
  font-size: 1.75rem;
  letter-spacing: -0.045em;
}

.budget-card span {
  align-self: end;
  color: #b7f7ef;
  font-size: 0.76rem;
  font-weight: 700;
}

.route-card {
  margin-top: 14px;
  padding: 19px 18px 10px;
  border: 1px solid #e2edf4;
  border-radius: 22px;
  background: #fafdff;
}

.route-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.route-head strong {
  font-size: 0.93rem;
}

.route-badge {
  padding: 5px 9px;
  border-radius: 999px;
  color: #087466;
  background: #d6f8f3;
  font-size: 0.67rem;
  font-weight: 800;
}

.route-item {
  display: grid;
  align-items: center;
  grid-template-columns: 32px 1fr auto;
  gap: 11px;
  padding: 12px 0;
  border-top: 1px solid #e7eff4;
}

.route-number {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  color: var(--blue-dark);
  background: #e7f3ff;
  font-size: 0.72rem;
  font-weight: 850;
}

.route-item strong,
.route-item small {
  display: block;
  line-height: 1.25;
}

.route-item strong {
  font-size: 0.81rem;
}

.route-item small {
  margin-top: 3px;
  color: #758398;
  font-size: 0.68rem;
}

.route-count {
  color: #516278;
  font-size: 0.7rem;
  font-weight: 760;
}

.floating-note {
  position: absolute;
  z-index: 3;
  right: -25px;
  bottom: 52px;
  display: flex;
  width: 185px;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 16px 35px rgba(7, 26, 52, 0.14);
  font-size: 0.72rem;
  font-weight: 780;
  line-height: 1.35;
  transform: rotate(-3deg);
}

.floating-note-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 11px;
  color: #855100;
  background: #fff0cb;
}

.signal-bar {
  position: relative;
  z-index: 4;
  margin-top: -38px;
}

.signal-shell {
  display: grid;
  padding: 28px 34px;
  border: 1px solid rgba(216, 232, 242, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 20px;
}

.signal-intro strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1.03rem;
}

.signal-intro span,
.signal-stat span {
  color: #6a788b;
  font-size: 0.78rem;
}

.signal-stat {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.signal-stat strong {
  display: block;
  margin-bottom: 1px;
  color: var(--blue-dark);
  font-size: 1.32rem;
  letter-spacing: -0.03em;
}

.feature-rail {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 78px;
}

.feature-sticky {
  align-self: start;
  position: sticky;
  top: 128px;
}

.feature-sticky .lead {
  margin-bottom: 26px;
}

.feature-stack {
  border-top: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}

.feature-index {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.feature-row p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.photo-story {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  grid-template-columns: 1.07fr 0.93fr;
}

.photo-story-image {
  min-height: 580px;
}

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

.photo-story-copy {
  display: flex;
  padding: clamp(42px, 7vw, 82px);
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(24, 207, 191, 0.22), transparent 32%),
    var(--ink);
}

.photo-story-copy .eyebrow {
  color: #7cefe3;
}

.photo-story-copy h2 {
  font-size: clamp(2.25rem, 4.4vw, 4.5rem);
}

.photo-story-copy p {
  color: #ccdaea;
}

.story-note {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff !important;
  font-size: 0.92rem;
  font-weight: 730;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.steps::before {
  position: absolute;
  top: 24px;
  right: 16.66%;
  left: 16.66%;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  content: "";
}

.step {
  position: relative;
  text-align: center;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  margin: 0 auto 24px;
  place-items: center;
  border: 7px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0daec3);
  box-shadow: 0 0 0 1px #cfe3f2;
  font-size: 0.82rem;
  font-weight: 850;
}

.step p {
  color: var(--ink-soft);
}

.insight-layout {
  display: grid;
  align-items: end;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

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

.insight-item {
  display: grid;
  align-items: center;
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  grid-template-columns: 40px 1fr auto;
  gap: 14px;
}

.insight-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: #83f1e6;
  background: rgba(24, 207, 191, 0.12);
  font-weight: 900;
}

.insight-item strong,
.insight-item span {
  display: block;
}

.insight-item strong {
  font-size: 0.9rem;
}

.insight-item span {
  color: #aebed1;
  font-size: 0.75rem;
}

.insight-action {
  color: #80ecdf !important;
  font-weight: 750;
  white-space: nowrap;
}

.cta-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  padding: clamp(42px, 7vw, 78px);
  border: 1px solid #cfe5f3;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 30%, rgba(24, 207, 191, 0.23), transparent 25%),
    linear-gradient(125deg, #edf7ff, #effdfa);
  grid-template-columns: 1fr auto;
  gap: 42px;
}

.cta-panel::after {
  position: absolute;
  right: -85px;
  bottom: -140px;
  width: 300px;
  height: 300px;
  border: 48px solid rgba(8, 116, 232, 0.07);
  border-radius: 50%;
  content: "";
}

.cta-panel h2 {
  max-width: 780px;
  margin-bottom: 16px;
}

.cta-panel p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

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

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 90px;
  background:
    radial-gradient(circle at 90% 10%, rgba(24, 207, 191, 0.17), transparent 25%),
    linear-gradient(135deg, #f3f9ff, #fbfefd 60%);
}

.page-hero::before {
  position: absolute;
  top: -120px;
  left: -90px;
  width: 320px;
  height: 320px;
  border: 58px solid rgba(8, 116, 232, 0.06);
  border-radius: 50%;
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
}

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

.page-hero .lead {
  margin-bottom: 0;
}

.about-intro {
  display: grid;
  align-items: center;
  grid-template-columns: 0.91fr 1.09fr;
  gap: 76px;
}

.about-photo {
  position: relative;
}

.about-photo::before {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 64%;
  height: 68%;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  content: "";
}

.about-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 560px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.pull-quote {
  margin: 30px 0 0;
  padding: 24px 0 0 24px;
  border-top: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 710;
  line-height: 1.5;
}

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

.principle {
  padding: 38px;
  background: #fff;
}

.principle-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 15px;
  color: var(--blue-dark);
  background: linear-gradient(145deg, var(--sky), var(--mint));
  font-size: 1.08rem;
  font-weight: 900;
}

.principle p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.audience-band {
  display: grid;
  align-items: start;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.audience-list {
  display: grid;
  gap: 16px;
}

.audience-item {
  display: grid;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  grid-template-columns: 44px 1fr;
  gap: 17px;
}

.audience-marker {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: #07386b;
  background: #7df0e5;
  font-size: 0.83rem;
  font-weight: 900;
}

.audience-item p {
  margin-bottom: 0;
  color: #cbd9e8;
}

.promise-strip {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.promise {
  padding: 32px;
  text-align: center;
}

.promise + .promise {
  border-left: 1px solid var(--line);
}

.promise strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-dark);
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.promise span {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.privacy-hero {
  padding-bottom: 74px;
}

.privacy-commitment {
  display: grid;
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid #cde4f2;
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  grid-template-columns: auto 1fr;
}

.commitment-seal {
  display: grid;
  width: 128px;
  min-height: 142px;
  place-items: center;
  color: #fff;
  background: linear-gradient(140deg, var(--blue), var(--teal));
  font-size: 2rem;
  font-weight: 900;
}

.commitment-copy {
  padding: 27px 32px;
}

.commitment-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.14rem;
}

.commitment-copy p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.legal-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 250px 1fr;
  gap: 64px;
}

.legal-nav {
  position: sticky;
  top: 110px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.legal-nav strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.77rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding: 8px 0;
  color: #55657a;
  font-size: 0.84rem;
  font-weight: 650;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--blue-dark);
}

.legal-content {
  min-width: 0;
}

.legal-section {
  padding: 0 0 48px;
  scroll-margin-top: 115px;
}

.legal-section + .legal-section {
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 17px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.legal-section h3 {
  margin-top: 28px;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.legal-section p,
.legal-section li {
  color: #4b5b70;
}

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

.legal-section li + li {
  margin-top: 8px;
}

.data-table-wrap {
  margin: 28px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 17px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

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

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

.data-table th {
  color: #23425e;
  background: #edf7ff;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.data-table td {
  color: #4e5f73;
  font-size: 0.88rem;
}

.rights-callout {
  margin-top: 26px;
  padding: 27px;
  border: 1px solid #bce9e4;
  border-radius: 20px;
  background: linear-gradient(135deg, #effdfa, #f5fbff);
}

.rights-callout strong {
  display: block;
  margin-bottom: 7px;
  color: #075e58;
}

.contact-hero {
  padding-bottom: 130px;
}

.contact-main {
  position: relative;
  z-index: 2;
  margin-top: -74px;
  padding-bottom: 110px;
}

.contact-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  grid-template-columns: 1.22fr 0.78fr;
}

.contact-form-wrap {
  padding: clamp(34px, 5vw, 62px);
}

.contact-form-wrap h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.contact-form-wrap > p {
  margin-bottom: 34px;
  color: var(--ink-soft);
}

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

.field {
  min-width: 0;
}

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

.field label,
.field-label {
  display: block;
  margin-bottom: 8px;
  color: #294058;
  font-size: 0.82rem;
  font-weight: 760;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #cad9e5;
  border-radius: 12px;
  color: var(--ink);
  background: #fbfdff;
  outline: 0;
  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: 150px;
  padding: 14px 15px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(8, 116, 232, 0.1);
}

.field input[type="file"] {
  height: auto;
  padding: 10px;
}

.field input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 8px 12px;
  border: 0;
  border-radius: 9px;
  color: var(--blue-dark);
  background: #eaf5ff;
  cursor: pointer;
  font-weight: 720;
}

.field-error {
  display: none;
  margin-top: 6px;
  color: #b42318;
  font-size: 0.76rem;
}

.field.invalid input,
.field.invalid textarea,
.field.invalid select {
  border-color: #e46d64;
}

.field.invalid .field-error {
  display: block;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #56667a;
  font-size: 0.79rem;
}

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

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

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

.submit-button {
  min-width: 170px;
  border: 0;
  cursor: pointer;
}

.form-status {
  display: none;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 690;
}

.form-status.success {
  display: block;
  color: #087162;
}

.form-status.error {
  display: block;
  color: #b42318;
}

.contact-aside {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 5vw, 60px);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(24, 207, 191, 0.3), transparent 34%),
    linear-gradient(155deg, #071a34, #074982);
}

.contact-aside::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 250px;
  height: 250px;
  border: 43px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  content: "";
}

.contact-aside h3 {
  margin-bottom: 15px;
  font-size: 2rem;
}

.contact-aside > p {
  color: #cbd9e7;
}

.contact-methods {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-method {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-method small,
.contact-method strong,
.contact-method span {
  display: block;
}

.contact-method small {
  margin-bottom: 5px;
  color: #89efe4;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method strong,
.contact-method a {
  color: #fff;
  font-size: 0.96rem;
  font-weight: 740;
  text-decoration: none;
}

.contact-method span {
  margin-top: 4px;
  color: #b8c7d6;
  font-size: 0.78rem;
}

.mini-faq {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mini-faq article {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.mini-faq article p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer {
  padding: 68px 0 28px;
  color: #bdcad9;
  background: #06172f;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 42px;
  padding-bottom: 42px;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand p {
  max-width: 430px;
  margin: 17px 0 0;
  color: #aebed0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-links a {
  color: #d9e4ee;
  font-size: 0.86rem;
  font-weight: 680;
  text-decoration: none;
}

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

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

.footer-tag {
  color: #71e7da;
  font-weight: 700;
}

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

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

.h5-body {
  min-width: 320px;
  background: #f8fbfd;
}

.h5-header {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.h5-brand img {
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 10px;
  object-fit: cover;
}

.h5-body .page-hero {
  padding: 65px 0 56px;
}

.h5-body .page-hero h1 {
  font-size: clamp(2.8rem, 15vw, 4.2rem);
}

.h5-body .section {
  padding: 62px 0;
}

.h5-body .about-intro,
.h5-body .audience-band {
  display: block;
}

.h5-body .about-photo {
  margin-top: 42px;
}

.h5-body .about-photo img {
  min-height: 370px;
}

.h5-body .principles {
  grid-template-columns: 1fr;
}

.h5-body .audience-list {
  margin-top: 32px;
}

.h5-footer {
  padding: 30px 0;
  color: #90a2b6;
  background: #06172f;
  text-align: center;
  font-size: 0.78rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::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: 1024px) {
  .hero-grid {
    gap: 38px;
  }

  .floating-note {
    right: -8px;
  }

  .feature-rail,
  .about-intro,
  .audience-band,
  .insight-layout {
    gap: 48px;
  }

  .legal-layout {
    grid-template-columns: 215px 1fr;
    gap: 38px;
  }

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

@media (max-width: 820px) {
  .section {
    padding: 78px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: flex;
    min-height: calc(100vh - 78px);
    padding: 38px 20px;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.25s ease;
  }

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

  .nav-links a,
  .nav-links .nav-cta {
    padding: 15px;
    border-radius: 12px;
    font-size: 1.05rem;
  }

  .nav-links a:not(.nav-cta)::after {
    display: none;
  }

  .hero-grid,
  .feature-rail,
  .photo-story,
  .about-intro,
  .audience-band,
  .insight-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 70px;
  }

  .plan-stage {
    min-height: 560px;
  }

  .plan-board {
    max-width: 520px;
  }

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

  .signal-intro {
    grid-column: 1 / -1;
  }

  .signal-stat:first-of-type {
    padding-left: 0;
    border-left: 0;
  }

  .feature-sticky,
  .legal-nav {
    position: static;
  }

  .photo-story-image {
    min-height: 460px;
  }

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

  .steps::before {
    top: 25px;
    bottom: 25px;
    left: 24px;
    width: 1px;
    height: auto;
  }

  .step {
    display: grid;
    text-align: left;
    grid-template-columns: 55px 1fr;
    column-gap: 20px;
  }

  .step-number {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .step h3 {
    align-self: end;
  }

  .principles,
  .promise-strip {
    grid-template-columns: 1fr 1fr;
  }

  .promise:last-child {
    border-top: 1px solid var(--line);
    border-left: 0;
    grid-column: 1 / -1;
  }

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

  .legal-nav {
    display: flex;
    overflow-x: auto;
    gap: 18px;
  }

  .legal-nav strong {
    display: none;
  }

  .legal-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .contact-aside {
    min-height: 520px;
  }

  .mini-faq {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section,
  .section-tight {
    padding: 62px 0;
  }

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

  .brand-name {
    font-size: 1rem;
  }

  .brand img,
  .brand-logo-static {
    width: 50px;
    height: 50px;
  }

  .nav-links {
    top: 70px;
    min-height: calc(100vh - 70px);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding: 58px 0 92px;
  }

  h1 {
    font-size: clamp(2.85rem, 14.5vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
  }

  .button-row .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 8px;
  }

  .plan-stage {
    min-height: 525px;
    margin-inline: -5px;
  }

  .plan-board {
    padding: 14px;
    border-radius: 26px;
    transform: none;
  }

  .floating-note {
    right: 5px;
    bottom: -6px;
  }

  .signal-bar {
    margin-top: -48px;
  }

  .signal-shell {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .signal-stat,
  .signal-stat:first-of-type {
    padding: 12px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .feature-row {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .photo-story-image {
    min-height: 340px;
  }

  .photo-story-copy {
    padding: 37px 28px;
  }

  .insight-item {
    grid-template-columns: 38px 1fr;
  }

  .insight-action {
    display: none !important;
  }

  .cta-panel {
    padding: 38px 26px;
  }

  .page-hero {
    padding: 74px 0 65px;
  }

  .about-photo::before {
    top: -11px;
    right: -8px;
  }

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

  .principles,
  .promise-strip {
    grid-template-columns: 1fr;
  }

  .principle {
    padding: 28px;
  }

  .promise + .promise,
  .promise:last-child {
    border-top: 1px solid var(--line);
    border-left: 0;
    grid-column: auto;
  }

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

  .commitment-seal {
    width: 100%;
    min-height: 75px;
  }

  .commitment-copy {
    padding: 24px;
  }

  .legal-nav {
    margin-inline: -14px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .contact-hero {
    padding-bottom: 110px;
  }

  .contact-main {
    margin-top: -64px;
    padding-bottom: 70px;
  }

  .contact-grid {
    border-radius: 22px;
  }

  .contact-form-wrap,
  .contact-aside {
    padding: 31px 23px;
  }

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

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

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .submit-button {
    width: 100%;
  }

  .contact-aside {
    min-height: auto;
  }

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

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
  }

  .h5-body .container {
    width: min(calc(100% - 30px), 620px);
  }
}
