/* Uplift — brand theme (logo palette: royal, coral, orange, mint) */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,600&display=swap");

:root {
  --royal: #001a99;
  --royal-mid: #0026cc;
  --royal-soft: rgba(0, 26, 153, 0.12);
  --coral: #f0544f;
  --coral-soft: rgba(240, 84, 79, 0.15);
  --orange: #ffa500;
  --orange-soft: rgba(255, 165, 0, 0.2);
  --mint: #4ade80;
  --mint-dark: #22c55e;
  --mint-soft: rgba(74, 222, 128, 0.22);
  --page-bg: #eef1f8;
  --page-bg-deep: #e2e8f4;
  --surface: #ffffff;
  --ink: #0c1222;
  --ink-muted: rgba(12, 18, 34, 0.72);
  --white: #ffffff;
  /* Light chrome so royal-blue logo + type stay crisp */
  --header-bg: #ffffff;
  --header-bg2: #f5f7fc;
  --header-bg-dark: #020617;
  --header-bg-dark2: #0a1628;
  --shadow-soft: 0 18px 50px rgba(0, 26, 153, 0.12);
  --radius-lg: 28px;
  --radius-full: 999px;
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Legacy aliases (inline HTML / structure) */
  --sky: var(--royal);
  --sky-deep: var(--royal-mid);
  --sun: var(--orange);
  --sun-soft: var(--orange-soft);
  --leaf: var(--mint);
  --leaf-dark: var(--mint-dark);
  --cream: var(--page-bg);
  --chalkboard: #050a1a;
  --chalkboard-frame: var(--royal-mid);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--page-bg);
  background-image:
    radial-gradient(ellipse 100% 70% at 0% 0%, var(--royal-soft), transparent 50%),
    radial-gradient(ellipse 80% 60% at 100% 10%, var(--coral-soft), transparent 45%),
    radial-gradient(ellipse 60% 50% at 50% 100%, var(--mint-soft), transparent 55%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--royal);
}

h1 {
  font-size: clamp(2.1rem, 1.4rem + 2.5vw, 3.25rem);
  margin: 0 0 0.5em;
}

h2 {
  font-size: clamp(1.55rem, 1.2rem + 1.2vw, 2rem);
  margin: 0 0 0.65em;
}

h3 {
  font-size: 1.15rem;
  margin: 0 0 0.4em;
}

p {
  margin: 0 0 1em;
  color: var(--ink-muted);
}

p:last-child {
  margin-bottom: 0;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    radial-gradient(ellipse 90% 120% at 100% -40%, rgba(255, 165, 0, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 100% at 0% 0%, rgba(0, 38, 204, 0.08), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--header-bg2) 100%);
  backdrop-filter: blur(16px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 12px 40px rgba(0, 26, 153, 0.09);
  overflow: hidden;
}

.site-header__accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--royal) 0%,
    var(--royal-mid) 18%,
    var(--coral) 42%,
    var(--orange) 62%,
    var(--mint) 88%,
    var(--royal-mid) 100%
  );
  background-size: 200% 100%;
  animation: site-header-shimmer 14s linear infinite;
}

@keyframes site-header-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header__accent {
    animation: none;
    background-position: 50% 50%;
  }
}

.site-header__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.4rem 1rem;
  border-bottom: 1px solid rgba(0, 26, 153, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(245, 247, 252, 0.9) 100%);
}

.site-header__meta-text {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  white-space: nowrap;
}

.site-header__meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.35);
  flex-shrink: 0;
}

.site-header__meta-dot--end {
  background: var(--mint);
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.35);
}

.site-header__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__inner::before {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 220px;
  height: 220px;
  top: -120px;
  right: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 84, 79, 0.07) 0%, transparent 70%);
}

.site-header__wave {
  line-height: 0;
  color: var(--page-bg);
  margin-top: -1px;
}

.site-header__wave-svg {
  display: block;
  width: 100%;
  height: 18px;
  opacity: 0.95;
  filter: drop-shadow(0 -2px 0 rgba(255, 165, 0, 0.35));
}

