:root {
  --navy: #071c35;
  --navy-2: #0b2b52;
  --blue: #2f78c8;
  --blue-bright: #1689d4;
  --yellow: #f5b400;
  --red: #e33c3f;
  --ink: #172335;
  --muted: #607087;
  --line: #dfe7f0;
  --soft: #f5f8fc;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(7, 28, 53, 0.08);
  --shadow-lg: 0 24px 70px rgba(7, 28, 53, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

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

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

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 245px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--navy);
  display: block;
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.menu-open .nav-toggle span {
  background: transparent;
}

.menu-open .nav-toggle span::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .nav-toggle span::after {
  transform: translateY(-6px) rotate(-45deg);
}

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

.site-nav a {
  padding: 11px 16px;
  border-radius: 11px;
  color: #2d3d53;
  font-size: 0.95rem;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

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

.site-nav a:last-child {
  margin-left: 8px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(7, 28, 53, 0.16);
}

.site-nav a:last-child:hover,
.site-nav a:last-child[aria-current="page"] {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(47, 120, 200, 0.44), transparent 33%),
    radial-gradient(circle at 10% 100%, rgba(245, 180, 0, 0.16), transparent 28%),
    linear-gradient(135deg, #06182d 0%, #09294c 52%, #0c3763 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -240px;
  border: 68px solid rgba(255,255,255,.04);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 670px;
  padding: 92px 0 86px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 700px;
  margin: 28px 0 0;
  color: #d8e5f4;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 750;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 16px 36px rgba(245, 180, 0, 0.24);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
}

.btn-dark {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(7, 28, 53, 0.18);
}

.hero-visual {
  position: relative;
  min-height: 455px;
  display: grid;
  place-items: center;
}

.hero-orbit {
  position: absolute;
  inset: 5% 2%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 9px rgba(245,180,0,.11);
}

.hero-orbit::before {
  top: 13%;
  right: 15%;
}

.hero-orbit::after {
  left: 5%;
  bottom: 23%;
  background: var(--red);
  box-shadow: 0 0 0 9px rgba(227,60,63,.11);
}

.hero-card {
  position: relative;
  width: min(100%, 470px);
  padding: 36px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 70px rgba(0,0,0,.22);
  transform: rotate(2deg);
}

.hero-card img {
  filter: drop-shadow(0 22px 30px rgba(0,0,0,.18));
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 25px;
  pointer-events: none;
}

.section {
  padding: 108px 0;
}

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

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading h2,
.content-copy h2,
.mission-copy h2,
.article h2,
.contact-card h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 4vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-heading p,
.content-copy > p:first-of-type,
.article > p {
  color: var(--muted);
}

.strategy-list {
  display: grid;
  gap: 30px;
}

.strategy-card {
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.strategy-card:nth-child(even) .strategy-media {
  order: 2;
}

.strategy-media {
  min-height: 390px;
  padding: 44px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(47,120,200,.15), transparent 38%),
    linear-gradient(135deg, #eef5ff, #f8fbff);
}

.strategy-media img {
  width: min(100%, 410px);
  max-height: 350px;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.strategy-card:hover .strategy-media img {
  transform: scale(1.035);
}

.content-copy {
  padding: 56px 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.goal {
  margin: 18px 0 20px;
  color: var(--blue);
  font-weight: 780;
}

.content-copy ul,
.article ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.content-copy li,
.article li {
  position: relative;
  padding-left: 25px;
  color: #48586e;
}

.content-copy li::before,
.article li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.66em;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--blue);
  transform: rotate(45deg);
}

.subscription-strip {
  position: relative;
  overflow: hidden;
  padding: 30px 34px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: linear-gradient(130deg, var(--blue), var(--navy));
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.subscription-strip::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -100px;
  width: 260px;
  height: 260px;
  border: 50px solid rgba(255,255,255,.07);
  border-radius: 50%;
}

.subscription-strip p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.subscription-strip .btn {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.mission {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7,28,53,.96), rgba(11,43,82,.94)),
    radial-gradient(circle at 75% 50%, rgba(47,120,200,.35), transparent 30%);
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 70px;
}

.mission-mark {
  position: relative;
  min-height: 350px;
  display: grid;
  place-items: center;
}

.mission-mark::before {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 35px rgba(255,255,255,.025),
    0 0 0 70px rgba(255,255,255,.018);
}

.mission-mark img {
  position: relative;
  z-index: 1;
  width: 230px;
  border-radius: 50%;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}

.mission-copy h2 {
  color: var(--white);
}

.mission-copy p {
  margin: 24px 0 0;
  color: #d6e3f2;
  font-size: 1.13rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 92px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(47,120,200,.46), transparent 30%),
    linear-gradient(135deg, #06182d, #0a315b);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .25;
}

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

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

.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #d8e5f4;
  font-size: 1.2rem;
}

.about-grid,
.article-lead,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 72px;
}

.about-visual,
.article-visual {
  position: relative;
  min-height: 470px;
  padding: 45px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, #edf4ff, #ffffff),
    var(--soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
}

.about-visual::before,
.article-visual::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid #d7e4f2;
  border-radius: 25px;
}

