:root {
  --sky: #36a7ff;
  --deep: #0d4f9f;
  --ice: #e9f7ff;
  --ink: #0c2a45;
  --readable: #09233c;
  --muted-readable: #163d61;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, sans-serif;
  color: var(--ink);
  font-size: 16px;
  background: linear-gradient(160deg, #f8fdff 0%, #e7f5ff 45%, #d6ecff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.sky-layer,
.grid-glow,
.orb {
  position: fixed;
  pointer-events: none;
  z-index: -2;
}
.sky-layer {
  inset: 0;
  background: radial-gradient(circle at 16% 10%, rgba(255,255,255,.85) 0, rgba(255,255,255,0) 40%),
              radial-gradient(circle at 84% 18%, rgba(65,169,255,.35) 0, rgba(65,169,255,0) 45%);
}
.grid-glow {
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .45;
}
.orb {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(24px);
  animation: drift 16s ease-in-out infinite;
}
.orb-1 { top: -180px; left: -120px; background: rgba(66,172,255,.4); }
.orb-2 { right: -140px; top: 180px; background: rgba(30,113,220,.26); animation-delay: -8s; }

.floating-header {
  width: min(1180px, calc(100% - 24px));
  margin: 16px auto 0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 12px;
  z-index: 20;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.56);
  box-shadow: 0 12px 34px rgba(10,86,170,.18);
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: Outfit, sans-serif;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(140deg, #4bbdff 0%, #095ac0 100%);
  box-shadow: 0 0 0 3px rgba(255,255,255,.7), 0 10px 20px rgba(6,77,155,.3);
}
.logo-text {
  font-family: Outfit, sans-serif;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: .95rem;
  color: #124a86;
  text-shadow: 0 1px 0 #fff, 0 0 12px rgba(46,159,255,.5);
}
.menu { display: flex; gap: 10px; align-items: center; }
.menu a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: .94rem;
  padding: 9px 12px;
  border-radius: 999px;
  transition: .3s;
}
.menu a:hover { transform: translateY(-2px); background: rgba(45,160,255,.18); }
.menu-btn { color: #fff !important; background: linear-gradient(135deg, #2eafff, #0c62cc); }
.menu-toggle { display: none; background: transparent; border: none; font-size: 1.4rem; }

main { width: min(1180px, calc(100% - 24px)); margin: 28px auto 48px; }
.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
  min-height: 78vh;
  border-radius: 28px;
  padding: 26px;
  background: linear-gradient(90deg, rgba(244,250,255,.94) 0%, rgba(236,247,255,.86) 44%, rgba(236,247,255,.46) 100%),
              url("https://images.unsplash.com/photo-1526379095098-d400fd0bf935?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: 0 14px 30px rgba(8,76,142,.13);
}
.eyebrow { margin: 0; text-transform: uppercase; letter-spacing: .18em; font-size: .82rem; color: #006fc9; font-weight: 900; }
h1 {
  margin: 12px 0;
  font-family: Outfit, sans-serif;
  font-size: clamp(3.2rem, 6vw, 5rem);
  line-height: .98;
  color: #073c79;
  text-shadow: 0 2px 0 rgba(255,255,255,.62), 0 10px 26px rgba(6,67,129,.18);
}
.hero-copy { line-height: 1.75; max-width: 58ch; margin: 0; color: var(--readable); font-size: 1.13rem; font-weight: 600; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 12px; }
.btn {
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 20px;
  transition: .25s;
}
.primary { color: #fff; background: linear-gradient(140deg, #40b8ff, #0959bf); box-shadow: 0 10px 28px rgba(12,99,190,.35); }
.ghost { color: #0f5dad; border: 1px solid #93d2ff; background: rgba(255,255,255,.65); }
.btn:hover { transform: translateY(-2px) scale(1.02); }
.social-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.social-chips a {
  text-decoration: none;
  color: #0f5ead;
  font-weight: 700;
  border: 1px solid rgba(60,169,255,.45);
  background: rgba(255,255,255,.7);
  padding: 8px 12px;
  border-radius: 999px;
}

.hero-visual { position: relative; min-height: 520px; }
.hex-shell {
  width: min(430px, 96%);
  margin: 22px auto;
  padding: 10px;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  background: linear-gradient(135deg, rgba(76,190,255,.92), rgba(12,95,191,.85));
  box-shadow: 0 16px 40px rgba(8,75,149,.25), 0 0 30px rgba(76,184,255,.38);
  animation: pulseGlow 4s ease-in-out infinite;
}
.portrait {
  width: 100%;
  display: block;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  border: 5px solid rgba(255,255,255,.78);
}
.metric-card {
  position: absolute;
  padding: 12px 14px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 12px 24px rgba(7,82,151,.22);
}
.metric-card strong { display: block; font-family: Outfit, sans-serif; font-size: 1.2rem; color: #0d4f9f; }
.metric-card span { font-size: .84rem; color: #2d5e8c; }
.floating-a { top: 66px; left: 0; animation: floatY 4.5s ease-in-out infinite; }
.floating-b { bottom: 68px; right: 10px; animation: floatY 5.2s ease-in-out infinite; }

.section-block { margin-top: 42px; }
.section-head p { margin: 0; text-transform: uppercase; letter-spacing: .2em; font-size: .72rem; color: #1e79ca; font-weight: 800; }
.section-head h2 { margin: 8px 0 18px; font-family: Outfit, sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: #073c79; }
.profile-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.84), rgba(225,244,255,.78) 52%, rgba(176,224,255,.62)),
              linear-gradient(90deg, rgba(255,255,255,.24) 1px, transparent 1px),
              linear-gradient(rgba(255,255,255,.24) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78), 0 18px 36px rgba(7,86,159,.12);
}
.profile-lead {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 100%;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(7,60,121,.94), rgba(0,111,201,.82));
  color: #fff;
  box-shadow: 0 16px 32px rgba(7,86,159,.18);
}
.profile-lead p {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.72;
  font-weight: 700;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.profile-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  color: #eaf8ff;
  font-size: .82rem;
  font-weight: 900;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.25);
}
.profile-grid {
  display: grid;
  gap: 14px;
}
.profile-grid article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 12px 26px rgba(8,79,148,.1);
}
.profile-grid h3 {
  margin: 0 0 8px;
  color: #0b4f99;
  font-size: 1.08rem;
}
.profile-grid p {
  margin: 0;
  color: var(--muted-readable);
  line-height: 1.65;
  font-weight: 600;
}

#expertise {
  position: relative;
}

.capability-stage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(226,245,255,.8) 52%, rgba(178,224,255,.66)),
              linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px),
              linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 18px 36px rgba(7,86,159,.12);
}

