:root {
  --bg: #081a3a;
  --bg-soft: #0d2754;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: #f7fbff;
  --surface-muted: #eef4fb;
  --text: #f4f8ff;
  --text-dark: #13213f;
  --muted: #8ea2c9;
  --muted-dark: #5b6884;
  --cyan: #11d9ff;
  --cyan-deep: #06b7e6;
  --mint-soft: #9cf6ec;
  --rose-soft: #ffd4e2;
  --sky-soft: #c7ecff;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(19, 33, 63, 0.12);
  --shadow: 0 26px 80px rgba(1, 10, 32, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1380px, calc(100% - 3.5rem));
  --hero-glow: radial-gradient(circle at top left, rgba(156, 246, 236, 0.22), transparent 38%),
    radial-gradient(circle at 85% 15%, rgba(255, 212, 226, 0.14), transparent 28%),
    radial-gradient(circle at 70% 75%, rgba(199, 236, 255, 0.12), transparent 24%),
    linear-gradient(140deg, #081a3a 0%, #0f2d63 55%, #081a3a 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #f3f7fc 0%, #eef4fb 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow: clip;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 18px 18px;
  mix-blend-mode: soft-light;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.header-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
}

.site-header {
  width: var(--container);
  margin: 0 auto;
  padding: 0.9rem 1.1rem 0.9rem 1.4rem;
  border-radius: 999px;
  background: rgba(8, 26, 58, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 40px rgba(1, 10, 32, 0.24);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.nav-checkbox {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: white;
  padding: 0.2rem;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-name {
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -0.35rem;
}

.nav-toggle span::after {
  top: 0.35rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(17, 217, 255, 0.16);
  color: white;
  transform: translateY(-1px);
}

.button,
.button-secondary,
.button-ghost,
.button-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  border: none;
  font-weight: 700;
  cursor: pointer;
  appearance: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button,
.button-dark:hover {
  color: #041322;
  background: linear-gradient(135deg, var(--cyan) 0%, #8cf1ff 100%);
  box-shadow: 0 18px 32px rgba(17, 217, 255, 0.22);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.button-dark:hover {
  transform: translateY(-2px);
}

.button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.button-ghost {
  color: var(--text-dark);
  background: white;
  border: 1px solid rgba(19, 33, 63, 0.08);
}

.button-dark {
  color: white;
  background: linear-gradient(135deg, #081a3a 0%, #12326b 100%);
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  background: var(--hero-glow);
  color: white;
}

.hero {
  padding: 1rem 0 5rem;
}

.page-hero {
  padding: 1rem 0 4rem;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto auto 0 50%;
  width: min(720px, 90vw);
  aspect-ratio: 1;
  translate: -50% 45%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 217, 255, 0.15), transparent 60%);
  z-index: -1;
}

.hero-grid,
.page-hero-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.page-hero-grid {
  min-height: 320px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: #c6d6f5;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0.3rem rgba(17, 217, 255, 0.16);
}

.hero-copy,
.page-hero-copy {
  padding: 2rem 0;
  max-width: 760px;
}

.hero-copy h1,
.page-hero-copy h1 {
  margin: 1.15rem 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.page-hero-copy h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}

.hero-copy p,
.page-hero-copy p {
  margin: 0;
  max-width: 62ch;
  color: #d2ddf4;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.metric-chip {
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(156, 246, 236, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-chip strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.metric-chip span {
  color: #c6d6f5;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 0 0 1.25rem;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 1rem 0 0.5rem 0.75rem;
  border-radius: 44% / 18%;
  background: linear-gradient(180deg, rgba(156, 246, 236, 0.12), rgba(255, 212, 226, 0.06));
  filter: blur(16px);
  z-index: 0;
}

.hero-photo {
  width: 100%;
  margin-left: 0;
  max-width: 640px;
  aspect-ratio: 10 / 12;
  padding: 0.7rem;
  border-radius: 42% 42% 34% 34% / 24% 24% 20% 20%;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  position: relative;
  z-index: 1;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.floating-panel,
.visual-note,
.mini-stat,
.quote-card,
.impact-card {
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.quote-card,
.impact-card {
  position: absolute;
}

.floating-panel {
  grid-area: panel;
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(156, 246, 236, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}

.floating-panel img {
  width: 100%;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(156, 246, 236, 0.22), rgba(255, 212, 226, 0.14));
  padding: 0.85rem;
}

.floating-panel strong,
.visual-note strong,
.mini-stat strong,
.impact-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.floating-panel strong {
  margin-top: 1rem;
  font-size: 1.1rem;
}

.floating-panel span,
.visual-note span,
.mini-stat span,
.quote-card p,
.impact-card span {
  display: block;
  color: #d2ddf4;
  line-height: 1.6;
  font-size: 0.94rem;
}

.visual-note {
  grid-area: note;
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 212, 226, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  z-index: 1;
}

.visual-note strong {
  font-size: 2.2rem;
}

.mini-stat {
  grid-area: mini;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, #fffbfd 0%, #f1fcff 100%);
  color: var(--text-dark);
  min-width: 0;
  position: relative;
  z-index: 1;
}

.mini-stat span {
  color: var(--muted-dark);
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding-top: 0;
}

.section-shell {
  position: relative;
  border-radius: clamp(28px, 5vw, 42px);
  padding: clamp(0.75rem, 2vw, 1rem);
}

main > .section:last-child {
  padding-bottom: 3rem;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.section-header h2 {
  margin: 0.75rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text-dark);
}

.section-header p {
  margin: 0.75rem 0 0;
  max-width: 60ch;
  color: var(--muted-dark);
  line-height: 1.75;
}

.split-grid,
.story-grid,
.contact-grid,
.service-detail-grid,
.about-grid,
.blog-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.card-grid,
.stats-grid,
.team-grid,
.blog-grid,
.service-grid,
.feature-grid,
.contact-card-grid,
.timeline-grid {
  display: grid;
  gap: 1.3rem;
}

.service-grid,
.card-grid,
.blog-grid,
.team-grid,
.contact-card-grid,
.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid,
.timeline-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.surface-card,
.service-card,
.blog-card,
.story-card,
.team-card,
.contact-card,
.quote-card,
.impact-card,
.value-card,
.step-card,
.insight-card {
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid rgba(19, 33, 63, 0.08);
  box-shadow: 0 18px 44px rgba(17, 39, 82, 0.08);
}

.surface-card,
.service-card,
.story-card,
.team-card,
.contact-card,
.impact-card,
.value-card,
.step-card,
.insight-card {
  padding: 1.5rem;
}

.surface-card h3,
.service-card h3,
.story-card h3,
.team-card h3,
.contact-card h3,
.value-card h3,
.step-card h3,
.insight-card h3 {
  margin: 1rem 0 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

.surface-card p,
.service-card p,
.story-card p,
.team-card p,
.contact-card p,
.value-card p,
.step-card p,
.insight-card p,
.service-copy p,
.about-copy p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.75;
}

.service-card:hover,
.blog-card:hover,
.surface-card:hover,
.team-card:hover,
.contact-card:hover,
.value-card:hover,
.step-card:hover,
.insight-card:hover {
  transform: translateY(-6px);
}

.surface-card,
.service-card,
.blog-card,
.team-card,
.contact-card,
.value-card,
.step-card,
.insight-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.blog-card:hover,
.surface-card:hover,
.team-card:hover,
.contact-card:hover,
.value-card:hover,
.step-card:hover,
.insight-card:hover {
  box-shadow: 0 24px 60px rgba(17, 39, 82, 0.14);
  border-color: rgba(6, 183, 230, 0.28);
}

.icon-badge {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(17, 217, 255, 0.14), rgba(8, 26, 58, 0.08));
  color: var(--bg);
}

.icon-badge svg {
  width: 1.45rem;
  height: 1.45rem;
}

.tag-list,
.meta-list,
.contact-list,
.footer-links,
.stat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.tag-list li,
.meta-list li,
.contact-list li,
.stat-list li {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--text-dark);
  font-size: 0.92rem;
}

.highlight-band {
  background: linear-gradient(180deg, rgba(8, 26, 58, 0.02), rgba(17, 217, 255, 0.06));
}

.image-card,
.story-image,
.page-hero-photo,
.wide-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-card img,
.story-image img,
.page-hero-photo img,
.wide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-stack {
  display: grid;
  gap: 1.3rem;
}

.story-card strong,
.stat-card strong,
.team-role,
.blog-card time,
.contact-card strong,
.value-card strong,
.step-card strong,
.insight-card strong,
.quote-card strong {
  display: inline-block;
  color: var(--bg);
  font-weight: 700;
}

.stat-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, white, #edf6ff);
  border: 1px solid rgba(19, 33, 63, 0.08);
}

.stat-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
}

.stat-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted-dark);
}

.service-card ul,
.service-copy ul,
.contact-card ul,
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.service-card li,
.service-copy li,
.contact-card li,
.check-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-dark);
}

.service-card li::before,
.service-copy li::before,
.contact-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--cyan-deep);
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.35rem;
}