@media (max-width: 380px) {
  .site-header__meta-text {
    letter-spacing: 0.12em;
    font-size: 0.62rem;
  }
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding: 0.45rem 1rem 0.45rem 0.65rem;
  margin-left: -0.65rem;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid rgba(0, 26, 153, 0.1);
  box-shadow:
    0 2px 16px rgba(0, 26, 153, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition:
    border-color 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    transform 0.25s var(--ease-out);
}

.brand::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--royal-soft), rgba(255, 165, 0, 0.35), var(--mint-soft));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  pointer-events: none;
  z-index: -1;
}

.brand:hover {
  text-decoration: none;
  border-color: rgba(0, 26, 153, 0.18);
  box-shadow:
    0 8px 28px rgba(0, 26, 153, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  transform: translateY(-1px);
}

.brand:hover::after {
  opacity: 1;
}

.brand__logo {
  height: clamp(64px, 5vw + 52px, 100px);
  width: auto;
  max-width: min(440px, 88vw);
  object-fit: contain;
  object-position: left center;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid rgba(0, 26, 153, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, var(--header-bg2) 100%);
  box-shadow: 0 2px 10px rgba(0, 26, 153, 0.06);
  cursor: pointer;
  z-index: 101;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s var(--ease-out);
}

.nav-toggle:hover {
  border-color: rgba(240, 84, 79, 0.35);
  box-shadow: 0 4px 16px rgba(240, 84, 79, 0.12);
}

.nav-toggle:active {
  transform: scale(0.96);
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 3px;
  margin: 0 auto;
  background: var(--royal);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav {
  position: fixed;
  inset: 0;
  top: 0;
  padding: clamp(7.5rem, 26vw, 10rem) 1.5rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--header-bg2) 55%, var(--page-bg) 100%);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0, 26, 153, 0.08);
}

.nav--open {
  transform: translateX(0);
}

.nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav__link {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--royal);
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s,
    transform 0.2s var(--ease-out);
}

.nav__link:hover {
  background: var(--royal-soft);
  text-decoration: none;
  color: var(--royal-mid);
}

.nav__link--active {
  background: linear-gradient(145deg, #ffd078 0%, var(--orange) 45%, #ff9f1a 100%);
  color: var(--ink);
  box-shadow:
    0 4px 0 rgba(255, 140, 0, 0.45),
    0 6px 16px rgba(255, 165, 0, 0.25);
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    position: static;
    inset: auto;
    padding: 0;
    background: transparent;
    transform: none;
    overflow: visible;
  }

  .nav__links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.2rem;
    padding: 0.4rem 0.55rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 26, 153, 0.1);
    border-radius: var(--radius-full);
    box-shadow:
      0 2px 12px rgba(0, 26, 153, 0.06),
      0 1px 0 rgba(255, 255, 255, 0.95) inset;
  }

  .nav__link {
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
  }

  .nav__link:hover {
    background: rgba(0, 26, 153, 0.08);
    transform: translateY(-1px);
  }

  .nav__link--active {
    box-shadow:
      0 3px 0 rgba(255, 140, 0, 0.5),
      0 8px 20px rgba(255, 165, 0, 0.22);
  }
}

/* —— Page shell —— */
.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.page--narrow {
  max-width: 720px;
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--surface) 0%, var(--page-bg-deep) 45%, rgba(255, 165, 0, 0.08) 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(0, 26, 153, 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--mint);
  opacity: 0.25;
  top: -60px;
  right: -40px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid var(--coral);
  bottom: -30px;
  left: 8%;
  opacity: 0.65;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 880px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2.5rem;
  }
}

.hero__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--orange);
  color: var(--header-bg);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(145deg, var(--royal-mid), var(--royal));
  color: var(--white);
  box-shadow: 0 6px 0 rgba(0, 26, 153, 0.35);
}

.btn--secondary {
  background: var(--surface);
  color: var(--coral);
  border: 3px solid var(--coral);
  box-shadow: 0 4px 0 rgba(240, 84, 79, 0.25);
}

.hero__visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 26, 153, 0.18);
  border: 4px solid var(--white);
}

/* Home: multi-image mosaic hero */
.hero--mosaic {
  background: linear-gradient(
    130deg,
    #dbeafe 0%,
    #e8e4ff 28%,
    #fce7f3 58%,
    #fff4e6 100%
  );
  border: 1px solid rgba(0, 26, 153, 0.1);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
}