.capability-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: 0 12px 26px rgba(8,79,148,.1);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
  animation: capabilityRise 5.6s ease-in-out infinite;
}

.capability-card::before {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #36a7ff, #0d4f9f, #7bd2ff);
  transform-origin: left;
  animation: capabilityLine 3.8s ease-in-out infinite;
}

.capability-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -48px;
  top: -48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54,167,255,.28), transparent 68%);
  transition: transform .4s ease, opacity .4s ease;
}

.capability-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #fff;
  font-family: Outfit, sans-serif;
  font-weight: 900;
  background: linear-gradient(145deg, #36a7ff, #0d4f9f);
  box-shadow: 0 10px 22px rgba(13,79,159,.22);
}

.capability-card h3 {
  margin: 0 0 10px;
  color: #073c79;
  font-size: 1.18rem;
  line-height: 1.24;
}

.capability-card p {
  margin: 0;
  color: var(--muted-readable);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 650;
}

.capability-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.92);
  box-shadow: 0 22px 38px rgba(8,79,148,.18);
}

.capability-card:hover::after {
  opacity: .85;
  transform: scale(1.25);
}

.capability-stage .capability-card:nth-child(2) { animation-delay: -1.1s; }
.capability-stage .capability-card:nth-child(3) { animation-delay: -2.2s; }
.capability-stage .capability-card:nth-child(4) { animation-delay: -3.3s; }

#projects .project-grid {
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(221,243,255,.78) 48%, rgba(173,219,255,.62)),
              linear-gradient(90deg, rgba(255,255,255,.24) 1px, transparent 1px),
              linear-gradient(rgba(255,255,255,.24) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  border: 1px solid rgba(255,255,255,.84);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.74), 0 18px 36px rgba(7,86,159,.12);
}