.about-visual img,
.article-visual img {
  position: relative;
  z-index: 1;
  max-height: 385px;
  object-fit: contain;
}

.about-copy p,
.article p {
  color: #4d5e74;
  margin: 0 0 19px;
}

.about-copy p:last-child,
.article p:last-child {
  margin-bottom: 0;
}

.signature-line {
  margin-top: 34px !important;
  padding-left: 22px;
  border-left: 4px solid var(--yellow);
  color: var(--navy) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.article-lead {
  align-items: start;
}

.article h1 {
  margin: 0 0 26px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.article h2 {
  margin: 42px 0 16px;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
}

.article ul {
  margin: 14px 0 24px;
}

.price-boxes {
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.price-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.price-box strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
}

.price-box span {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
}

.contact-grid {
  align-items: stretch;
}

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

.contact-card h2 {
  font-size: 2.45rem;
  margin-bottom: 32px;
}

.form-grid {
  display: grid;
  gap: 18px;
}

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

.form-field label {
  color: var(--navy);
  font-size: .93rem;
  font-weight: 760;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #cfdbe8;
  border-radius: 13px;
  padding: 13px 15px;
  color: var(--ink);
  background: #fbfdff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-field textarea {
  min-height: 145px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(47,120,200,.12);
}

.form-grid .btn {
  justify-self: start;
  border: 0;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: 52px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(47,120,200,.45), transparent 35%),
    linear-gradient(150deg, #06182d, #0b2f57);
  box-shadow: var(--shadow-lg);
}

.contact-panel::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -110px;
  width: 310px;
  height: 310px;
  border: 55px solid rgba(255,255,255,.06);
  border-radius: 50%;
}

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

.contact-panel h3 {
  margin: 0 0 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
}

.contact-panel p {
  margin: 0 0 22px;
  color: #d8e5f4;
}

.contact-panel a {
  display: inline-block;
  color: var(--white);
  font-weight: 760;
}

.contact-panel a + a {
  margin-top: 8px;
}

.site-footer {
  color: #d6e3f2;
  background: #041322;
}

.footer-grid {
  padding: 74px 0 58px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
}

.footer-brand img {
  width: 260px;
  filter: brightness(0) invert(1);
  opacity: .93;
}

.footer-brand h2,
.footer-contact h3 {
  margin: 28px 0 14px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
}

.footer-brand h2 {
  font-size: 2rem;
}

.footer-brand p {
  max-width: 640px;
  margin: 0;
}

.footer-contact h3 {
  margin-top: 0;
  font-size: 1.55rem;
}

.footer-contact p {
  margin: 0 0 16px;
}

.footer-contact a {
  color: var(--white);
  font-weight: 700;
}

.copyright {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #9fb1c6;
  text-align: center;
  font-size: .92rem;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    height: calc(100dvh - 82px);
    padding: 26px 22px;
    background: rgba(255,255,255,.98);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    transform: translateX(100%);
    transition: transform .3s ease;
  }

  .menu-open .site-nav {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 15px 16px;
    font-size: 1.05rem;
  }

  .site-nav a:last-child {
    margin: 8px 0 0;
    text-align: center;
  }

  .hero-grid,
  .mission-grid,
  .about-grid,
  .article-lead,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 80px 0 70px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .hero-card {
    max-width: 430px;
  }

  .strategy-card {
    grid-template-columns: 1fr;
  }

  .strategy-card:nth-child(even) .strategy-media {
    order: 0;
  }

  .strategy-media {
    min-height: 330px;
  }

  .mission-mark {
    min-height: 300px;
  }

  .about-grid,
  .article-lead,
  .contact-grid {
    gap: 44px;
  }

  .article-visual {
    position: static;
  }

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

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 24px);
    --radius-lg: 24px;
  }

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

  .brand img {
    width: 205px;
  }

  .site-nav {
    top: 72px;
    height: calc(100dvh - 72px);
  }

  .hero-grid {
    padding: 66px 0 56px;
    gap: 42px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

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

  .hero-card {
    padding: 22px;
    border-radius: 25px;
  }

  .section {
    padding: 76px 0;
  }

  .strategy-list {
    gap: 20px;
  }

  .strategy-media {
    min-height: 250px;
    padding: 30px;
  }

  .strategy-media img {
    max-height: 245px;
  }

  .content-copy {
    padding: 36px 26px 40px;
  }

  .subscription-strip {
    padding: 26px;
    align-items: stretch;
    flex-direction: column;
  }

  .mission-grid {
    gap: 30px;
  }

  .mission-mark {
    min-height: 250px;
  }

  .mission-mark::before {
    width: 215px;
    height: 215px;
  }

  .mission-mark img {
    width: 180px;
  }

  .page-hero {
    padding: 72px 0 68px;
  }

  .about-visual,
  .article-visual {
    min-height: 320px;
    padding: 28px;
  }

  .price-boxes {
    grid-template-columns: 1fr;
  }

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

  .contact-card h2 {
    font-size: 2rem;
  }

  .form-grid .btn {
    justify-self: stretch;
  }

  .footer-grid {
    padding: 58px 0 42px;
  }
}
