:root {
  --ink: #101827;
  --muted: #667085;
  --subtle: #eef2f7;
  --paper: #ffffff;
  --canvas: #f6f8fb;
  --navy: #10243f;
  --navy-2: #17365f;
  --green: #19c37d;
  --green-dark: #07945d;
  --blue: #2f80ed;
  --line: rgba(16, 24, 39, 0.1);
  --shadow: 0 24px 70px rgba(16, 36, 63, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 10%, rgba(25, 195, 125, 0.14), transparent 28rem),
    radial-gradient(circle at 86% 0%, rgba(47, 128, 237, 0.13), transparent 28rem),
    linear-gradient(180deg, #fbfcfe 0%, var(--canvas) 48%, #ffffff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(16, 24, 39, 0.045) 1px, transparent 1px);
  background-size: 100% 86px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 70%);
}

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

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

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

.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  width: min(1160px, calc(100% - 40px));
  margin: 16px auto 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(16, 36, 63, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.footer-inner {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  justify-self: start;
  padding-left: 8px;
  color: var(--navy);
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 10px 26px rgba(47, 128, 237, 0.22);
  font-size: 0.82rem;
}

.nav-links {
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a {
  transition: color 0.2s ease;
}

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

.header-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(16, 36, 63, 0.16);
}

.hero {
  padding: 104px 0 82px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: 56px;
}

.hero-copy,
.hero-text,
.quick-list,
.quick-list li,
.hero-gallery {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #9ff2c9;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2.9rem, 5.35vw, 5.15rem);
  line-height: 1;
  letter-spacing: -0.068em;
  text-wrap: balance;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.hero-text,
.section-heading p,
.value-copy > p,
.benefit-card p,
.footer-inner,
.cta-copy p,
.portrait-note span {
  color: var(--muted);
}

.hero-text {
  max-width: 680px;
  margin-bottom: 30px;
  font-size: clamp(1.1rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 18px 38px rgba(25, 195, 125, 0.28);
}

.button-secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.button-light {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.quick-list,
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.quick-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
}

.quick-list li {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #26354d;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(16, 36, 63, 0.04);
}

.quick-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.benefit-card,
.highlight-panel,
.stat-card,
.what-you-get,
.research-note {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(16, 36, 63, 0.07);
}

.panel-label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.hero-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 38px;
  background:
    radial-gradient(circle at 85% 12%, rgba(25, 195, 125, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.7));
  box-shadow: var(--shadow);
}

.hero-gallery::before {
  content: "";
  position: absolute;
  inset: auto 11% -28px;
  height: 74px;
  border-radius: 50%;
  background: rgba(16, 36, 63, 0.16);
  filter: blur(26px);
  z-index: -1;
}

.photo-side {
  display: contents;
}

.photo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--navy);
  box-shadow: 0 18px 42px rgba(16, 36, 63, 0.12);
}

.photo-card::after {
  content: none;
}

.photo-card img {
  width: 100%;
  height: auto;
  flex: 0 0 auto;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
  background: #fff;
}

.photo-main img {
  object-position: center 28%;
}

.photo-small img {
  object-position: center 34%;
}

.photo-main {
  grid-column: 1 / -1;
  min-height: 0;
}

.photo-small {
  min-height: 0;
}

.photo-main img {
  aspect-ratio: 16 / 8.8;
}

.photo-small img {
  aspect-ratio: 16 / 9.4;
}

.photo-card figcaption {
  position: static;
  z-index: 1;
  padding: 14px 16px 16px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  color: #fff;
  background: linear-gradient(135deg, rgba(16, 36, 63, 0.98), rgba(8, 20, 36, 0.98));
  backdrop-filter: none;
}

