:root {
  --brand-1: #32b67a;
  --brand-2: #ffc857;
  --brand-3: #ff8a5b;
  --ink: #1e2a33;
  --muted: #56606a;
  --bg: #f5f6fb;
  --surface: #ffffff;
  --surface-2: #f0f3f7;
  --shadow-soft: 0 18px 40px rgba(17, 24, 39, 0.12);
  --shadow-lift: 0 24px 60px rgba(17, 24, 39, 0.18);
  --radius-lg: 26px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(50, 182, 122, 0.2), transparent 45%),
    radial-gradient(circle at 88% 6%, rgba(255, 200, 87, 0.25), transparent 50%),
    radial-gradient(circle at 78% 80%, rgba(255, 138, 91, 0.2), transparent 55%),
    var(--bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

.page header {
  position: relative;
  z-index: 10;
}

.page main {
  position: relative;
  z-index: 1;
}

.page footer {
  position: relative;
  z-index: 2;
}

.orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  z-index: 1;
}

.orb-1 {
  width: 420px;
  height: 420px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(50, 182, 122, 0.6), rgba(50, 182, 122, 0));
}

.orb-2 {
  width: 360px;
  height: 360px;
  bottom: 15%;
  left: -140px;
  background: radial-gradient(circle at 40% 40%, rgba(255, 200, 87, 0.5), rgba(255, 200, 87, 0));
}

.orb-3 {
  width: 260px;
  height: 260px;
  top: 55%;
  right: 8%;
  background: radial-gradient(circle at 40% 40%, rgba(255, 138, 91, 0.55), rgba(255, 138, 91, 0));
}

.navbar {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  transition: all 0.25s ease;
  z-index: 1030;
}

.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.navbar-brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--ink);
}

.brand-name {
  font-family: "Bowlby One SC", "Space Grotesk", sans-serif;
  letter-spacing: 0.6px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff;
  padding: 6px;
  box-shadow: var(--shadow-soft);
  margin-right: 10px;
}

.navbar .nav-link {
  font-weight: 600;
  color: var(--ink);
}

.navbar .nav-link:hover {
  color: var(--brand-1);
}

.lang-switch {
  display: flex;
  gap: 6px;
}

.lang-switch a {
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--muted);
  font-weight: 700;
}

.lang-switch a.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-brand {
  background: linear-gradient(135deg, #32b67a, #ffc857);
  color: #1e2a33;
  font-weight: 700;
  border: none;
  box-shadow: var(--shadow-soft);
}

.btn-brand:hover {
  color: #1e2a33;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
}

.btn-outline-brand {
  border: 2px solid #32b67a;
  color: #32b67a;
  font-weight: 700;
}

.btn-outline-brand:hover {
  background: #32b67a;
  color: #fff;
}

.hero {
  padding: 9rem 0 6rem;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  margin-bottom: 1rem;
}

.hero-title.brand-name {
  font-family: "Bowlby One SC", "Space Grotesk", sans-serif;
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  font-size: 0.85rem;
}

.pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-1);
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.app-badges img {
  height: 50px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.hero-media {
  position: relative;
}

.image-frame {
  padding: 12px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.45));
  box-shadow: var(--shadow-lift);
}

.image-frame img {
  border-radius: calc(var(--radius-lg) - 12px);
}

.image-frame.wide-shot {
  aspect-ratio: 9 / 20;
  width: 50%;
  margin: 0 auto;
}

.image-frame.wide-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: #F5C758;
  background: linear-gradient(135deg, #6fd4a7, #ffc857);
  color: #1e2a33;
  font-weight: 700;
  border: none;
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.floating-card-1 {
  top: 14%;
  left: 19%;
}

.floating-card-2 {
  bottom: 20%;
  right: 19%;
}

.floating-card-3 {
  top: 49%;
  left: 15%;
}

.section {
  padding: 5.5rem 0;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.panel-surface {
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
}

.card-soft {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
}

.card-soft h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.icon-bubble {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #32b67a, #ffc857);
  color: #1e2a33;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-1);
  font-weight: 800;
}

.step-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 200, 87, 0.8);
  color: #1e2a33;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(50, 182, 122, 0.12);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
}

.pricing-card {
  border: 2px solid rgba(50, 182, 122, 0.25);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lift);
}

.cta-panel {
  background: linear-gradient(135deg, rgba(50, 182, 122, 0.92), rgba(255, 200, 87, 0.9));
  border-radius: var(--radius-lg);
  padding: 3.2rem;
  box-shadow: var(--shadow-lift);
}

.cta-panel h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.policy-hero {
  padding: 9rem 0 3rem;
}

.policy-content {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
}

.policy-content h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  margin-top: 2rem;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

footer {
  padding: 2.5rem 0 3rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--brand-1);
}

.footer-credit {
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.footer-credit a {
  color: var(--muted);
  font-weight: 700;
}

.footer-credit a:hover {
  color: var(--brand-1);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

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

@media (max-width: 991px) {
  .hero {
    padding-top: 8rem;
  }

  .floating-card {
    display: none;
  }

  .image-frame.wide-shot {
    width: 55%;
  }

  .panel-surface {
    padding: 2rem;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 7rem 0 4rem;
  }

  .section {
    padding: 4rem 0;
  }

  .image-frame.wide-shot {
    width: 70%;
  }

  .cta-panel {
    padding: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
