:root {
  --bg: #f7f8fc;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-solid: #ffffff;
  --text: #15182b;
  --muted: #61667c;
  --border: rgba(21, 24, 43, 0.08);
  --primary: #bff628;
  --primary-dark: #97c91f;
  --primary-deep: #2a3708;
  --primary-soft: rgba(191, 246, 40, 0.16);
  --primary-glow: rgba(191, 246, 40, 0.3);
  --accent: #15182b;
  --teal: #73d98a;
  --shadow: 0 24px 60px rgba(107, 131, 31, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(191, 246, 40, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(115, 217, 138, 0.14), transparent 22%),
    var(--bg);
  color: var(--text);
}

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

button,
input {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(34, 38, 67, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 16px;
  background: #d7ff72;
  box-shadow: inset 0 0 0 1px rgba(21, 24, 43, 0.06);
}

.brand-badge img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1rem;
}

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

.main-nav,
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a {
  color: var(--muted);
  font-weight: 500;
}

.primary-button,
.ghost-button,
.menu-button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--primary-deep);
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(191, 246, 40, 0.3);
}

.primary-button:hover,
.ghost-button:hover,
.menu-button:hover {
  transform: translateY(-1px);
}

.ghost-button {
  padding: 12px 18px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  font-weight: 700;
}

.menu-button {
  display: none;
  padding: 12px 16px;
  background: rgba(21, 24, 43, 0.06);
  color: var(--text);
  font-weight: 600;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin-top: -8px;
  margin-bottom: 18px;
  padding: 18px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 22px;
}

.hero-copy,
.hero-panel,
.category-strip,
.section,
.partner-cta {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel {
  padding: 42px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.98));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.partner-cta h2 {
  margin: 0 0 16px;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(2.9rem, 6vw, 4.8rem);
  line-height: 0.95;
}

.hero p,
.section p,
.partner-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.search-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 12px;
  margin-top: 26px;
  padding: 14px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(21, 24, 43, 0.07);
}

.search-chip {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f5f6fb;
}

.search-chip strong {
  font-size: 0.96rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chip-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.flex-grow {
  min-width: 0;
}

.search-button {
  min-width: 150px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.hero-metrics div {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(191, 246, 40, 0.14), rgba(255, 255, 255, 0.9));
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(115, 217, 138, 0.26), transparent 24%),
    radial-gradient(circle at 20% 20%, rgba(191, 246, 40, 0.22), transparent 26%),
    linear-gradient(180deg, #ffffff, #fbffe9);
}

.hero-card {
  position: relative;
  z-index: 2;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 24, 43, 0.08);
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.pill-highlight {
  background: var(--primary-soft);
  color: var(--primary-deep);
}

.rating {
  color: var(--muted);
  font-weight: 700;
}

.hero-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.hero-list li + li {
  margin-top: 12px;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 500;
}

.hero-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.floating-card {
  position: absolute;
  z-index: 1;
  min-width: 190px;
  padding: 18px;
  border-radius: 22px;
  color: #fff;
  box-shadow: 0 22px 35px rgba(28, 23, 72, 0.18);
}

.card-purple {
  top: 32px;
  right: 24px;
  background: linear-gradient(135deg, #bff628, #97c91f);
  color: var(--primary-deep);
}

.card-orange {
  left: 26px;
  bottom: 28px;
  background: linear-gradient(135deg, #ff8d4d, #ff6a7a);
}

.mini-title {
  display: block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.8;
}

.floating-card strong,
.mini-panel strong {
  display: block;
  margin-bottom: 6px;
  line-height: 1.25;
}

.floating-card small {
  opacity: 0.86;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 18px;
  margin-bottom: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
}

.category-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border-radius: 24px;
  background: #f8f9fd;
  transition: transform 0.2s ease, background 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(191, 246, 40, 0.16), #ffffff);
}

.category-icon {
  font-size: 1.8rem;
}

.category-card small {
  color: var(--muted);
  line-height: 1.5;
}

.section,
.partner-cta {
  margin-bottom: 22px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading.row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section h2,
.partner-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 16ch;
  line-height: 1.02;
}

.benefits-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card,
.step-card,
.mini-panel {
  padding: 24px;
  border-radius: 24px;
  background: #f7f8fc;
  border: 1px solid rgba(21, 24, 43, 0.06);
}

.benefit-card h3,
.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.store-card {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(21, 24, 43, 0.08);
}

.store-banner {
  height: 170px;
}

.gradient-1 {
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.35), transparent 18%),
    linear-gradient(135deg, #6b4eff, #8d73ff);
}

.gradient-2 {
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.35), transparent 18%),
    linear-gradient(135deg, #2fd1b0, #4cc7ff);
}

.gradient-3 {
  background:
    radial-gradient(circle at 55% 65%, rgba(255, 255, 255, 0.35), transparent 18%),
    linear-gradient(135deg, #ff8d4d, #ff6a7a);
}

.store-content {
  padding: 22px;
}

.store-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.store-meta span,
.text-link {
  color: var(--muted);
}

.store-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.store-tags span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: #f4f5fb;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.showcase-grid,
.partner-cta {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 22px;
  align-items: stretch;
}

.showcase-board {
  display: grid;
  gap: 16px;
}

.mini-panel {
  background:
    linear-gradient(180deg, rgba(191, 246, 40, 0.14), rgba(255, 255, 255, 1));
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
}

.partner-cta {
  background:
    radial-gradient(circle at top left, rgba(191, 246, 40, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.94);
}

.partner-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(21, 24, 43, 0.08);
}

.partner-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

.partner-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(21, 24, 43, 0.1);
  border-radius: 16px;
  background: #f7f8fc;
  color: var(--text);
}

.partner-form input:focus {
  outline: 2px solid rgba(191, 246, 40, 0.3);
  border-color: rgba(151, 201, 31, 0.45);
}

.full-width {
  width: 100%;
}

@media (max-width: 1100px) {
  .hero,
  .showcase-grid,
  .partner-cta,
  .store-grid,
  .benefits-grid,
  .steps-grid,
  .category-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .showcase-grid,
  .partner-cta,
  .store-grid,
  .benefits-grid,
  .steps-grid,
  .category-strip {
    grid-template-columns: 1fr;
  }

  .section h2,
  .partner-cta h2 {
    max-width: 100%;
  }

  .search-card {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .topbar {
    border-radius: 28px;
  }

  .main-nav,
  .topbar-actions {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu.is-open {
    display: flex;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 14px;
  }

  .topbar,
  .hero-copy,
  .hero-panel,
  .section,
  .partner-cta,
  .category-strip {
    padding: 22px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-card h2 {
    font-size: 1.8rem;
  }

  .floating-card {
    position: static;
    margin-top: 14px;
  }

  .hero-panel {
    display: block;
  }

  .section-heading.row,
  .store-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
