

:root {
  --ink: #061426;
  --navy: #030b18;
  --navy-2: #07172d;
  --blue: #2489ff;
  --cyan: #2ed7e6;
  --paper: #f3f5f7;
  --white: #f8fbff;
  --slate: #9cacc0;
  --line: rgba(115, 153, 203, 0.26);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1240px, calc(100% - 96px)); margin-inline: auto; }
.section { padding-block: 128px; }

.hero {
  min-height: 100svh;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 38%, rgba(23, 109, 255, .18), transparent 29%),
    linear-gradient(145deg, #06162b 0%, #020916 62%, #050b19 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: linear-gradient(rgba(72, 124, 191, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(72, 124, 191, .12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, transparent 12%, #000 72%, transparent);
}
.site-header {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 3;
}
.identity { display: flex; flex-direction: column; gap: 7px; }
.identity strong { font-size: 20px; line-height: 1; letter-spacing: .26em; text-transform: uppercase; }
.identity span { color: var(--slate); font-size: 12px; letter-spacing: .17em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 42px; }
nav a { color: #dce5f1; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; position: relative; }
nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--blue); transition: right .25s ease; }
nav a:hover::after { right: 0; }

.hero-content { min-height: 620px; display: grid; grid-template-columns: 55% 45%; align-items: center; position: relative; z-index: 2; }
.hero-copy { padding: 72px 0 62px; }
.eyebrow, .section-label { color: var(--blue); font-size: 12px; font-weight: 650; letter-spacing: .25em; text-transform: uppercase; }
.hero h1 { max-width: 770px; margin: 24px 0 26px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(56px, 5.2vw, 82px); font-weight: 400; letter-spacing: -.055em; line-height: .98; }
.hero h1 em { font-style: normal; color: #8cc5ff; }
.hero-summary { max-width: 640px; margin: 0 0 34px; color: #afbdd0; font-size: 18px; line-height: 1.75; }
.button { width: fit-content; min-width: 230px; height: 64px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; border: 1px solid #2b99ff; background: rgba(6, 20, 38, .34); color: #fff; font-size: 15px; letter-spacing: .02em; transition: background .25s ease, transform .25s ease; }
.button span { color: #59b3ff; font-size: 24px; transition: transform .25s ease; }
.button:hover { background: #0f72df; transform: translateY(-2px); }
.button:hover span { color: #fff; transform: translateX(5px); }

.systems { min-height: 520px; position: relative; transform: rotate(-4deg); }
.systems::before, .systems::after { content: ""; position: absolute; height: 1px; width: 95%; top: 46%; left: 3%; background: linear-gradient(90deg, transparent, #237fff, var(--cyan), transparent); box-shadow: 0 90px 0 rgba(35, 127, 255, .7), 0 -90px 0 rgba(46, 215, 230, .3); transform: rotate(-28deg); }
.systems::after { transform: rotate(32deg); opacity: .65; }
.orbit { position: absolute; border: 1px solid rgba(50, 133, 255, .5); border-radius: 50%; }
.orbit-one { width: 430px; height: 210px; top: 130px; left: 35px; transform: rotate(18deg); }
.orbit-two { width: 300px; height: 430px; top: 38px; left: 150px; transform: rotate(42deg); border-color: rgba(46, 215, 230, .33); }
.system-card { position: absolute; width: 126px; height: 92px; display: grid; place-items: center; background: rgba(5, 17, 39, .86); border: 1px solid #277de0; box-shadow: 0 0 36px rgba(10, 99, 229, .16), inset 0 0 24px rgba(35, 127, 255, .06); }
.system-card::before, .system-card::after { content: ""; position: absolute; inset: 8px -8px -8px 8px; border-right: 1px solid rgba(36, 137, 255, .45); border-bottom: 1px solid rgba(36, 137, 255, .45); }
.system-card::after { inset: 16px -16px -16px 16px; opacity: .35; }
.system-card span { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #c7d8eb; }
.cloud { top: 70px; right: 18px; border-radius: 46% 54% 42% 58%; }
.core { top: 220px; left: 110px; width: 160px; height: 118px; border-color: var(--cyan); }
.data { right: 14px; bottom: 65px; border-radius: 50%; height: 110px; }
.node { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 14px var(--blue); animation: pulse 2.8s ease-in-out infinite; }
.node-one { left: 26px; top: 183px; }.node-two { right: 30px; top: 225px; animation-delay: .8s; }.node-three { left: 280px; bottom: 40px; animation-delay: 1.5s; background: var(--cyan); }
@keyframes pulse { 50% { transform: scale(1.55); opacity: .55; } }

.hero-metrics { min-height: 132px; display: grid; grid-template-columns: repeat(3, 1fr); position: relative; z-index: 3; border-top: 1px solid var(--line); }
.metric { display: flex; flex-direction: column; justify-content: center; padding: 22px 44px; border-right: 1px solid var(--line); }
.metric:first-child { padding-left: 0; }.metric:last-child { border: 0; }
.metric strong { font-family: Georgia, serif; font-size: 48px; font-weight: 400; letter-spacing: -.035em; }
.metric span { margin-top: 7px; color: #8fa1b7; font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }

.section-label { padding-bottom: 24px; border-bottom: 1px solid #cfd6df; color: #246bb5; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 112px; margin-top: 72px; }
.about h2, .section-heading h2, .transformation h2, .contact h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(44px, 4vw, 66px); font-weight: 400; line-height: 1.08; letter-spacing: -.045em; }
.about-intro { display: flex; flex-direction: column; gap: 58px; }
.executive-portrait { margin: 0; display: flex; align-items: center; gap: 24px; }
.portrait-frame { width: 156px; height: 156px; flex: 0 0 156px; position: relative; padding: 6px; border: 1px solid #b8c8d8; background: #e5ebf1; box-shadow: 14px 14px 0 #dfe7ef; }
.portrait-frame::after { content: ""; position: absolute; inset: 6px; pointer-events: none; background: linear-gradient(145deg, rgba(36, 137, 255, .08), transparent 48%, rgba(6, 20, 38, .08)); }
.portrait-frame img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) contrast(1.03); }
.executive-portrait figcaption { display: flex; flex-direction: column; gap: 8px; }
.executive-portrait figcaption strong { color: var(--ink); font-size: 14px; letter-spacing: .16em; text-transform: uppercase; }
.executive-portrait figcaption span { color: #627186; font-size: 11px; letter-spacing: .13em; line-height: 1.5; text-transform: uppercase; }
.about-copy p { color: #4b5868; font-size: 17px; line-height: 1.85; }
.about-copy .lead { margin-top: 0; color: var(--ink); font-family: Georgia, serif; font-size: 26px; line-height: 1.45; }

.impact, .transformation { color: var(--white); background: var(--navy); position: relative; overflow: hidden; }
.impact::before { content: ""; position: absolute; width: 500px; height: 500px; right: -100px; top: -160px; border: 1px solid rgba(38, 125, 232, .22); border-radius: 50%; box-shadow: 0 0 100px rgba(27, 104, 234, .12); }
.section-label.light { color: #54aaff; border-color: rgba(116, 151, 194, .26); }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; margin: 68px 0 72px; }
.section-heading > p { margin: 0; color: #687585; font-size: 17px; line-height: 1.75; }
.impact-heading > p { color: #9aabbe; }
.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.outcome-grid article { min-height: 245px; padding: 28px 30px 32px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.outcome-grid article:last-child { border: 0; }
.outcome-grid article > span { color: #5b7698; font-size: 11px; letter-spacing: .18em; }
.outcome-grid strong { margin-top: auto; font-family: Georgia, serif; font-size: clamp(45px, 4vw, 64px); font-weight: 400; }
.outcome-grid p { margin: 8px 0 0; color: #95a5b8; font-size: 12px; letter-spacing: .1em; line-height: 1.5; text-transform: uppercase; }

.capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #cfd6df; border-left: 1px solid #cfd6df; }
.capability-grid article { min-height: 310px; padding: 40px; border-right: 1px solid #cfd6df; border-bottom: 1px solid #cfd6df; transition: background .25s ease, transform .25s ease; }
.capability-grid article:hover { background: #fff; transform: translateY(-3px); }
.capability-grid span { color: #2479d0; font-size: 12px; letter-spacing: .2em; }
.capability-grid h3 { margin: 70px 0 16px; font-family: Georgia, serif; font-size: 30px; font-weight: 400; }
.capability-grid p { max-width: 470px; margin: 0; color: #647080; line-height: 1.75; }

.transformation { background: linear-gradient(135deg, #061426, #020813); }
.transformation-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; }
.transformation h2 { margin-top: 65px; }
.transformation ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.transformation li { min-height: 76px; display: flex; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); color: #dce7f4; font-size: 16px; }
.transformation li span { color: var(--blue); }

.contact { text-align: center; }
.contact .eyebrow { margin: 0 0 28px; }
.contact h2 { font-size: clamp(56px, 6vw, 86px); }
.contact > p:not(.eyebrow) { max-width: 650px; margin: 28px auto 38px; color: #5a6776; font-size: 18px; line-height: 1.75; }
.contact-actions { display: flex; justify-content: center; align-items: center; gap: 34px; }
.button-dark { background: var(--ink); border-color: var(--ink); }
.text-link { padding: 17px 4px 10px; border-bottom: 1px solid #8190a1; }
.footer { min-height: 160px; display: grid; grid-template-columns: 1fr 1.6fr .5fr; align-items: center; gap: 50px; border-top: 1px solid #cbd3dc; }
.footer p { color: #687585; font-size: 12px; letter-spacing: .08em; text-align: center; }
.footer > a { justify-self: end; color: #36516e; font-size: 13px; }

@media (max-width: 980px) {
  .shell { width: min(100% - 48px, 760px); }
  .section { padding-block: 92px; }
  nav { gap: 22px; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 20px; }
  .systems { position: absolute; width: 420px; right: -180px; top: 80px; opacity: .46; }
  .hero-metrics { margin-top: 36px; }
  .about-grid, .section-heading, .transformation-grid { grid-template-columns: 1fr; gap: 42px; }
  .about-intro { gap: 42px; }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-grid article:nth-child(2) { border-right: 0; }
  .outcome-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 680px) {
  .shell { width: calc(100% - 36px); }
  .site-header { height: 88px; }
  .identity strong { font-size: 16px; }
  .identity span { font-size: 9px; }
  nav a:not(:last-child) { display: none; }
  nav { gap: 0; }
  .hero-content { min-height: auto; }
  .hero-copy { padding: 78px 0 56px; }
  .hero h1 { font-size: 47px; line-height: 1.02; }
  .hero-summary { font-size: 16px; line-height: 1.65; }
  .systems { display: none; }
  .hero-metrics { grid-template-columns: 1fr; padding-block: 8px 28px; }
  .metric { padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: 0; }
  .metric strong { font-size: 40px; }
  .about-grid { margin-top: 48px; }
  .executive-portrait { gap: 20px; }
  .portrait-frame { width: 132px; height: 132px; flex-basis: 132px; box-shadow: 10px 10px 0 #dfe7ef; }
  .about h2, .section-heading h2, .transformation h2 { font-size: 42px; }
  .section-heading { margin-block: 48px; }
  .outcome-grid, .capability-grid { grid-template-columns: 1fr; }
  .outcome-grid article { min-height: 200px; border-right: 0; border-bottom: 1px solid var(--line); }
  .capability-grid article { min-height: 270px; padding: 28px; }
  .capability-grid h3 { margin-top: 52px; }
  .transformation-grid { gap: 55px; }
  .contact h2 { font-size: 58px; }
  .contact-actions { flex-direction: column; }
  .footer { padding-block: 45px; grid-template-columns: 1fr; text-align: center; }
  .footer p { text-align: center; }.footer > a { justify-self: center; }
}

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