:root {
  --sky: #1aa4d8;
  --deep: #0b2e3b;
  --sun: #ffc857;
  --sand: #f6efe2;
  --ink: #0c1517;
  --leaf: #39b49a;
  --card: #ffffff;
  --shadow: rgba(10, 26, 31, 0.16);
  --font-display: "Unbounded", sans-serif;
  --font-body: "Fira Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(700px 520px at 12% 10%, #7ad2f2, var(--sky))
      no-repeat,
    linear-gradient(180deg, #fefaf2 10%, #f5f3e9 50%, #fef9ef 100%);
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.5;
  z-index: 0;
}

.page::before {
  width: 520px;
  height: 520px;
  right: -160px;
  top: -80px;
  background: radial-gradient(circle, var(--sun), #ffe6ad);
}

.page::after {
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: 140px;
  background: radial-gradient(circle, #59c0a7, #b8f2e6);
}

.topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 26px clamp(18px, 5vw, 80px);
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.topnav {
  display: flex;
  gap: 20px;
  font-weight: 600;
}

.topnav a {
  color: var(--deep);
  text-decoration: none;
}

.ghost {
  text-decoration: none;
  font-weight: 600;
  color: var(--deep);
  border: 2px solid var(--deep);
  border-radius: 999px;
  padding: 10px 18px;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 24px clamp(18px, 5vw, 80px) 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 64px);
  margin: 10px 0 18px;
  color: var(--deep);
}

.hero-copy h1 span {
  display: block;
  color: var(--leaf);
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 12px;
}

.lead {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
}

.primary {
  background: var(--sun);
  color: var(--deep);
  box-shadow: 0 16px 32px var(--shadow);
}

.secondary {
  border: 2px solid var(--deep);
  color: var(--deep);
  background: var(--card);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
}

.metrics strong {
  font-size: 20px;
  font-family: var(--font-display);
}

.metrics span {
  display: block;
  font-size: 13px;
  color: #3c4e52;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.mascot-card {
  background: var(--card);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 20px 40px var(--shadow);
  width: min(360px, 90%);
  display: grid;
  gap: 14px;
}

.mascot-frame {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(140deg, #fdf2d1, #e6f6ff);
  border: 2px solid #f1e6cf;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.mascot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mascot-caption {
  padding: 14px 10px 0;
  text-align: center;
}

.mascot-caption p {
  margin: 0;
  font-family: var(--font-display);
}

.mascot-caption span {
  font-size: 14px;
  color: #43585e;
}

.hero-chip {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: var(--card);
  box-shadow: 0 12px 20px var(--shadow);
}

.chip-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.section {
  position: relative;
  z-index: 1;
  padding: 40px clamp(18px, 5vw, 80px);
}

.section-head {
  max-width: 720px;
  margin-bottom: 24px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 40px);
  margin-bottom: 12px;
}

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

.cards article {
  background: var(--card);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 14px 30px var(--shadow);
}

.cards.wide article {
  min-height: 160px;
}

.flow {
  background: linear-gradient(140deg, #eefaf9, #f7f0e2);
}

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

.flow-step {
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 14px 30px var(--shadow);
}

.flow-step span {
  font-family: var(--font-display);
  color: var(--leaf);
}

.accent {
  background: linear-gradient(140deg, #dff5ff, #fef2d1);
}

.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  background: var(--deep);
  color: #fff;
  border-radius: 26px;
  margin: 0 clamp(18px, 5vw, 80px) 40px;
  padding: 28px;
}

.contact .primary {
  background: var(--sun);
  color: var(--deep);
}

.contact .secondary {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.offer {
  background: linear-gradient(120deg, #f8fbff, #f7efe0);
}

.offer-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 30px var(--shadow);
}

.offer-card ul {
  margin: 0;
  padding-left: 18px;
}

.offer-card li {
  margin-bottom: 6px;
}

.offer-button {
  white-space: nowrap;
}

footer {
  padding: 20px clamp(18px, 5vw, 80px) 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
  color: #42565c;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .topnav {
    display: none;
  }

  .ghost {
    display: none;
  }

  .hero-chip {
    display: none;
  }
}

@media (max-width: 700px) {
  .contact {
    margin: 0 18px 40px;
  }
}
