:root {
  --bg: #ffffff;
  --ink: #0c1b2a;
  --navy: #003060;
  --accent: #30cccc;
  --muted: #585858;
  --wash: #f3f6f8;
  --line: #d7dee4;
  --shadow:
    0 0 0 1px rgba(12, 27, 42, 0.06),
    0 1px 2px -1px rgba(12, 27, 42, 0.06),
    0 2px 4px 0 rgba(12, 27, 42, 0.04);
  --sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { text-wrap: balance; margin: 0; }
p { text-wrap: pretty; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  width: min(1152px, calc(100% - 40px));
  margin-inline: auto;
}
@media (min-width: 640px) {
  .wrap { width: min(1152px, calc(100% - 64px)); }
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.logo img { height: 44px; width: auto; outline: none; }
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; row-gap: 4px; }
  .logo img { height: 36px; }
  .nav { width: 100%; justify-content: flex-end; }
  .nav a { padding: 0 8px; }
}
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--muted);
}
.nav a:hover,
.nav a.is-current { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.btn:hover { background: #00264d; }
.btn-lg { min-height: 48px; padding: 10px 24px; border-radius: 10px; }
.btn-outline {
  background: transparent;
  color: var(--ink);
}
.btn-outline:hover { background: var(--wash); }
.nav .btn { color: #fff; padding: 0 16px; }

.kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.lede {
  margin: 20px 0 0;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
}
.muted { color: var(--muted); }

.hero {
  display: grid;
  gap: 40px;
  padding: 48px 0 48px;
  align-items: center;
}
.hero h1 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--navy);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-actions .btn-outline {
  height: auto;
  white-space: normal;
  text-align: center;
  padding: 12px 20px;
}
@media (min-width: 1024px) {
  .hero { grid-template-columns: 1fr 1fr; gap: 64px; padding-top: 80px; }
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.carousel-frame {
  position: relative;
  aspect-ratio: 16 / 9;
}
@media (min-width: 1024px) {
  .carousel-frame { aspect-ratio: 4 / 3; }
}
.carousel-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 500ms ease-out;
}
.carousel-frame img.is-active { opacity: 1; }
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-dots {
  position: absolute;
  inset-inline: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}
.carousel-dots button.is-active {
  width: 24px;
  background: var(--navy);
}

.band {
  border-block: 1px solid var(--line);
  background: var(--wash);
  padding: 56px 0;
}
.trio {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .trio { grid-template-columns: repeat(3, 1fr); }
}
.trio svg { color: var(--accent); }
.trio h2 { margin-top: 12px; font-size: 1.125rem; color: var(--navy); }
.trio p { margin: 8px 0 0; font-size: 0.875rem; color: var(--muted); }

.section { padding: 64px 0; }
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.section h2, .page h1 { color: var(--navy); }
.section-head h2 { margin-top: 8px; font-size: 1.875rem; }

.cards {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 640px) {
  .cards { grid-template-columns: 1fr 1fr; }
}
.card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.card h3 { margin-top: 8px; font-size: 1rem; }
.card p { margin: 8px 0 0; font-size: 0.875rem; color: var(--muted); flex: 1; }
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.price { margin: 0; font-size: 1.125rem; font-weight: 600; color: var(--navy); }
.link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  text-underline-offset: 4px;
}

.navy-band {
  border-block: 1px solid var(--line);
  background: var(--navy);
  color: #fff;
  padding: 64px 0;
}
.navy-band .kicker { color: var(--accent); }
.navy-band h2 { margin-top: 12px; font-size: 1.875rem; color: #fff; }
.navy-band p { margin: 16px 0 0; max-width: 40rem; color: rgba(255,255,255,0.85); }
.navy-band ol { margin: 24px 0 0; padding: 0; list-style: none; max-width: 40rem; }
.navy-band li { display: flex; gap: 12px; margin-top: 8px; font-size: 0.875rem; }
.navy-band li span { color: var(--accent); font-weight: 500; }

.cta h2 { font-size: 1.875rem; }
.cta p { margin: 12px 0 0; max-width: 36rem; color: var(--muted); }
.page .cta-actions { margin-top: 40px; }

.page { padding: 56px 0 80px; max-width: 48rem; }
.page.wide { max-width: 72rem; }
.page h1 { margin-top: 12px; font-size: clamp(2rem, 4vw, 3rem); }
.page > p { margin: 16px 0 0; color: var(--muted); }
.page .btn { margin-top: 24px; }

.group { margin-top: 56px; }
.group h2 { font-size: 1.5rem; }
.list {
  margin-top: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.list article {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-top: 1px solid var(--line);
}
.list article:first-child { border-top: 0; }
.list h3 { font-size: 1rem; font-weight: 500; }
.list p { margin: 4px 0 0; font-size: 0.875rem; color: var(--muted); }
.list-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .list article {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.stack { display: grid; gap: 16px; margin-top: 40px; }
.stack-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-decoration: none;
}
.stack-item svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.stack-item .label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--muted); }
.stack-item .value { display: block; margin-top: 4px; font-size: 1.125rem; font-weight: 600; color: var(--navy); }
.stack-item h2 { font-size: 1rem; color: var(--navy); }
.stack-item p { margin: 4px 0 0; font-size: 0.875rem; color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--wash);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.site-footer img { height: 36px; width: auto; outline: none; }
.site-footer p { margin: 12px 0 0; font-size: 0.875rem; color: var(--muted); }
.site-footer nav, .site-footer .contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--muted);
}
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--ink); }
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-brand { max-width: 20rem; }
}
