@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-600-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins-700-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-600-italic-latin.woff2") format("woff2");
}

:root {
  --navy: #0b2d6b;
  --cyan: #22c7d9;
  --dark-navy: #081f4d;
  --light-cyan: #a9eef4;
  --neutral: #f4f6f8;
  --ink: #101b35;
  --muted: #5e6980;
  --white: #ffffff;
  --line: rgba(8, 31, 77, 0.12);
  --shadow: 0 28px 80px rgba(8, 31, 77, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --shell: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Poppins", system-ui, sans-serif; letter-spacing: -0.035em; line-height: 1.12; }
.site-shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.section-pad { padding: 112px 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; transform: translateY(-150%); background: var(--dark-navy); color: var(--white); padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: absolute; z-index: 20; inset: 0 0 auto; padding: 26px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand-mark { display: inline-flex; width: 170px; }
.site-nav { display: flex; align-items: center; gap: 34px; color: var(--navy); font-size: 14px; font-weight: 600; }
.site-nav a { position: relative; padding: 8px 0; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--cyan); transition: right 180ms ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }

.hero { position: relative; min-height: 800px; overflow: hidden; padding: 175px 0 110px; background: radial-gradient(circle at 82% 40%, rgba(169, 238, 244, 0.42), transparent 28%), linear-gradient(145deg, #fff 0%, #f8fcfd 50%, #f2f8fb 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: 0.28; background-image: linear-gradient(rgba(11,45,107,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(11,45,107,.06) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, black, transparent 65%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(360px, .84fr); align-items: center; gap: 60px; }
.hero-copy { max-width: 700px; }
.eyebrow, .section-label { display: flex; align-items: center; gap: 12px; color: var(--navy); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 2px; background: var(--cyan); }
.hero h1 { margin: 24px 0 30px; color: var(--dark-navy); font-size: clamp(46px, 5.5vw, 78px); }
.hero h1 em { color: var(--cyan); font-style: normal; }
.hero-lead { max-width: 650px; color: var(--muted); font-size: 19px; line-height: 1.75; }
.hero-note { display: flex; align-items: center; gap: 12px; margin-top: 38px; color: var(--navy); font-size: 13px; font-weight: 600; }
.pulse { width: 10px; height: 10px; border: 3px solid rgba(34,199,217,.25); border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(34,199,217,.12); }
.hero-visual { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(11,45,107,.18); border-radius: 50%; }
.orbit-outer { inset: 3%; animation: spin 32s linear infinite; }
.orbit-inner { inset: 17%; border-style: dashed; animation: spin 22s linear infinite reverse; }
.orbit-dot { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 8px rgba(34,199,217,.14); }
.orbit-dot-one { top: 12%; left: 14%; }
.orbit-dot-two { right: 8%; bottom: 22%; width: 9px; height: 9px; background: var(--navy); }
.visual-core { position: relative; z-index: 2; width: 56%; aspect-ratio: 1; display: flex; flex-direction: column; justify-content: center; padding: 36px; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,255,255,.62)); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.visual-core::before { content: ""; position: absolute; inset: -10px; z-index: -1; border: 1px solid rgba(34,199,217,.35); border-radius: inherit; }
.visual-core > span { color: var(--cyan); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.visual-core strong { margin: 8px 0 12px; color: var(--dark-navy); font-family: "Poppins", sans-serif; font-size: clamp(25px, 3.2vw, 42px); line-height: 1; }
.visual-core small { color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-glow-one { right: -130px; top: -180px; width: 420px; height: 420px; background: rgba(34,199,217,.08); }
.hero-glow-two { left: -170px; bottom: -260px; width: 500px; height: 500px; border: 90px solid rgba(11,45,107,.035); }

.intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 220px 1fr; gap: 70px; }
.intro h2 { max-width: 820px; margin-bottom: 48px; color: var(--dark-navy); font-size: clamp(36px, 4vw, 56px); }
.intro-copy { display: grid; grid-template-columns: repeat(2, 1fr); gap: 42px; color: var(--muted); font-size: 17px; }
.intro-copy p:first-child::first-letter { float: left; margin: 9px 10px 0 0; color: var(--cyan); font-family: "Poppins", sans-serif; font-size: 58px; font-weight: 700; line-height: .7; }

.focus { background: var(--neutral); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; margin-bottom: 52px; }
.section-heading h2 { max-width: 660px; margin: 0; color: var(--dark-navy); font-size: clamp(34px, 4vw, 52px); }
.pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pillar-card { position: relative; min-height: 570px; overflow: hidden; padding: 42px; border-radius: var(--radius-lg); }
.pillar-business { color: var(--white); background: linear-gradient(150deg, #0d397e 0%, var(--dark-navy) 65%, #061631 100%); }
.pillar-ai { border: 1px solid rgba(34,199,217,.26); background: linear-gradient(145deg, #f1feff 0%, #dcf8fb 100%); }
.card-top { display: flex; justify-content: space-between; color: inherit; font-size: 12px; font-weight: 700; letter-spacing: .1em; }
.card-top i { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 16px; font-style: normal; opacity: .58; }
.pillar-card h3 { margin: 28px 0 18px; font-size: clamp(34px, 4vw, 48px); }
.pillar-card > p { max-width: 510px; font-size: 17px; opacity: .78; }
.pillar-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 34px 0 0; padding: 0; list-style: none; }
.pillar-card li { padding: 8px 13px; border: 1px solid currentColor; border-radius: 999px; font-size: 12px; opacity: .72; }
.pillar-icon { height: 130px; display: flex; align-items: flex-end; gap: 12px; margin-top: 45px; }
.pillar-icon span { width: 38px; border-radius: 8px 8px 3px 3px; background: linear-gradient(to top, var(--cyan), var(--light-cyan)); }
.pillar-icon span:nth-child(1) { height: 46%; opacity: .5; }.pillar-icon span:nth-child(2) { height: 75%; opacity: .74; }.pillar-icon span:nth-child(3) { height: 100%; }
.ai-symbol { position: relative; width: 150px; height: 150px; display: grid; place-items: center; margin-top: 34px; border: 1px solid rgba(11,45,107,.2); border-radius: 50%; }
.ai-symbol b { display: grid; width: 88px; height: 88px; place-items: center; border-radius: 28px; color: var(--white); background: linear-gradient(145deg, var(--cyan), #0ba8bc); font: 700 28px/1 "Poppins", sans-serif; box-shadow: 0 18px 35px rgba(34,199,217,.28); }
.ai-symbol span { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--navy); }
.ai-symbol span:nth-child(1) { top: 16px; }.ai-symbol span:nth-child(2) { right: 9px; top: 67px; }.ai-symbol span:nth-child(3) { bottom: 13px; }.ai-symbol span:nth-child(4) { left: 8px; top: 67px; }

.approach { color: var(--white); background: var(--dark-navy); }
.approach-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; }
.section-label.light { color: var(--light-cyan); }
.approach h2 { margin-top: 28px; font-size: clamp(38px, 4.5vw, 60px); }
.approach h2 em { color: var(--cyan); font-style: normal; }
.principle-list article { display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.15); }
.principle-list article:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.principle-list > article > span { color: var(--cyan); font-size: 12px; font-weight: 700; }
.principle-list h3 { margin-bottom: 9px; font-size: 22px; }
.principle-list p { margin-bottom: 0; color: rgba(255,255,255,.63); }

.audience { background: #edf9fb; }
.audience-card { position: relative; overflow: hidden; padding: 70px; border: 1px solid rgba(34,199,217,.22); border-radius: var(--radius-lg); background: rgba(255,255,255,.76); box-shadow: var(--shadow); }
.audience-card::after { content: ""; position: absolute; right: -100px; bottom: -160px; width: 380px; height: 380px; border: 70px solid rgba(34,199,217,.08); border-radius: 50%; }
.audience h2 { max-width: 920px; margin: 28px 0 42px; color: var(--dark-navy); font-size: clamp(34px, 4.3vw, 58px); }
.audience-tags { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 12px; }
.audience-tags span { padding: 11px 18px; border: 1px solid rgba(11,45,107,.2); border-radius: 999px; color: var(--navy); font-size: 13px; font-weight: 600; background: var(--white); }

.closing-statement { padding: 120px 0; text-align: center; background: var(--white); }
.closing-statement p { color: var(--cyan); font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.closing-statement h2 { margin: 25px 0 0; color: var(--dark-navy); font-size: clamp(36px, 5vw, 68px); }
.closing-statement h2 span { color: var(--cyan); }

.site-footer { padding: 76px 0 28px; color: rgba(255,255,255,.72); background: #061631; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 70px; }
.footer-logo { width: 156px; margin-bottom: 22px; filter: brightness(0) invert(1); }
.footer-grid > div:first-child p { max-width: 440px; margin-bottom: 0; }
.footer-meta { display: grid; grid-template-columns: auto minmax(190px, auto); align-content: start; gap: 10px 30px; font-size: 14px; }
.footer-meta span:nth-child(odd) { color: rgba(255,255,255,.42); }
.footer-meta a { color: var(--white); }
.footer-meta a:hover, .footer-meta a:focus-visible { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.default-content { min-height: 70vh; padding-top: 170px; }

@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .orbit { animation: none; } *, *::before, *::after { transition-duration: .01ms !important; } }
@media (max-width: 900px) {
  .section-pad { padding: 82px 0; }
  .hero { min-height: auto; padding-top: 145px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { width: min(460px, 90%); margin: 0 auto; }
  .intro-grid, .approach-grid { grid-template-columns: 1fr; gap: 38px; }
  .intro-copy { gap: 28px; }
  .pillar-card { min-height: 530px; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .site-shell { width: min(calc(100% - 32px), var(--shell)); }
  .site-header { padding-top: 20px; }
  .brand-mark { width: 138px; }
  .site-nav { gap: 15px; font-size: 12px; }
  .site-nav a:nth-child(2) { display: none; }
  .hero { padding: 130px 0 78px; }
  .hero-grid { gap: 45px; }
  .hero-lead { font-size: 17px; }
  .hero-note { align-items: flex-start; }
  .visual-core { padding: 24px; }
  .intro-copy, .pillar-grid { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .section-heading .section-label { margin-bottom: 22px; }
  .pillar-card { min-height: 500px; padding: 30px; }
  .audience-card { padding: 42px 28px; }
  .footer-meta { grid-template-columns: 1fr; gap: 4px; }
  .footer-meta span:nth-child(odd) { margin-top: 14px; }
  .footer-bottom { flex-direction: column; }
}