.service-grid,
.project-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.service-card,
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.9);
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(215,241,255,.7));
  padding: 20px;
  box-shadow: 0 12px 28px rgba(8,79,148,.14);
}
.service-card h3 { margin: 0 0 8px; font-size: 1.05rem; color: #145191; }
.service-card p { margin: 0; color: var(--muted-readable); line-height: 1.7; font-size: 1rem; font-weight: 600; }
.shine::after {
  content: "";
  position: absolute;
  inset: -120% auto auto -45%;
  width: 52%;
  height: 260%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.8) 45%, transparent 100%);
  transform: rotate(22deg);
  animation: sheen 4s linear infinite;
}
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.64);
  background: radial-gradient(circle at 20% 10%, rgba(255,255,255,.28), transparent 28%),
              radial-gradient(circle at 82% 84%, rgba(67,180,255,.22), transparent 30%);
  box-shadow: inset 0 0 28px rgba(255,255,255,.18), 0 0 0 rgba(54,167,255,0);
  pointer-events: none;
  z-index: 1;
  animation: cardGlow 4.8s ease-in-out infinite;
}
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,24,45,.18) 0%, rgba(4,24,45,.42) 42%, rgba(4,24,45,.82) 100%),
              var(--project-bg) center/cover no-repeat;
  transition: transform .6s ease, filter .6s ease;
  z-index: 0;
}
.project-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 390px;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  isolation: isolate;
  padding: 22px;
  border-color: rgba(255,255,255,.72);
  background: #d8eefc;
  transition: transform .3s ease, box-shadow .3s ease;
  animation: projectFloat 5.5s ease-in-out infinite;
}
.project-card span,
.project-copy,
.project-card small,
.project-card p,
.project-card em {
  position: relative;
  z-index: 2;
}
.project-card span {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: Outfit, sans-serif;
  font-size: 1.46rem;
  color: #ffffff;
  line-height: 1.15;
  text-align: center;
  align-self: center;
  text-shadow: 0 3px 16px rgba(0,0,0,.7);
}
.project-copy {
  display: grid;
  gap: 10px;
  width: min(100%, 286px);
  padding: 14px;
  border-radius: 14px;
  background: rgba(4, 24, 45, .62);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
  backdrop-filter: blur(10px);
  text-align: center;
}
.project-card small {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.28;
  font-family: Outfit, sans-serif;
}
.project-card p {
  margin: 0;
  color: rgba(255,255,255,.96);
  line-height: 1.58;
  font-size: .96rem;
  font-weight: 600;
}
.project-card em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 0;
  font-style: normal;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82rem;
  width: fit-content;
  min-width: 158px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.34);
  backdrop-filter: blur(8px);
}
.project-card:hover { transform: translateY(-8px); box-shadow: 0 22px 40px rgba(8,85,162,.3); }
.project-card:hover::before { transform: scale(1.08); filter: saturate(1.12) brightness(1.04); }
.project-grid .project-card:nth-child(2n) { animation-delay: -1.2s; }
.project-grid .project-card:nth-child(3n) { animation-delay: -2.2s; }
.project-grid .project-card:nth-child(4n) { animation-delay: -3.1s; }

