:root {
  --bg-0: #080f12;
  --bg-1: #0d171b;
  --bg-2: #112226;
  --surface: rgba(13, 24, 28, 0.72);
  --surface-strong: rgba(13, 24, 28, 0.9);
  --text: #e8f2ed;
  --muted: #a9beb4;
  --line: rgba(153, 214, 183, 0.25);
  --mint: #80d7aa;
  --mint-strong: #62c79d;
  --mint-glow: rgba(128, 215, 170, 0.18);
  --focus: #bdf5da;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(900px 500px at 12% -8%, rgba(70, 162, 128, 0.17), transparent 60%),
    radial-gradient(700px 380px at 92% 100%, rgba(77, 152, 153, 0.12), transparent 68%),
    linear-gradient(155deg, var(--bg-0), var(--bg-1) 44%, var(--bg-2));
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.bg-orb {
  position: fixed;
  z-index: -1;
  width: 34vmax;
  height: 34vmax;
  border-radius: 50%;
  filter: blur(78px);
  opacity: 0.24;
  pointer-events: none;
  animation: float 11s ease-in-out infinite;
}

.orb-one {
  left: -12vmax;
  top: -10vmax;
  background: #45a18a;
}

.orb-two {
  right: -10vmax;
  bottom: -12vmax;
  background: #6ab4a5;
  animation-delay: -4s;
}

.page {
  width: min(1120px, calc(100% - 2rem));
  margin: 2.4rem auto;
  display: grid;
  gap: 1.1rem;
}

.hero,
.section,
.footer-note {
  background: linear-gradient(160deg, rgba(12, 22, 26, 0.84), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero {
  padding: clamp(1.2rem, 2.6vw, 2.2rem);
  animation: reveal-up 420ms ease-out both;
  text-align: center;
}

.hero-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-items: start;
}

.hero-title-group {
  min-width: 0;
}

.hero-image {
  width: clamp(102px, 13vw, 154px);
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(153, 214, 183, 0.3);
  background: rgba(9, 18, 21, 0.55);
  padding: 0.25rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  justify-self: center;
  align-self: start;
}

.eyebrow {
  margin: 0;
  color: var(--mint);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  margin: 0;
}

h1 {
  margin: 0.7rem auto 0;
  font-size: clamp(1.7rem, 2.9vw, 2.6rem);
  line-height: 1.14;
  max-width: 24ch;
}

.lead {
  margin: 0.9rem auto 1.3rem;
  color: var(--muted);
  max-width: 64ch;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(180, 255, 224, 0.5);
  text-decoration: none;
  font-weight: 700;
  color: #092117;
  background: linear-gradient(90deg, var(--mint), var(--mint-strong));
  transition: transform 160ms ease, box-shadow 180ms ease;
  box-shadow: 0 10px 24px rgba(95, 183, 145, 0.28);
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(95, 183, 145, 0.33);
}

.section {
  padding: 1.1rem;
  animation: reveal-up 520ms ease-out both;
}

.section-head {
  margin-bottom: 0.95rem;
}

.section-head h2 {
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.section-head p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.grid-priority,
.grid-secondary {
  display: grid;
  gap: 0.85rem;
}

.grid-priority {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-priority .card:nth-child(1) {
  grid-column: span 6;
}

.grid-priority .card:nth-child(2),
.grid-priority .card:nth-child(3) {
  grid-column: span 3;
}

.grid-secondary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: linear-gradient(165deg, rgba(18, 31, 36, 0.9), var(--surface-strong));
  border: 1px solid rgba(148, 212, 180, 0.2);
  border-radius: var(--radius-md);
  padding: 0.95rem;
  display: grid;
  gap: 0.45rem;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 170ms ease;
}

.card-priority {
  box-shadow: inset 0 0 0 1px rgba(128, 215, 170, 0.07);
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(157, 233, 198, 0.4);
  box-shadow: 0 12px 22px rgba(3, 8, 9, 0.35), 0 0 0 6px var(--mint-glow);
}

.icon {
  margin: 0;
  font-size: 1.12rem;
}

h3 {
  font-size: 1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.sub-note {
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: #cde8dc;
  opacity: 0.9;
}

.sub-note strong {
  color: #ecfff7;
  font-weight: 700;
}

.card a {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: fit-content;
  max-width: 100%;
  padding: 0.52rem 0.78rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(163, 231, 197, 0.35);
  text-decoration: none;
  color: #dffcee;
  font-weight: 600;
  background: rgba(120, 206, 166, 0.09);
  transition: background-color 160ms ease, border-color 160ms ease;
}

.card a:hover {
  background: rgba(120, 206, 166, 0.18);
  border-color: rgba(183, 245, 216, 0.58);
}

.link-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.link-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(153, 214, 183, 0.35);
  padding: 0.62rem 0.9rem;
  text-decoration: none;
  color: #e1faf0;
  background: rgba(121, 201, 169, 0.08);
  font-weight: 600;
  font-size: 0.92rem;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.link-pills a:hover {
  border-color: rgba(183, 245, 216, 0.56);
  background: rgba(121, 201, 169, 0.15);
}

.small-pill {
  opacity: 0.9;
  font-size: 0.86rem;
  padding: 0.5rem 0.74rem;
  min-height: 38px;
}

.footer-note {
  padding: 0.8rem 1rem;
}

.footer-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.cookie-note {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(153, 214, 183, 0.2);
  font-size: 0.8rem;
  line-height: 1.5;
  color: #bfd6cc;
}

.footer-links {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(153, 214, 183, 0.35);
  padding: 0.4rem 0.72rem;
  text-decoration: none;
  color: #dffcee;
  background: rgba(121, 201, 169, 0.08);
  font-weight: 600;
  font-size: 0.84rem;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.footer-link:hover {
  border-color: rgba(183, 245, 216, 0.58);
  background: rgba(121, 201, 169, 0.16);
}

.legal-main {
  width: min(920px, calc(100% - 2rem));
  margin: 2.2rem auto;
  display: grid;
  gap: 1rem;
}

.legal-main .section {
  animation: none;
}

.legal-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-list li + li {
  margin-top: 0.5rem;
}

.inline-link {
  color: #dffcee;
}

a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .grid-priority .card:nth-child(1),
  .grid-priority .card:nth-child(2),
  .grid-priority .card:nth-child(3) {
    grid-column: span 12;
  }

  .grid-secondary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .page {
    width: calc(100% - 1rem);
    margin: 0.75rem auto;
  }

  .hero-head {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .hero-image {
    width: clamp(96px, 32vw, 140px);
  }

  .hero,
  .section,
  .footer-note {
    border-radius: var(--radius-md);
  }

  .primary-cta {
    width: 100%;
  }

  .card a {
    width: 100%;
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, -8px);
  }
}
