:root {
  --navy-950: #04111f;
  --navy-900: #071a2d;
  --navy-850: #0a2137;
  --navy-800: #0e2b46;
  --navy-700: #174363;
  --ink: #102338;
  --ink-soft: #586779;
  --paper: #f4f2ec;
  --paper-warm: #ece8df;
  --white: #ffffff;
  --amber: #f0ae3c;
  --amber-light: #ffd98e;
  --mint: #88dbc2;
  --line: rgba(16, 35, 56, 0.14);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow-soft: 0 24px 80px rgba(7, 26, 45, 0.12);
  --shadow-deep: 0 36px 100px rgba(2, 13, 24, 0.34);
  --container: 1180px;
  --header-height: 88px;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

address {
  font-style: normal;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.ambient {
  position: fixed;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient__orb {
  position: absolute;
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  will-change: transform;
}

.ambient__orb--one {
  top: -200px;
  right: -120px;
  background: var(--amber);
  animation: drift-one 22s ease-in-out infinite alternate;
}

.ambient__orb--two {
  bottom: 10%;
  left: -260px;
  background: #4b91c5;
  animation: drift-two 27s ease-in-out infinite alternate;
}

.ambient__orb--three {
  top: 44%;
  right: -260px;
  background: var(--mint);
  opacity: 0.1;
  animation: drift-three 31s ease-in-out infinite alternate;
}

.ambient__grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(16, 35, 56, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 35, 56, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

@keyframes drift-one {
  to {
    transform: translate(-22vw, 18vh) scale(1.18);
  }
}

@keyframes drift-two {
  to {
    transform: translate(30vw, -16vh) scale(0.82);
  }
}

@keyframes drift-three {
  to {
    transform: translate(-18vw, -28vh) scale(1.24);
  }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  transition:
    height 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(4, 17, 31, 0.88);
  box-shadow: 0 16px 50px rgba(2, 13, 24, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 46px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  color: var(--navy-950);
  background: var(--amber);
  border-radius: 13px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.brand__mark::after {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 24px;
  aspect-ratio: 1;
  content: "";
  background: var(--amber-light);
  border-radius: 50%;
}

.brand__mark span {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand__text {
  display: grid;
  line-height: 1.15;
}

.brand__text strong {
  font-size: 15px;
  letter-spacing: 0.01em;
}

.brand__text small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  transition: color 180ms ease;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 19px;
  color: var(--navy-950);
  background: var(--amber);
  border-radius: 999px;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 28%, rgba(240, 174, 60, 0.16), transparent 28%),
    radial-gradient(circle at 18% 90%, rgba(93, 171, 202, 0.15), transparent 30%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 48%, var(--navy-800) 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 104px;
  content: "";
  background: var(--paper);
  clip-path: polygon(0 62%, 100% 0, 100% 100%, 0 100%);
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  padding-top: calc(var(--header-height) + 76px);
  padding-bottom: 148px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 21px;
  color: var(--navy-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--amber-light);
}

.eyebrow__dot {
  width: 8px;
  aspect-ratio: 1;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(240, 174, 60, 0.12);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 79px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero h1 span {
  display: block;
  margin-top: 12px;
  color: var(--amber);
}

.hero__lead {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.button--primary {
  color: var(--navy-950);
  background: var(--amber);
  box-shadow: 0 14px 40px rgba(240, 174, 60, 0.2);
}

.button--primary:hover {
  background: var(--amber-light);
  box-shadow: 0 18px 50px rgba(240, 174, 60, 0.3);
}

.button--secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.28);
}

.button__arrow {
  display: grid;
  width: 26px;
  aspect-ratio: 1;
  place-items: center;
  font-size: 15px;
}

.hero__facts {
  display: flex;
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.hero__facts li {
  display: grid;
  padding: 0 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero__facts strong {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.01em;
}

.hero__facts span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.hero__visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
}

.orbit {
  position: absolute;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  top: 10%;
  left: 22%;
  width: 9px;
  aspect-ratio: 1;
  content: "";
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--amber);
}

.orbit--outer {
  width: 500px;
  animation: spin 24s linear infinite;
}

.orbit--inner {
  width: 380px;
  border-style: dashed;
  animation: spin-reverse 30s linear infinite;
}

.orbit--inner::after {
  top: auto;
  right: 8%;
  bottom: 24%;
  left: auto;
  background: var(--mint);
  box-shadow: 0 0 20px var(--mint);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

.dashboard-card {
  position: relative;
  z-index: 2;
  width: min(100%, 390px);
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(10, 33, 55, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(22px);
  transform: rotate(-2deg);
}

.dashboard-card__top,
.dashboard-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-card__label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dashboard-card__status {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: #c8f5e7;
  background: rgba(136, 219, 194, 0.1);
  border: 1px solid rgba(136, 219, 194, 0.16);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.dashboard-card__status i {
  width: 6px;
  aspect-ratio: 1;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(136, 219, 194, 0.08);
}

.balance {
  display: grid;
  gap: 3px;
  margin-top: 38px;
}

.balance small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.balance strong {
  font-size: 24px;
  letter-spacing: -0.035em;
}

.chart {
  display: flex;
  height: 128px;
  align-items: flex-end;
  gap: 11px;
  margin-top: 28px;
  padding: 13px 15px 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 100% 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chart span {
  flex: 1;
  min-height: 20px;
  background: linear-gradient(to top, rgba(240, 174, 60, 0.28), var(--amber));
  border-radius: 7px 7px 2px 2px;
  box-shadow: 0 0 25px rgba(240, 174, 60, 0.1);
  transform-origin: bottom;
  animation: chart-grow 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.chart span:nth-child(2) {
  height: 54%;
  animation-delay: 80ms;
}

.chart span:nth-child(3) {
  height: 45%;
  animation-delay: 160ms;
}

.chart span:nth-child(4) {
  height: 68%;
  animation-delay: 240ms;
}

.chart span:nth-child(5) {
  height: 60%;
  animation-delay: 320ms;
}

.chart span:nth-child(6) {
  height: 82%;
  animation-delay: 400ms;
}

.chart span:nth-child(7) {
  height: 94%;
  animation-delay: 480ms;
}

.chart span:nth-child(1) {
  height: 36%;
}

@keyframes chart-grow {
  from {
    transform: scaleY(0);
  }
}

.dashboard-card__bottom {
  margin-top: 25px;
}

.dashboard-card__bottom div {
  display: grid;
}

.dashboard-card__bottom small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.dashboard-card__bottom strong {
  font-size: 13px;
}

.checkmark {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--navy-950);
  background: var(--mint);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 900;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 160px;
  padding: 13px 15px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(15px);
  animation: float-note 5s ease-in-out infinite;
}

.floating-note--one {
  top: 54px;
  right: 0;
}

.floating-note--two {
  bottom: 74px;
  left: -22px;
  animation-delay: -2.2s;
}

.floating-note__icon {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--navy-950);
  background: var(--amber-light);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 900;
}

.floating-note span:last-child {
  display: grid;
}

.floating-note small {
  color: #7b8793;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-note strong {
  font-size: 12px;
}

@keyframes float-note {
  50% {
    transform: translateY(-10px);
  }
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 72px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: relative;
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.scroll-cue span::after {
  position: absolute;
  top: -50%;
  right: 0;
  left: 0;
  height: 50%;
  content: "";
  background: var(--amber);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  to {
    top: 100%;
  }
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2,
.process__intro h2,
.about__content h2,
.contact-card__intro h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 61px);
  font-weight: 720;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.section-heading > p {
  max-width: 460px;
  margin: 0 0 4px;
  color: var(--ink-soft);
}

.services {
  position: relative;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  overflow: hidden;
  padding: 27px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 35, 56, 0.09);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(7, 26, 45, 0.04);
  backdrop-filter: blur(12px);
  transition:
    color 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease,
    transform 260ms ease,
    box-shadow 260ms ease;
}

.service-card::before {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 150px;
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(240, 174, 60, 0.22), transparent 68%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.service-card:hover {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
  box-shadow: 0 24px 70px rgba(7, 26, 45, 0.18);
  transform: translateY(-8px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__number {
  color: var(--navy-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.service-card:hover .service-card__number {
  color: var(--amber);
}

.service-card__line {
  width: 100%;
  height: 1px;
  margin: 26px 0 53px;
  background: var(--line);
}

.service-card:hover .service-card__line {
  background: rgba(255, 255, 255, 0.12);
}

.service-card h3 {
  max-width: 210px;
  margin: 0;
  font-size: 23px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.62);
}

.service-card__detail {
  margin-top: auto;
  padding-top: 24px;
  color: var(--navy-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card:hover .service-card__detail {
  color: var(--amber-light);
}

.process {
  position: relative;
  color: var(--white);
  background: var(--navy-900);
}

.process::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 15% 20%, rgba(240, 174, 60, 0.09), transparent 28%),
    linear-gradient(90deg, transparent 49.95%, rgba(255, 255, 255, 0.05) 50%, transparent 50.05%);
  pointer-events: none;
}

.process__layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.process__intro {
  position: sticky;
  top: calc(var(--header-height) + 50px);
}

.process__intro .eyebrow {
  color: var(--amber);
}

.process__intro h2 {
  max-width: 560px;
}

.process__intro > p:not(.eyebrow) {
  max-width: 510px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  color: var(--amber-light);
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  display: grid;
  width: 31px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 217, 142, 0.28);
  border-radius: 50%;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.text-link:hover span {
  color: var(--navy-950);
  background: var(--amber);
  transform: translate(3px, -3px);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 28px;
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.process-step:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.process-step__number {
  display: grid;
  width: 52px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--navy-950);
  background: var(--amber);
  border-radius: 17px;
  font-size: 12px;
  font-weight: 900;
}

.process-step h3 {
  margin: 2px 0 9px;
  font-size: 23px;
  letter-spacing: -0.02em;
}

.process-step p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
}

.about {
  position: relative;
  overflow: hidden;
  background: var(--paper-warm);
}

.about::before {
  position: absolute;
  top: -180px;
  left: 50%;
  width: 500px;
  aspect-ratio: 1;
  content: "";
  background: rgba(240, 174, 60, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.about__layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.about__statement {
  position: relative;
  padding: 65px 25px;
  text-align: center;
}

.about__statement::before,
.about__statement::after {
  position: absolute;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
}

.about__statement::before {
  inset: 0;
  border: 1px solid rgba(16, 35, 56, 0.12);
}

.about__statement::after {
  inset: 30px;
  border: 1px dashed rgba(16, 35, 56, 0.18);
  animation: spin 40s linear infinite;
}

.about__year {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--navy-900);
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 750;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.about__statement p {
  position: relative;
  z-index: 1;
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.about__content h2 {
  max-width: 760px;
}

.about__lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.about__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.about__points > div {
  padding-top: 17px;
  border-top: 1px solid rgba(16, 35, 56, 0.17);
}

.about__points span {
  color: var(--navy-700);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.about__points p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.about__points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 14px;
}

.contact-section {
  padding: 90px 0;
  background: var(--paper);
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(65px, 9vw, 130px);
  overflow: hidden;
  padding: clamp(45px, 7vw, 86px);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 174, 60, 0.2), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-card__glow {
  position: absolute;
  bottom: -220px;
  left: 20%;
  width: 430px;
  aspect-ratio: 1;
  background: rgba(71, 153, 197, 0.17);
  border-radius: 50%;
  filter: blur(70px);
}

.contact-card__intro,
.contact-details {
  position: relative;
  z-index: 1;
}

.eyebrow--light {
  color: var(--amber);
}

.contact-card__intro h2 {
  max-width: 610px;
}

.contact-card__intro > p:not(.eyebrow) {
  max-width: 510px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.button--light {
  margin-top: 33px;
  color: var(--navy-950);
  background: var(--white);
}

.button--light:hover {
  background: var(--amber-light);
}

.contact-details {
  align-self: center;
}

.contact-item {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 22px 47px 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transition: padding-left 180ms ease;
}

.contact-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-item:hover {
  padding-left: 8px;
}

.contact-item__label {
  color: var(--amber-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-item strong {
  overflow-wrap: anywhere;
  font-size: 16px;
  line-height: 1.45;
}

.contact-item__arrow {
  position: absolute;
  top: 50%;
  right: 4px;
  color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%);
}

.site-footer {
  padding: 56px 0 25px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.brand--footer {
  color: var(--white);
}

.footer-data {
  text-align: center;
}

.footer-data p {
  margin: 2px 0;
  font-size: 12px;
}

.footer-data span {
  margin: 0 7px;
  color: var(--amber);
}

.footer-top {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
}

.footer-top span {
  display: grid;
  width: 33px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.footer-top:hover span {
  color: var(--navy-950);
  background: var(--amber);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.reveal--delay-small {
  transition-delay: 90ms;
}

.reveal--delay,
.reveal--delay-medium {
  transition-delay: 180ms;
}

.reveal--delay-large {
  transition-delay: 270ms;
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 86px);
  }

  .hero__content {
    max-width: 780px;
  }

  .hero__visual {
    width: min(100%, 590px);
    margin: -10px auto 0;
  }

  .scroll-cue {
    display: none;
  }

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

  .service-card {
    min-height: 330px;
  }

  .process__layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .process__intro {
    position: static;
  }

  .about__layout {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 60px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

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

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 14px;
    visibility: hidden;
    background: rgba(4, 17, 31, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
    opacity: 0;
    backdrop-filter: blur(18px);
    transform: translateY(-10px);
    transition:
      visibility 180ms ease,
      opacity 180ms ease,
      transform 180ms ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav > a {
    padding: 14px 15px;
  }

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

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero__layout {
    gap: 34px;
    padding-top: calc(var(--header-height) + 62px);
    padding-bottom: 130px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero__lead {
    margin-top: 24px;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .hero__facts li {
    padding: 0 12px;
  }

  .hero__facts strong {
    font-size: 12px;
  }

  .hero__facts span {
    font-size: 10px;
  }

  .hero__visual {
    min-height: 430px;
  }

  .orbit--outer {
    width: min(112vw, 470px);
  }

  .orbit--inner {
    width: min(85vw, 350px);
  }

  .dashboard-card {
    width: min(87vw, 375px);
    padding: 23px;
  }

  .floating-note {
    min-width: 142px;
    padding: 11px 12px;
  }

  .floating-note--one {
    top: 24px;
    right: 0;
  }

  .floating-note--two {
    bottom: 40px;
    left: 0;
  }

  .section {
    padding: 86px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 23px;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .process__intro h2,
  .about__content h2,
  .contact-card__intro h2 {
    font-size: clamp(36px, 10.5vw, 48px);
  }

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

  .service-card {
    min-height: 310px;
  }

  .process::before {
    background: radial-gradient(circle at 15% 20%, rgba(240, 174, 60, 0.09), transparent 28%);
  }

  .process-step {
    grid-template-columns: 54px 1fr;
    gap: 19px;
  }

  .process-step__number {
    width: 46px;
    border-radius: 14px;
  }

  .about__layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .about__statement {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .about__points {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .contact-section {
    padding: 50px 0;
  }

  .contact-card {
    padding: 42px 25px;
    border-radius: 27px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand--footer,
  .footer-top {
    justify-self: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .brand__text strong {
    font-size: 13px;
  }

  .brand__text small {
    font-size: 9px;
  }

  .hero__facts {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hero__facts li {
    padding: 0 0 0 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero__facts li:first-child {
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .floating-note--two {
    left: -8px;
  }

  .contact-item strong {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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