.photo-card figcaption span,
.gallery-note span {
  display: block;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.photo-card figcaption span {
  margin-bottom: 7px;
  color: #9ff2c9;
}

.photo-card figcaption strong {
  display: block;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.gallery-note {
  position: relative;
  grid-column: 1 / -1;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(16, 36, 63, 0.12);
  backdrop-filter: blur(18px);
}

.gallery-note strong {
  color: var(--navy);
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.gallery-note span {
  color: var(--muted);
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 650;
}

.section {
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

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

.section-heading p {
  margin-bottom: 0;
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.benefit-card {
  min-height: 255px;
  padding: 26px;
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(16, 36, 63, 0.11);
}

.benefit-card p {
  margin-bottom: 0;
  line-height: 1.62;
}

.icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: #f0f6ff;
  font-size: 1.45rem;
}

.feature-card {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  gap: 22px;
  min-height: 528px;
  padding: 28px;
  background:
    radial-gradient(circle at 82% 12%, rgba(25, 195, 125, 0.12), transparent 18rem),
    #ffffff;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #29384f;
  line-height: 1.45;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-dark);
  font-weight: 950;
}

.check-list.compact {
  margin-top: 20px;
}

.research-note {
  align-self: end;
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f7fbff, #ffffff);
}

.research-note strong,
.research-note span {
  display: block;
}

.research-note strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.research-note span {
  color: var(--muted);
  line-height: 1.55;
}

.value-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(238, 242, 247, 0.7) 42%, rgba(255, 255, 255, 0));
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 44px;
  align-items: start;
}

.value-copy {
  position: sticky;
  top: 120px;
}

.value-copy > p {
  font-size: 1.06rem;
}

.check-list.large {
  margin-top: 26px;
  gap: 14px;
}

.check-list.large li {
  padding: 18px 18px 18px 42px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(16, 36, 63, 0.045);
  font-weight: 750;
}

.check-list.large li::before {
  top: 17px;
  left: 18px;
}

.highlight-panel {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.panel-label {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  min-height: 186px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.stat-card span {
  display: block;
  margin-bottom: 24px;
  font-size: 1.45rem;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.cta-section {
  padding-bottom: 94px;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: 34px;
  padding: 36px;
  border-radius: 42px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(25, 195, 125, 0.24), transparent 22rem),
    linear-gradient(135deg, var(--navy) 0%, #0c1a2f 100%);
  box-shadow: 0 30px 80px rgba(16, 36, 63, 0.2);
  overflow: hidden;
}

.cta-copy h2,
.cta-copy h3 {
  color: #fff;
}

.cta-copy h2 {
  max-width: 720px;
}

.cta-copy p {
  max-width: 680px;
  color: #c6d2e3;
  font-size: 1.08rem;
  line-height: 1.7;
}

.what-you-get {
  margin: 28px 0;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.what-you-get h3 {
  margin-bottom: 16px;
}

.check-list.inverse {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 18px;
}

.check-list.inverse li {
  color: #eef5ff;
}

.check-list.inverse li::before {
  color: #9ff2c9;
}

.cta-portrait {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #eaf1fb 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.cta-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.portrait-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(16, 36, 63, 0.12);
  backdrop-filter: blur(16px);
}

.portrait-note strong,
.portrait-note span {
  display: block;
}

.portrait-note strong {
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 1.1rem;
}

.site-footer {
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  justify-content: space-between;
  gap: 18px;
  font-size: 0.94rem;
}

.footer-inner span:first-child {
  color: var(--navy);
  font-weight: 850;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .value-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    max-width: 680px;
    margin-inline: auto;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 56px;
  }

  .photo-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-main {
    min-height: 460px;
  }

  .photo-small {
    min-height: 250px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    grid-column: span 2;
  }

  .value-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .container,
  .site-header {
    width: auto;
    max-width: none;
    margin-left: 14px;
    margin-right: 14px;
  }

  .site-header {
    top: 10px;
    margin-top: 10px;
    border-radius: 22px;
  }

  .header-button {
    display: none;
  }

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

  h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 12vw, 3.18rem);
    line-height: 1.04;
    letter-spacing: -0.056em;
    overflow-wrap: normal;
  }

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

  .hero-actions,
  .quick-list,
  .stats-grid,
  .check-list.inverse {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-actions,
  .quick-list,
  .hero-gallery {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-text {
    max-width: 100%;
    font-size: 1.02rem;
    line-height: 1.62;
    overflow-wrap: anywhere;
  }

  .quick-list li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    column-gap: 10px;
    min-height: 0;
    padding-block: 13px;
    font-size: 0.95rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .quick-list li::before {
    margin-right: 0;
  }

  .hero-gallery,
  .highlight-panel,
  .cta-card {
    border-radius: 28px;
  }

  .hero-gallery {
    padding: 14px;
  }

  .photo-side {
    display: grid;
    grid-template-columns: 1fr;
  }

  .photo-main,
  .photo-small {
    min-height: auto;
  }

  .photo-main img {
    object-position: center 22%;
  }

  .photo-card {
    border-radius: 22px;
  }

  .photo-card figcaption {
    padding: 13px;
    border-radius: 0;
  }

  .gallery-note {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px;
    border-radius: 20px;
  }

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

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

  .section {
    padding: 62px 0;
  }

  .cta-card {
    padding: 22px;
  }

  .cta-portrait {
    min-height: 320px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-gallery {
    padding: 12px;
  }

  .benefit-card,
  .highlight-panel,
  .stat-card,
  .what-you-get {
    padding: 20px;
  }
}
