@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

@font-face {
  font-family: "Lilita One";
  src: url("assets/fonts/Lilita_One/LilitaOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --sky: #d6f2ff;
  --sky-deep: #a9ddff;
  --sea: #4db5ff;
  --sea-deep: #2a8fe6;
  --grass: #57d874;
  --sun: #ffd44a;
  --accent: #ff4a1c;
  --ink: #1c2340;
  --text: #23335c;
  --muted: #4a5b84;
  --panel: #ffffff;
  --panel-soft: #f2f8ff;
  --border: rgba(28, 35, 64, 0.12);
  --shadow: 0 18px 30px rgba(39, 76, 134, 0.18);
  --radius: 20px;
  --radius-lg: 28px;
  --font-display: "Lilita One", "Nunito", "Segoe UI", sans-serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: linear-gradient(180deg, #e9f8ff 0%, var(--sky-deep) 45%, #a6d9ff 100%);
}

.page {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(255, 212, 74, 0.7), transparent 32%),
    radial-gradient(circle at 18% 18%, rgba(87, 216, 116, 0.32), transparent 36%),
    radial-gradient(circle at 85% 55%, rgba(122, 81, 255, 0.12), transparent 40%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0, rgba(255, 255, 255, 0.18) 16px, transparent 16px, transparent 32px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0 0 12px;
  color: var(--ink);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  padding: 20px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  padding: 6px;
  background: var(--panel);
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.logo-accent {
  color: var(--accent);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.nav a:hover {
  border-color: var(--sun);
}

.hero {
  display: grid;
  gap: 32px;
  padding: 36px 0 24px;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 2.8vw + 1rem, 3.4rem);
  line-height: 1.05;
}

.hero-tagline {
  font-weight: 700;
  color: var(--ink);
  margin: 8px 0 16px;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.chip {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 16px rgba(39, 76, 134, 0.12);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.store-badges img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(39, 76, 134, 0.2));
}

.store-badges .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 180px;
  border-radius: 12px;
  background: #ffffff;
  border: 2px solid rgba(28, 35, 64, 0.12);
  box-shadow: 0 10px 18px rgba(39, 76, 134, 0.18);
}

.store-badges .badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-visual {
  display: grid;
  align-items: center;
  justify-items: center;
}

.hero-icon {
  width: min(360px, 70vw);
  height: auto;
  border-radius: 32px;
  border: 6px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 40px rgba(39, 76, 134, 0.25);
  background: #ffffff;
}

.feature-island {
  padding: 10px 0 26px;
}

.island-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 32px rgba(39, 76, 134, 0.16);
  padding: 24px;
  display: grid;
  gap: 18px;
}

.island-heading {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.4rem;
}

.island-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.island-row {
  display: grid;
  gap: 14px;
}

.island-item {
  background: #ffffff;
  border-radius: 18px;
  border: 2px solid rgba(28, 35, 64, 0.08);
  padding: 14px 16px;
  box-shadow: 0 10px 18px rgba(39, 76, 134, 0.1);
}

.island-title {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.island-text {
  color: var(--muted);
}

.cta-strip {
  margin: 10px auto 20px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(140deg, rgba(255, 212, 74, 0.22), rgba(255, 150, 120, 0.16));
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 14px;
  align-items: center;
  box-shadow: 0 16px 28px rgba(39, 76, 134, 0.14);
}

.cta-title {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.2rem;
}

.cta-text {
  color: var(--muted);
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  background: #ffffff;
  border: 2px solid rgba(28, 35, 64, 0.12);
  color: var(--ink);
  box-shadow: 0 10px 18px rgba(39, 76, 134, 0.18);
  text-decoration: none;
}

.site-footer {
  padding: 20px 0 34px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-meta {
  color: var(--muted);
}

.page-main {
  padding: 40px 0 60px;
}

.panel {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 24px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.page-title {
  font-size: clamp(2rem, 2.8vw + 0.8rem, 2.8rem);
}

.inline-link {
  color: var(--accent);
  font-weight: 700;
}

@media (min-width: 768px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: center;
  }

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

  .cta-strip {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
  }

  .site-footer {
    grid-template-columns: repeat(3, auto);
    align-items: center;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }
}
