:root {
  --navy: #101c2c;
  --navy-deep: #09121f;
  --teal: #ee5d82;
  --teal-dark: #c93d63;
  --mint: #f8dde5;
  --cream: #faf7f5;
  --white: #fff;
  --ink: #182535;
  --muted: #66727e;
  --line: #e2dddc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.site-header {
  height: 88px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-name {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.brand-name i { color: var(--teal); font-style: normal; }
.brand-name small { color: var(--teal); font-size: 9px; letter-spacing: 1.5px; vertical-align: top; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 600; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px;
  background: var(--teal); transition: right .2s ease;
}
.site-nav > a:hover::after { right: 0; }
.nav-cta {
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color .2s, color .2s;
}
.nav-cta span, .button span { color: var(--teal); margin-left: 8px; }
.nav-cta:hover { border-color: var(--teal); color: var(--teal-dark); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }

.hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  max-width: 1240px;
  margin: 0 auto;
  padding: 76px 30px 70px;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  color: var(--teal-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
}
.eyebrow span { width: 24px; height: 2px; background: var(--teal); }
.hero h1, h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -3.4px;
  margin: 0;
}
.hero h1 { font-size: clamp(50px, 5.2vw, 76px); line-height: .99; max-width: 680px; }
h1 em, h2 em { font-style: normal; color: var(--teal); }
.hero-intro {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
  max-width: 610px;
  margin: 30px 0;
}
.hero-actions { display: flex; align-items: center; gap: 30px; }
.button {
  border: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: var(--white); }
.button-primary:hover { background: #0d3b50; }
.text-link { font-size: 14px; font-weight: 700; border-bottom: 1px solid var(--line); padding-bottom: 5px; }
.text-link span { color: var(--teal); margin-left: 6px; }
.hero-points {
  display: flex; flex-wrap: wrap; gap: 23px;
  list-style: none; padding: 0; margin: 37px 0 0;
  font-size: 12px; color: var(--muted); font-weight: 600;
}
.hero-points span { color: var(--teal); margin-right: 5px; }

.hero-visual {
  height: 500px;
  position: relative;
  background: radial-gradient(circle at 45% 43%, #f8dde5 0, #fdf2f5 37%, #fcf8f7 64%, transparent 65%);
  overflow: hidden;
}
.visual-glow {
  position: absolute; width: 310px; height: 310px; left: 50%; top: 49%; transform: translate(-50%,-50%);
  border-radius: 50%; background: radial-gradient(circle, rgba(238,93,130,.23), rgba(238,93,130,.02) 67%);
}
.orbit {
  position: absolute; left: 50%; top: 49%; transform: translate(-50%,-50%) rotate(-15deg);
  border: 1px solid rgba(238,93,130,.28); border-radius: 50%;
}
.orbit-one { width: 390px; height: 270px; }
.orbit-two { width: 480px; height: 370px; transform: translate(-50%,-50%) rotate(33deg); }
.core {
  width: 188px; height: 188px; position: absolute; left: 50%; top: 49%; transform: translate(-50%,-50%);
  background: var(--navy); color: white; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 24px 60px rgba(8,42,58,.27);
}
.core::before { content: ""; position: absolute; inset: 11px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.core strong { font: 700 16px "Poppins"; margin-top: 13px; }
.core small { color: #e5a9ba; margin-top: 5px; font-size: 9px; letter-spacing: 1.5px; }
.core-icon { display: flex; gap: 4px; align-items: end; height: 30px; }
.core-icon span { width: 8px; border: 2px solid var(--teal); border-radius: 5px 5px 2px 2px; transform: skewY(-22deg); }
.core-icon span:nth-child(1) { height: 19px; }
.core-icon span:nth-child(2) { height: 29px; }
.core-icon span:nth-child(3) { height: 15px; }
.node { width: 11px; height: 11px; border: 3px solid var(--teal); background: white; border-radius: 50%; position: absolute; box-shadow: 0 0 0 5px rgba(238,93,130,.13); }
.node-one { left: 18%; top: 30%; }.node-two { right: 13%; top: 37%; }
.node-three { left: 22%; bottom: 22%; }.node-four { right: 20%; bottom: 18%; }
.status-card {
  position: absolute; background: white; min-width: 165px; border-radius: 8px; padding: 13px 15px;
  display: flex; gap: 11px; align-items: center; box-shadow: 0 15px 35px rgba(8,42,58,.12);
  border: 1px solid #eef2f1;
}
.status-top { right: 0; top: 55px; }
.status-bottom { left: 5px; bottom: 70px; }
.status-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--mint); color: var(--teal-dark); display: grid; place-items: center; font-weight: 700; }
.status-card span:nth-child(2) { display: flex; flex-direction: column; }
.status-card small { color: #8a969a; font-size: 9px; text-transform: uppercase; letter-spacing: 1px; }
.status-card strong { font-size: 12px; color: var(--navy); margin-top: 2px; }
.status-card i { margin-left: auto; width: 7px; height: 7px; background: var(--teal); border-radius: 50%; box-shadow: 0 0 0 4px var(--mint); }

.section { padding: 105px max(30px, calc((100vw - 1180px) / 2)); }
.services { background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1.5fr .7fr; gap: 80px; align-items: end; margin-bottom: 55px; }
.section-heading h2, .contact h2, .approach h2 { font-size: clamp(38px, 4vw, 56px); line-height: 1.08; max-width: 710px; }
.section-heading > p { color: var(--muted); line-height: 1.7; margin: 0 0 3px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid #d7dedc; }
.service-card {
  background: rgba(255,255,255,.54); padding: 35px 28px 32px; min-height: 445px;
  border-right: 1px solid #d7dedc; position: relative; transition: background .25s, transform .25s;
}
.service-card:last-child { border-right: 0; }
.service-card:hover { background: white; transform: translateY(-5px); z-index: 2; box-shadow: 0 18px 40px rgba(8,42,58,.08); }
.service-card.featured { background: var(--navy); color: white; }
.service-number { position: absolute; right: 24px; top: 22px; color: #9aa8aa; font-size: 11px; }
.featured .service-number { color: #7d8693; }
.service-icon {
  width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%;
  background: var(--mint); margin-bottom: 28px;
}
.featured .service-icon { background: rgba(238,93,130,.18); }
.service-icon svg { width: 25px; fill: none; stroke: var(--teal-dark); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.featured .service-icon svg { stroke: #f47d9b; }
.service-card h3 { font: 700 19px "Poppins"; color: var(--navy); margin: 0 0 15px; }
.featured h3 { color: white; }
.service-card > p { color: var(--muted); font-size: 14px; line-height: 1.65; min-height: 70px; }
.featured > p { color: #b3bbc5; }
.service-card ul { list-style: none; padding: 18px 0 0; margin: 18px 0 0; border-top: 1px solid #dfe4e2; }
.featured ul { border-color: #303b4b; }
.service-card li { font-size: 12px; margin: 12px 0; color: #536a73; padding-left: 15px; position: relative; }
.featured li { color: #c7ccd3; }
.service-card li::before { content: ""; position: absolute; left: 0; top: 6px; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }

.approach { background: white; }
.approach-panel {
  background: var(--navy); color: white; padding: 75px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 90px;
  position: relative; overflow: hidden;
}
.approach-panel::after {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  border: 1px solid rgba(238,93,130,.15); right: -190px; top: -200px;
  box-shadow: 0 0 0 70px rgba(238,93,130,.03), 0 0 0 140px rgba(238,93,130,.02);
}
.eyebrow.light { color: #f0a4b7; }
.approach h2 { color: white; }
.approach-copy > p:not(.eyebrow) { color: #b1bac5; line-height: 1.75; max-width: 500px; margin: 28px 0; }
.button-light { background: white; color: var(--navy); }
.approach-list { position: relative; z-index: 1; }
.approach-list article { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid #303b4b; }
.approach-list article:last-child { border: 0; }
.approach-list article > span { color: var(--teal); font-size: 11px; margin-top: 5px; }
.approach-list h3 { font: 700 17px "Poppins"; margin: 0 0 7px; }
.approach-list p { color: #aab3bf; font-size: 13px; line-height: 1.5; margin: 0; }

.contact { display: grid; grid-template-columns: .85fr 1fr; gap: 110px; background: var(--cream); }
.contact-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.7; max-width: 520px; }
.contact-details { margin-top: 35px; display: grid; gap: 12px; }
.contact-details a {
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
}
.contact-details a > span {
  background: var(--mint);
  color: var(--teal-dark);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background .2s, color .2s;
}
.contact-details a:hover > span { background: var(--teal); color: white; }
.contact-details a div { display: flex; flex-direction: column; }
.contact-details small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-details strong { color: var(--navy); font-size: 14px; margin-top: 2px; }
.contact-details p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin: 10px 0 0;
}
.contact-details p span { color: var(--teal); font-size: 8px; margin-right: 8px; }
.contact-form { background: white; padding: 38px; box-shadow: 0 20px 50px rgba(8,42,58,.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: block; font-size: 11px; font-weight: 700; color: #4c636d; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .7px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; border: 0; border-bottom: 1px solid #ccd6d6; background: transparent;
  padding: 11px 3px; outline: none; color: var(--navy); border-radius: 0; resize: vertical;
  text-transform: none; letter-spacing: 0;
}
.contact-form .form-honey { display: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--teal); }
.contact-form textarea::placeholder { color: #a2adaf; }
.form-submit { width: 100%; margin-top: 5px; }

footer {
  min-height: 105px; padding: 28px max(30px, calc((100vw - 1180px) / 2));
  display: flex; align-items: center; justify-content: space-between; gap: 25px;
  background: var(--navy-deep); color: #929ca8; font-size: 11px;
}
.footer-brand { color: white; }
.footer-brand .brand-name { font-size: 14px; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 55px; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-visual { height: 430px; max-width: 620px; width: 100%; margin: -10px auto 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card { border-bottom: 1px solid #d7dedc; }
  .service-card:nth-child(2) { border-right: 0; }
  .approach-panel { padding: 55px; gap: 50px; }
  .contact { gap: 60px; }
}

@media (max-width: 760px) {
  .site-header { height: 75px; padding: 0 20px; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; background: var(--navy); margin: 6px 0; transition: transform .2s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: absolute; display: none; left: 15px; right: 15px; top: 68px; padding: 25px;
    background: white; box-shadow: 0 15px 30px rgba(8,42,58,.15); flex-direction: column; align-items: stretch; gap: 20px;
  }
  .site-nav.open { display: flex; }
  .nav-cta { text-align: center; }
  .hero { padding: 60px 20px 45px; min-height: 0; gap: 20px; }
  .hero h1 { font-size: clamp(45px, 14vw, 64px); letter-spacing: -2.5px; }
  .hero-intro { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-points { flex-direction: column; gap: 10px; }
  .hero-visual { height: 390px; transform: scale(.92); }
  .status-top { right: 5px; }
  .section { padding: 78px 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .section-heading h2, .contact h2, .approach h2 { letter-spacing: -2.2px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(2) { border-right: 0; }
  .service-card { min-height: 0; }
  .approach-panel { grid-template-columns: 1fr; padding: 45px 28px; gap: 35px; }
  .contact { grid-template-columns: 1fr; gap: 45px; }
  .contact-form { padding: 28px 22px; }
  footer { flex-direction: column; align-items: flex-start; padding-top: 40px; padding-bottom: 40px; }
}

@media (max-width: 450px) {
  .brand-name { font-size: 14px; }
  .hero-visual { margin-left: -18px; width: calc(100% + 36px); }
  .core { width: 155px; height: 155px; }
  .core strong { font-size: 13px; }
  .orbit-one { width: 315px; height: 225px; }
  .orbit-two { width: 370px; height: 285px; }
  .status-card { transform: scale(.85); }
  .status-top { right: -13px; }
  .status-bottom { left: -10px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