.hero--mosaic::before {
  width: min(320px, 70vw);
  height: min(320px, 70vw);
  background: radial-gradient(circle, rgba(240, 84, 79, 0.12) 0%, transparent 68%);
  top: -100px;
  left: -80px;
  opacity: 1;
}

.hero--mosaic::after {
  width: 160px;
  height: 160px;
  border-width: 4px;
  border-color: var(--royal);
  opacity: 0.22;
  bottom: -36px;
  left: auto;
  right: 12%;
}

.hero-mosaic__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.25rem);
}

@media (min-width: 1024px) {
  .hero-mosaic__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.22fr);
    align-items: center;
    gap: 2rem 2.5rem;
  }
}

.hero-mosaic__ribbons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin-bottom: 1rem;
}

.hero-mosaic__ribbon {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.5rem 1.15rem;
  border-radius: 6px;
  transform: skewX(-11deg);
  box-shadow: 0 5px 16px rgba(0, 26, 153, 0.18);
}

.hero-mosaic__ribbon span {
  display: inline-block;
  transform: skewX(11deg);
}

.hero-mosaic__ribbon--royal {
  background: linear-gradient(135deg, var(--royal-mid) 0%, var(--royal) 100%);
}

.hero-mosaic__ribbon--pink {
  background: linear-gradient(135deg, #f472b6 0%, #db2777 100%);
}

.hero-mosaic__lede strong {
  color: var(--royal);
  font-weight: 800;
}

.hero--mosaic .hero__badge {
  background: linear-gradient(145deg, #ffb703, var(--orange));
  color: var(--ink);
  box-shadow: 0 3px 0 rgba(217, 119, 6, 0.35);
}

.hero-mosaic__collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.7rem;
  position: relative;
  isolation: isolate;
}

.hero-mosaic__collage::before {
  content: "";
  position: absolute;
  inset: -6px -4px -10px -4px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(0, 26, 153, 0.06), rgba(236, 72, 153, 0.08));
  z-index: -1;
  pointer-events: none;
}

.hero-mosaic__card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid var(--white);
  background: var(--white);
  box-shadow:
    0 14px 36px rgba(0, 26, 153, 0.14),
    0 1px 0 rgba(255, 255, 255, 1) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.hero-mosaic__card:hover {
  box-shadow:
    0 22px 48px rgba(0, 26, 153, 0.18),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}

.hero-mosaic__card--feature {
  grid-column: 1 / -1;
  min-height: clamp(200px, 42vw, 300px);
  padding: 0.35rem;
}

.hero-mosaic__card--b {
  transform: rotate(-2deg);
}

.hero-mosaic__card--c {
  transform: rotate(2deg);
  margin-top: 0.25rem;
}

@media (min-width: 640px) {
  .hero-mosaic__card--b,
  .hero-mosaic__card--c {
    min-height: 200px;
  }

  .hero-mosaic__card--c {
    margin-top: 0.5rem;
  }
}

.hero-mosaic__card:hover.hero-mosaic__card--b {
  transform: rotate(-1deg) translateY(-5px);
}

.hero-mosaic__card:hover.hero-mosaic__card--c {
  transform: rotate(1deg) translateY(-5px);
}

.hero-mosaic__card--feature:hover {
  transform: translateY(-4px);
}

.hero-mosaic__card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (max-width: 1023px) {
  .hero-mosaic__collage {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mosaic__card,
  .hero-mosaic__card--b,
  .hero-mosaic__card--c {
    transform: none;
  }

  .hero-mosaic__card:hover,
  .hero-mosaic__card:hover.hero-mosaic__card--b,
  .hero-mosaic__card:hover.hero-mosaic__card--c,
  .hero-mosaic__card--feature:hover {
    transform: none;
  }
}

/* —— Sections —— */
.section {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.section__title {
  text-align: center;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--surface);
  border-radius: 22px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 10px 36px rgba(0, 26, 153, 0.08);
  border: 1px solid rgba(0, 26, 153, 0.06);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 26, 153, 0.14);
}

