:root {
  color-scheme: light;
  --ink: #0b1f35;
  --ink-soft: #142841;
  --sea: #1f6fb2;
  --sea-dark: #1b5b95;
  --sand: #f7941d;
  --sand-deep: #d97f12;
  --cloud: #f5f7fa;
  --paper: #ffffff;
  --silver: #c9ced6;
  --shadow: 0 24px 60px rgba(11, 31, 53, 0.22);
  --radius: 24px;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Space Grotesk", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: radial-gradient(circle at top left, rgba(31, 111, 178, 0.18), transparent 55%),
    radial-gradient(circle at 20% 20%, rgba(247, 148, 29, 0.16), transparent 50%),
    #f4f6f9;
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.6;
}

.page {
  width: 100%;
  padding: 0 0 48px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.ticker {
  background: #0b1f35;
  color: var(--silver);
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 206, 214, 0.25);
}

.ticker-track {
  display: flex;
  gap: 32px;
  padding: 10px 24px;
  white-space: nowrap;
  animation: tickerScroll 26s linear infinite;
}

.ticker-track span {
  font-size: 0.82rem;
  letter-spacing: 0.4px;
}

.top {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 10px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(11, 31, 53, 0.96), rgba(31, 111, 178, 0.18));
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(11, 31, 53, 0.28);
  border: none;
  gap: 18px;
  overflow: hidden;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 80px;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.nav .logo-text {
  color: var(--cloud);
}

.nav-links {
  display: flex;
  gap: 20px;
  padding: 8px 16px;
  background: rgba(201, 206, 214, 0.18);
  border-radius: 999px;
  border: 1px solid rgba(201, 206, 214, 0.28);
}

.nav-links a {
  text-decoration: none;
  color: var(--cloud);
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(247, 148, 29, 0.28);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-badge {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff1d6;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(247, 148, 29, 0.32);
  border: 1px solid rgba(247, 148, 29, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
}

.badge-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(201, 206, 214, 0.35);
  background: rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cloud);
  border-radius: 999px;
}

.nav-menu {
  display: none;
}

.nav-menu[data-open="true"] {
  display: grid;
  gap: 16px;
  padding: 18px;
  margin-top: 12px;
  border-radius: 24px;
  background: rgba(11, 31, 53, 0.96);
  border: 1px solid rgba(201, 206, 214, 0.2);
  box-shadow: var(--shadow);
}

.nav-menu-links {
  display: grid;
  gap: 12px;
}

.nav-menu-links a {
  text-decoration: none;
  color: var(--cloud);
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(201, 206, 214, 0.15);
}

.nav-menu-cta {
  display: grid;
  gap: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 27, 43, 0.18);
}

.button-primary {
  background: var(--sand);
  color: #111;
}

.button-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(11, 31, 53, 0.25);
}

.hero {
  background: linear-gradient(135deg, #0b1f35, #143a5d 65%, #1f6fb2);
  color: var(--cloud);
  margin-top: 10px;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  padding: 72px 24px 56px;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3vw, 3.3rem);
  margin-bottom: 16px;
  line-height: 1.1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sea-dark);
  margin-bottom: 12px;
}

.hero .eyebrow {
  color: rgba(201, 206, 214, 0.9);
}

.lead {
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 24px;
}

.hero .lead {
  color: rgba(201, 206, 214, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  gap: 40px;
  font-size: 0.95rem;
}

.meta-label {
  font-weight: 600;
  color: var(--sea-dark);
}

.hero .meta-label {
  color: rgba(201, 206, 214, 0.9);
}

.hero .hero-meta p {
  color: var(--cloud);
}

.hero .button-ghost {
  color: var(--cloud);
  border-color: rgba(201, 206, 214, 0.6);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-visual img {
  width: min(100%, 460px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  animation: floatIn 0.8s ease-out both;
}

.floating-card {
  position: absolute;
  bottom: 18px;
  right: -12px;
  max-width: 240px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  padding: 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 206, 214, 0.7);
  animation: riseUp 1s ease-out both 0.2s;
}

.card-title {
  font-weight: 600;
  margin-bottom: 6px;
}

section {
  margin-top: 60px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 206, 214, 0.6);
  animation: fadeIn 0.8s ease-out both;
}

.service-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.visual-card {
  background: var(--paper);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 206, 214, 0.6);
  display: grid;
}

.visual-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.visual-card figcaption {
  padding: 18px 20px 22px;
}

.visual-card h3 {
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.mission-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.mission-visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mission-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
  margin-bottom: 16px;
}

.mission-points {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.mission-points h4 {
  font-weight: 600;
  margin-bottom: 6px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.insight-card {
  background: var(--paper);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 200px 1fr;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 206, 214, 0.6);
}

.insight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.insight-card div {
  padding: 18px 20px 22px;
}

.insight-card h3 {
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.contact-card {
  background: var(--ink);
  color: var(--cloud);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-card a {
  color: var(--sand);
  text-decoration: none;
}

.contact-card p {
  margin-top: 10px;
}

.contact-highlight {
  background: linear-gradient(135deg, var(--ink), var(--sea));
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.contact-actions .button-ghost {
  border-color: rgba(201, 206, 214, 0.5);
  color: var(--cloud);
}

.contact-actions .button-primary {
  color: #111;
}

.contact-badge {
  margin-top: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(201, 206, 214, 0.2);
  display: inline-flex;
  font-weight: 600;
}

.footer {
  margin-top: 70px;
  background: #0b1f35;
  color: var(--cloud);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer .logo-text {
  color: var(--cloud);
}

.footer p {
  color: rgba(201, 206, 214, 0.92);
}

.footer-note {
  font-size: 0.9rem;
  color: rgba(201, 206, 214, 0.9);
}

@keyframes floatIn {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes riseUp {
  from {
    transform: translateY(24px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    transform: translateY(16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    gap: 16px;
    border-radius: 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-meta {
    flex-direction: column;
    gap: 10px;
  }

  .floating-card {
    position: static;
    margin-top: 16px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-badge {
    text-align: center;
  }

  .hero {
    padding-top: 40px;
  }

  .contact-card {
    padding: 22px;
  }
}