.impact-section {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.84), rgba(225,244,255,.82) 50%, rgba(179,224,255,.68)),
              linear-gradient(90deg, rgba(255,255,255,.24) 1px, transparent 1px),
              linear-gradient(rgba(255,255,255,.24) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 18px 36px rgba(7,86,159,.12);
}
.impact-intro {
  max-width: 860px;
}
.impact-intro h3 {
  margin: 0 0 10px;
  font-family: Outfit, sans-serif;
  color: #073c79;
  font-size: 1.55rem;
  line-height: 1.25;
}
.impact-intro p {
  margin: 0;
  color: var(--muted-readable);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 600;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.impact-grid article,
.impact-lanes article {
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: 0 12px 26px rgba(8,79,148,.12);
}
.impact-grid strong {
  display: block;
  font-family: Outfit, sans-serif;
  color: #006fc9;
  font-size: 2.6rem;
  line-height: 1;
}
.impact-grid span {
  display: block;
  margin-top: 8px;
  color: var(--readable);
  font-weight: 700;
  line-height: 1.55;
}
.impact-lanes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.impact-lanes h3 {
  margin: 0 0 8px;
  color: #0b4f99;
  font-size: 1.08rem;
}
.impact-lanes p {
  margin: 0;
  color: var(--muted-readable);
  line-height: 1.65;
  font-weight: 600;
}

.contact-page {
  width: min(1180px, calc(100% - 24px));
  margin: 38px auto 28px;
}
.contact-hero {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
  min-height: 620px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(226,245,255,.82) 52%, rgba(178,224,255,.68)),
              linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px),
              linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 18px 36px rgba(7,86,159,.12);
}
.contact-lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(7,60,121,.95), rgba(0,111,201,.84));
  color: #fff;
  box-shadow: 0 18px 36px rgba(7,86,159,.2);
}
.contact-lead .eyebrow { color: #dff3ff; }
.contact-lead h1 {
  max-width: 9ch;
  color: #fff;
  text-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.contact-lead p:not(.eyebrow) {
  margin: 0;
  max-width: 48ch;
  color: rgba(255,255,255,.92);
  font-size: 1.08rem;
  line-height: 1.75;
  font-weight: 650;
}
.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.contact-social a {
  text-decoration: none;
  color: #fff;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 900;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.26);
}
.contact-panel {
  display: grid;
  align-content: center;
  gap: 14px;
}
.contact-method {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 20px;
  text-decoration: none;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 12px 26px rgba(8,79,148,.11);
  transition: transform .25s ease, box-shadow .25s ease;
}
.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 34px rgba(8,79,148,.18);
}
.contact-method span {
  color: #006fc9;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.contact-method strong {
  color: #073c79;
  font-size: 1.28rem;
  line-height: 1.2;
}
.contact-method small {
  color: var(--muted-readable);
  font-size: .95rem;
  font-weight: 700;
}
.primary-method {
  background: linear-gradient(145deg, #36a7ff, #0d4f9f);
}
.primary-method span,
.primary-method strong,
.primary-method small {
  color: #fff;
}
.compact-footer {
  margin-top: 0;
}

.site-footer {
  width: min(1180px, calc(100% - 24px));
  margin: 22px auto 34px;
  color: var(--readable);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr .75fr .85fr 1fr;
  gap: 22px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(226,245,255,.8) 52%, rgba(178,224,255,.66)),
              linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px),
              linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 18px 36px rgba(7,86,159,.12);
}
.footer-brand p {
  margin: 16px 0 0;
  color: var(--muted-readable);
  line-height: 1.7;
  font-weight: 600;
}
.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-links h3,
.footer-contact h3 {
  margin: 0 0 6px;
  color: #073c79;
  font-size: 1rem;
}
.footer-links a,
.footer-contact a,
.footer-bottom {
  color: var(--muted-readable);
  font-weight: 700;
}
.footer-links a,
.footer-contact a {
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: #006fc9;
  transform: translateX(3px);
}
.footer-actions,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-actions a,
.footer-social a {
  padding: 8px 10px;
  border-radius: 999px;
  color: #0b4f99;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(54,167,255,.28);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 0 6px;
  font-size: .92rem;
}
.reveal { opacity: 0; transform: translateY(30px); transition: .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 25px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 16px 40px rgba(8,75,149,.25), 0 0 30px rgba(76,184,255,.35); }
  50% { box-shadow: 0 18px 45px rgba(8,75,149,.32), 0 0 44px rgba(76,184,255,.5); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes sheen {
  0% { left: -55%; }
  100% { left: 145%; }
}
@keyframes cardGlow {
  0%, 100% {
    opacity: .72;
    box-shadow: inset 0 0 28px rgba(255,255,255,.18), 0 0 0 rgba(54,167,255,0);
  }
  50% {
    opacity: 1;
    box-shadow: inset 0 0 34px rgba(255,255,255,.28), 0 0 24px rgba(54,167,255,.24);
  }
}
@keyframes capabilityRise {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes capabilityLine {
  0%, 100% { transform: scaleX(.28); opacity: .58; }
  50% { transform: scaleX(1); opacity: 1; }
}
@keyframes projectFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background: linear-gradient(180deg, rgba(244,250,255,.95), rgba(236,247,255,.84)),
                url("https://images.unsplash.com/photo-1526379095098-d400fd0bf935?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
  }
  .hero-visual { min-height: 420px; }
  .profile-section { grid-template-columns: 1fr; }
  .capability-stage { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-hero { grid-template-columns: 1fr; min-height: auto; }
  .contact-lead h1 { max-width: 12ch; }
}
@media (max-width: 760px) {
  .menu-toggle { display: inline-block; }
  .menu {
    position: absolute;
    top: 58px;
    right: 8px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: min(240px, calc(100vw - 24px));
    padding: 12px;
    border-radius: 16px;
    background: rgba(255,255,255,.95);
    border: 1px solid #d2ebff;
  }
  .menu.open { display: flex; }
  .menu.static {
    display: flex;
    position: static;
    width: auto;
    border: none;
    padding: 0;
    flex-direction: row;
    background: transparent;
  }
  .logo-text { font-size: .8rem; }
  main { width: min(100% - 18px, 1180px); }
  .hero { padding: 20px; border-radius: 20px; }
  h1 { font-size: 3rem; }
  .hero-copy { font-size: 1rem; }
  .section-head h2 { font-size: 1.7rem; }
  .profile-section { padding: 14px; }
  .profile-lead { padding: 18px; }
  .profile-lead p { font-size: 1rem; }
  .capability-stage { grid-template-columns: 1fr; padding: 14px; }
  .capability-card { min-height: auto; }
  .project-card { min-height: 360px; }
  .project-card span { font-size: 1.24rem; }
  .project-card p { font-size: .96rem; }
  .project-copy { padding: 12px; width: 100%; }
  .footer-inner { grid-template-columns: 1fr; padding: 18px; }
  .footer-bottom { flex-direction: column; }
  .contact-page { width: min(100% - 18px, 1180px); margin-top: 24px; }
  .contact-hero { padding: 14px; border-radius: 22px; }
  .contact-lead { padding: 20px; }
  .contact-lead h1 { font-size: 2.7rem; }
  .contact-method { padding: 18px; }
  .contact-method strong { font-size: 1.08rem; word-break: break-word; }
}