.card h3 {
  color: var(--royal);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.card__icon--sun {
  background: var(--orange-soft);
}

.card__icon--leaf {
  background: var(--mint-soft);
}

.card__icon--sky {
  background: var(--royal-soft);
}

/* Brand story strip */
.chalk-strip {
  margin-top: 3rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--chalkboard) 0%, #0f1a3a 100%);
  color: var(--white);
  border: 3px solid var(--royal-mid);
  box-shadow:
    inset 0 0 0 1px rgba(74, 222, 128, 0.2),
    var(--shadow-soft);
  position: relative;
}

.chalk-strip h2 {
  color: var(--orange);
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
}

.chalk-strip h3 {
  color: var(--mint);
}

.chalk-strip p {
  color: rgba(255, 255, 255, 0.88);
}

/* Overlapping circles decoration */
.blob-cluster {
  position: relative;
  min-height: 200px;
  margin-top: 2rem;
}

.blob {
  position: absolute;
  border-radius: 50%;
  border: 5px solid var(--white);
}

.blob--yellow {
  width: min(320px, 85vw);
  height: min(320px, 85vw);
  background: linear-gradient(160deg, var(--orange), #ff8c00);
  right: 0;
  top: 0;
  z-index: 1;
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.blob--green {
  width: min(280px, 78vw);
  height: min(280px, 78vw);
  background: linear-gradient(145deg, var(--royal-mid), var(--royal));
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.blob h3 {
  color: inherit;
  font-size: 1.1rem;
  margin-bottom: 0.5em;
}

.blob p {
  color: rgba(12, 18, 34, 0.88);
  font-size: 0.95rem;
  margin: 0;
}

.blob--green p {
  color: rgba(255, 255, 255, 0.92);
}

.blob--green h3 {
  color: var(--white);
}

@media (min-width: 720px) {
  .blob-cluster {
    min-height: 340px;
  }
}

/* Blog list */
.blog-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-list__item {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 8px 28px rgba(0, 26, 153, 0.07);
  border: 1px solid rgba(0, 26, 153, 0.06);
  display: grid;
  gap: 0.35rem;
}

.blog-list__meta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--coral);
}

.blog-list__item a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--royal);
}

.blog-list__item a:hover {
  text-decoration: underline;
  color: var(--royal-mid);
}

/* Contact */
.form {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--royal);
}

.form input,
.form textarea,
.form select {
  font: inherit;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  border: 2px solid rgba(0, 26, 153, 0.2);
  background: var(--surface);
  color: var(--ink);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--royal);
  box-shadow: 0 0 0 4px var(--royal-soft);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  font-weight: 700;
}

.form-status--ok {
  background: var(--mint-soft);
  color: #14532d;
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  background: linear-gradient(180deg, var(--header-bg2) 0%, var(--header-bg) 100%);
  color: var(--ink-muted);
  padding: 2.5rem 1.25rem 1rem;
  border-top: 3px solid var(--orange);
  box-shadow: 0 -6px 32px rgba(0, 26, 153, 0.06);
}

.site-footer a {
  color: var(--royal);
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  color: var(--coral);
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 720px) {
  .site-footer__inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

.site-footer__logo {
  height: clamp(76px, 5vw + 64px, 120px);
  width: auto;
  max-width: min(480px, 100%);
  object-fit: contain;
  object-position: left center;
  padding: 0.65rem 1.25rem;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(0, 26, 153, 0.08);
  box-shadow: 0 2px 14px rgba(0, 26, 153, 0.06);
}

.site-footer__tagline {
  color: var(--coral);
  margin-top: 0.85rem;
  max-width: 28ch;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.site-footer__heading {
  font-family: var(--font-display);
  color: var(--royal);
  font-size: 1rem;
  margin-bottom: 0.65rem;
  font-weight: 800;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.site-footer__legal {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(12, 18, 34, 0.45);
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 26, 153, 0.1);
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Page title block */
.page-intro {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto 2rem;
}

.page-intro h1 {
  margin-bottom: 0.35em;
}

.lede {
  font-size: 1.1rem;
  color: var(--ink-muted);
}

/* Product highlight */
.product-hero {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .product-hero {
    grid-template-columns: 1fr 1fr;
  }
}

.product-hero__panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 26, 153, 0.06);
  border-top: 6px solid var(--orange);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.checklist li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  font-weight: 600;
  color: var(--ink-muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint-dark);
  font-weight: 800;
}