.blog-card time {
  margin-bottom: 0.6rem;
  color: var(--cyan-deep);
  font-size: 0.92rem;
}

.blog-card h3 {
  margin: 0.2rem 0 0.65rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.blog-card p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.7;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--bg);
  font-weight: 700;
}

.inline-link:hover {
  color: var(--cyan-deep);
}

.quote-card {
  right: 2rem;
  bottom: -1.2rem;
  width: min(360px, calc(100% - 2rem));
  padding: 1.3rem;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(240, 249, 255, 0.92));
  border: 1px solid rgba(19, 33, 63, 0.08);
}

.quote-card p {
  color: var(--text-dark);
}

.quote-card strong {
  margin-top: 0.75rem;
}

.impact-card {
  left: 1.2rem;
  bottom: 1.2rem;
  padding: 1rem 1.15rem;
  background: rgba(8, 26, 58, 0.84);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.impact-card span {
  color: rgba(255, 255, 255, 0.76);
}

.page-hero-photo {
  min-height: 360px;
  position: relative;
}

.page-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 26, 58, 0.1), rgba(8, 26, 58, 0.3));
}

.page-hero-photo img {
  min-height: 360px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.team-role {
  margin: 0.75rem 0 0.65rem;
  color: var(--cyan-deep);
  font-size: 0.95rem;
}

.value-card strong,
.step-card strong,
.insight-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(17, 217, 255, 0.14);
}

