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

:root {
    --store-primary: #315762;
    --store-accent: #e9641b;
    --store-primary-rgb: 1, 69, 118;
    --store-secondary: #315764;
    --store-secondary-rgb: 121, 161, 10;
    --store-accent-rgb: 249, 171, 0;
    --theme-app-bg: #f8fafd;
    --theme-surface: #ffffff;
    --theme-surface-soft: #f1f4f9;
    --theme-surface-muted: #e8eef7;
    --theme-text: #1f1f1f;
    --theme-text-muted: #5f6368;
    --theme-text-subtle: #8a9099;
    --theme-inverse-text: #ffffff;
    --theme-primary-gradient: var(--store-primary);
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
    --font-display: 'Manrope', 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--theme-text);
  background:
    radial-gradient(circle at 8% 10%, rgba(var(--store-accent-rgb), 0.18), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(var(--store-primary-rgb), 0.12), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f8fafd 44%, #ffffff 100%);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.landing-page {
  position: relative;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.landing-page::before,
.landing-page::after {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.28;
  content: '';
  pointer-events: none;
}

.landing-page::before {
  top: -160px;
  left: -160px;
  background: rgba(var(--store-primary-rgb), 0.38);
}

.landing-page::after {
  right: -160px;
  bottom: 12%;
  background: rgba(var(--store-secondary-rgb), 0.32);
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 88px;
}

.brand,
.landing-nav__links,
.hero__actions,
.hero__metrics,
.showcase-tabs {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
}

.brand__logo {
    width: 220px;
}

.brand__text {
  font-size: 1.15rem;
}

.landing-nav__links {
  gap: 24px;
  color: var(--theme-text-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.landing-nav__links a {
  transition: color 0.18s ease;
}

.landing-nav__links a:hover {
  color: var(--store-accent);
}

.landing-nav__cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.landing-nav__cta {
  padding: 0 22px;
  color: var(--theme-inverse-text);
  background: var(--store-accent);
  box-shadow: 0 18px 36px rgba(var(--store-primary-rgb), 0.18);
}

.button {
  padding: 0 24px;
}

.landing-nav__cta:hover,
.button:hover,
.showcase-tabs__button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--theme-inverse-text);
  background: var(--store-accent);
  box-shadow: 0 22px 46px rgba(var(--store-primary-rgb), 0.24);
}

.button--secondary {
  color: var(--theme-text);
  background: var(--theme-surface);
  box-shadow: 0 18px 44px rgba(32, 33, 36, 0.08);
}

.button--light {
  color: var(--store-primary);
  background: var(--theme-surface);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 48px 0 72px;
}

.hero__content {
  min-width: 0;
}

.hero__kicker,
.section__heading span,
.final-cta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--store-primary);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__kicker::before,
.section__heading span::before,
.final-cta span::before {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--store-secondary);
  content: '';
}

.hero h1,
.section__heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 7vw, 6.6rem);
  line-height: 0.92;
}

.hero__lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--theme-text-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.75;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__metrics {
  align-items: stretch;
  gap: 14px;
  margin-top: 40px;
}

.hero__metrics div {
  flex: 1 1 0;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(var(--store-primary-rgb), 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(32, 33, 36, 0.06);
}

.hero__metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.hero__metrics span {
  display: block;
  margin-top: 8px;
  color: var(--theme-text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero__visual {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
}

.floating-card {
  position: absolute;
  z-index: 3;
  max-width: 190px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 52px rgba(32, 33, 36, 0.14);
  backdrop-filter: blur(18px);
}

.floating-card span,
.floating-card strong {
  display: block;
}

.floating-card span {
  color: var(--theme-text-subtle);
  font-size: 0.76rem;
  font-weight: 700;
}

.floating-card strong {
  margin-top: 6px;
  color: var(--theme-text);
  font-size: 0.94rem;
  line-height: 1.25;
}

.floating-card--orders {
  top: 10%;
  left: -6%;
}

.floating-card--style {
  right: -4%;
  bottom: 18%;
}

.phone {
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  padding: 12px;
  border-radius: 48px;
  background: #11151c;
  box-shadow: 0 34px 84px rgba(14, 18, 28, 0.34);
}

.phone::before {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 4;
  width: 72px;
  height: 18px;
  border-radius: 999px;
  background: #0b0e13;
  content: '';
  transform: translateX(-50%);
}

.phone__screen {
  overflow: hidden;
  border-radius: 38px;
  background: #101418;
}

.phone__screen img {
    width: 100%;
}

.store-app {
  min-height: 690px;
  padding: 34px 18px 18px;
  color: #f8fafc;
}

.store-app h2,
.store-app h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.store-app h2 {
  font-size: 2.75rem;
  line-height: 0.96;
}

.store-app h3 {
  margin-top: 22px;
  font-size: 1.7rem;
}

.store-app--dark {
  background:
    radial-gradient(circle at 42% 0%, rgba(1, 69, 118, 0.58), transparent 34%),
    linear-gradient(180deg, #101418 0%, #13171d 100%);
}

.store-app--light {
  color: #1f1f1f;
  background:
    radial-gradient(circle at 14% 18%, rgba(var(--store-primary-rgb), 0.16), transparent 30%),
    radial-gradient(circle at 94% 4%, rgba(var(--store-accent-rgb), 0.2), transparent 34%),
    linear-gradient(180deg, #f8fafd 0%, #ffffff 62%, #eef5fb 100%);
}

.store-app--accent {
  background:
    radial-gradient(circle at 28% 8%, rgba(249, 171, 0, 0.28), transparent 30%),
    linear-gradient(180deg, #182232 0%, #101418 100%);
}

.story-row {
  display: flex;
  gap: 14px;
  margin: 26px -2px 28px;
}

.story-row span {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 5px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 46%, rgba(var(--store-accent-rgb), 0.8), transparent 18%),
    linear-gradient(135deg, #0b0f16, var(--store-primary));
  box-shadow: inset 0 0 0 7px rgba(16, 20, 24, 0.92);
}

.store-app--light .story-row span {
  border-color: #ffffff;
  box-shadow: inset 0 0 0 7px #f0f4fa, 0 12px 26px rgba(32, 33, 36, 0.08);
}

.promo-card {
  min-height: 182px;
  padding: 22px;
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 100%, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(135deg, var(--store-primary) 0%, var(--store-secondary) 100%);
}

.store-app--light .promo-card {
  background:
    radial-gradient(circle at 88% 100%, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #8db3ff 0%, #b8c8ef 100%);
}

.store-app--accent .promo-card {
  background:
    radial-gradient(circle at 86% 100%, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(135deg, var(--store-accent) 0%, var(--store-secondary) 100%);
}

.promo-card span,
.promo-card strong,
.promo-card em {
  display: block;
}

.promo-card span {
  width: fit-content;
  max-width: 100%;
  padding: 7px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
  font-weight: 800;
}

.promo-card strong {
  max-width: 210px;
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.02;
}

.promo-card em {
  margin-top: 18px;
  font-style: normal;
  font-weight: 800;
}

.category-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  overflow: hidden;
}

.category-row span {
  min-width: 92px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  font-weight: 700;
}

.category-row span:first-child {
  color: #ffffff;
  background: var(--theme-primary-gradient);
}

.store-app--light .category-row span {
  border-color: rgba(31, 31, 31, 0.1);
  background: rgba(255, 255, 255, 0.74);
}

.store-app--light .category-row span:first-child {
  color: #ffffff;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr 54px;
  gap: 12px;
  margin-top: 18px;
}

.search-row span,
.search-row i {
  display: block;
  min-height: 56px;
  border-radius: 18px;
  background: rgba(232, 238, 247, 0.12);
}

.search-row span {
  padding: 17px 18px;
  color: rgba(255, 255, 255, 0.52);
  font-style: normal;
  font-weight: 600;
}

.search-row i {
  background: var(--theme-primary-gradient);
}

.store-app--light .search-row span {
  color: var(--theme-text-subtle);
  background: var(--theme-surface-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.product-tile {
  min-height: 126px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.88), transparent 18%),
    linear-gradient(135deg, var(--store-primary), #0d141f);
}

.product-tile--gold {
  background:
    radial-gradient(circle at 58% 42%, rgba(255, 255, 255, 0.8), transparent 18%),
    linear-gradient(135deg, var(--store-accent), #11151c);
}

.product-tile--green {
  background:
    radial-gradient(circle at 46% 44%, rgba(255, 255, 255, 0.8), transparent 18%),
    linear-gradient(135deg, var(--store-secondary), var(--store-primary));
}

.product-tile--navy {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.72), transparent 18%),
    linear-gradient(135deg, #182232, var(--store-primary));
}

.bottom-bar {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  padding: 18px 12px;
  border-radius: 28px;
  background: var(--theme-primary-gradient);
}

.bottom-bar span {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
}

.section {
  padding: 88px 0;
}

.section__heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section__heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section__heading--center span {
  justify-content: center;
}

.section__heading h2,
.final-cta h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.98;
}

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

.value-grid article,
.audience-grid article,
.feature-list article {
  border: 1px solid rgba(var(--store-primary-rgb), 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 60px rgba(32, 33, 36, 0.07);
}

.value-grid article {
  min-height: 300px;
  padding: 28px;
}

.value-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--theme-inverse-text);
  background: var(--store-accent);
  font-weight: 800;
}

.value-grid h3,
.audience-grid h3,
.feature-list h3,
.showcase-copy h3 {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.value-grid p,
.audience-grid p,
.feature-list p,
.showcase-copy p,
.final-cta p {
  margin: 14px 0 0;
  color: var(--theme-text-muted);
  line-height: 1.7;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 22px;
  align-items: stretch;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-list article {
  padding: 26px;
}

.feature-list article:first-child {
  grid-row: span 2;
  color: var(--theme-inverse-text);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.14), transparent 26%),
    var(--store-accent);
}

.feature-list article:first-child p {
  color: rgba(255, 255, 255, 0.8);
}

.feature-spotlight {
  display: grid;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  min-height: 620px;
  padding: 34px;
  border-radius: 42px;
  color: var(--theme-inverse-text);
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(150deg, #101418 0%, #192438 55%, var(--store-primary) 100%);
}

.mini-phone {
  width: 210px;
  padding: 10px;
  border-radius: 34px;
  background: #0d1118;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  transform: rotate(-8deg);
}

.mini-phone__screen {
  min-height: 360px;
  padding: 24px 14px;
  border-radius: 26px;
  background: #f8fafd;
}

.mini-phone__header {
  width: 80%;
  height: 28px;
  border-radius: 12px;
  background: var(--theme-primary-gradient);
}

.mini-phone__banner {
  height: 98px;
  margin-top: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--store-accent), var(--store-secondary));
}

.mini-phone__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.mini-phone__cards span {
  height: 72px;
  border-radius: 18px;
  background: var(--theme-surface-muted);
}

.spotlight-copy {
  margin-top: 34px;
  text-align: center;
}

.spotlight-copy strong,
.spotlight-copy span {
  display: block;
}

.spotlight-copy strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.spotlight-copy span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.showcase-tabs {
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.showcase-tabs__button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 100px !important;
  color: var(--theme-text-muted);
  background: var(--theme-surface);
  box-shadow: 0 16px 42px rgba(32, 33, 36, 0.08);
  font: 800 0.9rem var(--font-body);
  cursor: pointer;
}

.showcase-tabs__button.active {
  color: var(--theme-inverse-text) !important;
  background: var(--store-accent) !important;
}

.showcase-frame {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  padding: 40px;
  border-radius: 52px;
  background:
    radial-gradient(circle at 86% 16%, rgba(var(--store-accent-rgb), 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 244, 249, 0.74));
  box-shadow: 0 34px 90px rgba(32, 33, 36, 0.09);
}

.phone--showcase {
  justify-self: center;
}

.showcase-copy {
  max-width: 520px;
}

.showcase-copy h3 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.audience-grid article {
  padding: 28px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin: 86px 0 54px;
  padding: 46px;
  border-radius: 52px;
  color: var(--theme-inverse-text);
  background: var(--store-primary);
  box-shadow: 0 34px 88px rgba(var(--store-primary-rgb), 0.24);
}

.final-cta span {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta span::before {
  background: var(--store-accent);
}

.final-cta p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

@media (max-width: 1040px) {
  .landing-nav__links {
    display: none;
  }

  .hero,
  .feature-layout,
  .showcase-frame,
  .final-cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: auto;
  }

  .hero__visual {
    order: -1;
  }

  .floating-card--orders {
    left: 4%;
  }

  .floating-card--style {
    right: 4%;
  }

  .feature-spotlight {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .landing-page {
    width: min(100% - 28px, 1180px);
  }

  .landing-nav {
    min-height: 76px;
  }

  .landing-nav__cta {
    display: none;
  }

  .hero {
    padding-top: 24px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .hero__metrics,
  .value-grid,
  .feature-list,
  .audience-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__metrics,
  .value-grid,
  .feature-list,
  .audience-grid {
    display: grid;
  }

  .showcase-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .showcase-tabs__button {
    flex: 0 0 auto;
  }

  .showcase-frame {
    padding: 22px;
    border-radius: 36px;
  }

  .floating-card {
    display: none;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 520px) {
  .brand__text {
    font-size: 1rem;
  }

  .hero__actions .button,
  .final-cta .button {
    width: 100%;
  }

  .phone {
    width: min(100%, 330px);
    border-radius: 42px;
  }

  .phone__screen {
    border-radius: 32px;
  }

  .store-app {
    min-height: 640px;
  }

  .store-app h2 {
    font-size: 2.25rem;
  }

  .promo-card strong {
    font-size: 1.55rem;
  }

  .section__heading h2,
  .final-cta h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .value-grid article,
  .audience-grid article,
  .feature-list article {
    border-radius: 28px;
  }

  .final-cta {
    padding: 30px;
    border-radius: 34px;
  }
}