.contact-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 2.5rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-copy {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.contact-copy h3,
.contact-notes h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

.contact-copy p,
.contact-point p,
.contact-notes p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.75;
}

.contact-points,
.contact-notes {
  display: grid;
  gap: 1.3rem;
}

.contact-notes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-point,
.contact-notes article {
  padding-top: 1rem;
  border-top: 1px solid rgba(19, 33, 63, 0.12);
}

.contact-point strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(19, 33, 63, 0.12);
  background: #f9fbfe;
  color: var(--text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(6, 183, 230, 0.56);
  box-shadow: 0 0 0 4px rgba(17, 217, 255, 0.14);
  background: white;
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.small-note {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.7;
  font-size: 0.95rem;
}

.cta-band {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #081a3a 0%, #113067 100%);
  color: white;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -90px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 217, 255, 0.3), transparent 65%);
}

.cta-band h2 {
  position: relative;
  margin: 0 0 0.8rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.cta-band p {
  position: relative;
  margin: 0;
  max-width: 60ch;
  color: #d2ddf4;
  line-height: 1.7;
}

.cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.site-footer {
  margin-top: 0;
  padding: 3.25rem 0;
  background: #071931;
}

.footer-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: none;
  color: white;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}

.footer-shell p {
  margin: 0.8rem 0 0;
  color: #b9cae7;
  line-height: 1.75;
}

.footer-links {
  justify-content: end;
  align-content: start;
}

.footer-links a {
  color: #dce8ff;
  padding: 0.4rem 0;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  color: #92a8cd;
  font-size: 0.94rem;
}

.reveal {
  opacity: 1;
  transform: none;
  animation: rise-in 0.8s ease both;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.floating-panel,
.visual-note,
.mini-stat,
.impact-card,
.quote-card {
  animation: float 7s ease-in-out infinite;
}

.floating-panel {
  animation-delay: 0s;
}

.mini-stat {
  animation-delay: 1.2s;
}

.visual-note {
  animation-delay: 2s;
}

.impact-card {
  animation-delay: 0.8s;
}

.quote-card {
  animation-delay: 1.8s;
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .story-grid,
  .contact-grid,
  .service-detail-grid,
  .about-grid,
  .blog-layout,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .card-grid,
  .blog-grid,
  .team-grid,
  .feature-grid,
  .contact-card-grid,
  .pillars,
  .stats-grid,
  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    padding-left: 0;
  }

  .contact-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 920px) {
  .header-wrap {
    padding: 0.85rem 0;
  }

  .site-header {
    border-radius: 24px;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(8, 26, 58, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-checkbox:checked ~ .nav-panel {
    display: flex;
  }

  .nav-checkbox:checked + .nav-toggle span {
    background: transparent;
  }

  .nav-checkbox:checked + .nav-toggle span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-checkbox:checked + .nav-toggle span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a,
  .nav-panel .button {
    justify-content: center;
  }

  .hero,
  .page-hero {
    padding-bottom: 3.8rem;
  }

  .hero-copy,
  .page-hero-copy {
    padding-top: 1rem;
  }

  .hero-visual {
    display: flex;
    padding-top: 0;
    justify-content: center;
  }

  .hero-visual::before {
    inset: 1rem 0 0 0;
    border-radius: 42% / 18%;
  }

  .hero-photo,
  .floating-panel,
  .mini-stat,
  .visual-note,
  .quote-card,
  .impact-card {
    position: relative;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 1rem;
  }

  .hero-photo {
    width: 100%;
    margin-left: 0;
    max-width: 100%;
    aspect-ratio: 4 / 5;
    padding: 0.55rem;
    border-radius: 42% 42% 34% 34% / 22% 22% 18% 18%;
  }

  .hero-photo img {
    min-height: 100%;
  }

  main > .section:last-child {
    padding-bottom: 2.5rem;
  }

  .hero-metrics,
  .field-grid,
  .service-grid,
  .card-grid,
  .blog-grid,
  .team-grid,
  .feature-grid,
  .contact-card-grid,
  .pillars,
  .stats-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }

  .contact-notes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0.75rem 0.85rem 0.75rem 1rem;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-tagline {
    display: none;
  }

  .hero-copy h1,
  .page-hero-copy h1,
  .section-header h2,
  .cta-band h2 {
    letter-spacing: -0.04em;
  }

  .section,
  .hero,
  .page-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .cta-band,
  .surface-card,
  .service-card,
  .story-card,
  .team-card,
  .contact-card,
  .value-card,
  .step-card,
  .insight-card,
  .stat-card {
    padding: 1.2rem;
  }

  .footer-shell {
    padding: 0;
  }
}