@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700&display=swap");

:root {
  --ink: #222222;
  --muted: #656565;
  --soft: #f6f6f6;
  --line: #ececec;
  --gold: #f6ad55;
  --gold-soft: #fff1db;
  --orange: #f3912e;
  --pink: #ef4f86;
  --pink-deep: #c92c68;
  --blue: #1b1458;
  --yellow: var(--gold);
  --yellow-soft: var(--gold-soft);
  --red: var(--pink);
  --accent: linear-gradient(135deg, var(--pink) 0%, var(--gold) 100%);
  --shadow: 0 22px 55px rgba(201, 44, 104, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--ink);
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.25s ease;
}

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

.container {
  width: min(1170px, calc(100% - 30px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 10;
  background: #f7f7f7;
  box-shadow: 0 1px 0 rgba(20, 20, 20, 0.04);
}

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

.brand img {
  width: 206px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #1f1f1f;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--pink);
}

.header-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(239, 79, 134, 0.34);
  border-radius: 999px;
  background: #ffffff;
  color: var(--pink-deep);
  font-size: 13px;
  font-weight: 700;
}

.header-btn:hover {
  background: var(--pink);
  color: #ffffff;
}

.hero-section,
.soft-section,
.install-section {
  position: relative;
  overflow: hidden;
}

.hero-section {
  padding: 84px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.14;
}

h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.22;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-card {
  position: relative;
  width: min(100%, 540px);
  padding: 18px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(239, 79, 134, 0.18), rgba(246, 173, 85, 0.22));
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.phone-top img {
  width: 190px;
}

.phone-top span {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #8a5408;
  font-size: 13px;
  font-weight: 700;
}

.app-preview-card {
  position: relative;
  min-height: 258px;
  overflow: hidden;
  padding: 30px;
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.36), transparent 8rem),
    linear-gradient(135deg, var(--pink) 0%, #f36b86 40%, var(--gold) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.app-preview-card::before,
.app-preview-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.app-preview-card::before {
  right: -54px;
  bottom: -44px;
  width: 170px;
  height: 170px;
}

.app-preview-card::after {
  left: -34px;
  top: -34px;
  width: 116px;
  height: 116px;
}

.preview-badge,
.app-preview-card h2,
.app-preview-card p,
.preview-actions {
  position: relative;
  z-index: 1;
}

.preview-badge {
  display: inline-flex;
  margin-bottom: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.app-preview-card h2 {
  max-width: 310px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 48px);
}

.app-preview-card p {
  max-width: 340px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.88);
}

.preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-actions span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 12px;
}

.phone-download {
  display: flex;
  min-height: 54px;
  margin-top: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(239, 79, 134, 0.28);
}

.download-strip {
  margin-top: 52px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 14px 34px rgba(239, 79, 134, 0.28);
}

.download-strip a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: inherit;
  background: var(--accent);
  color: #ffffff;
  text-align: center;
}

.download-strip strong {
  font-size: 20px;
}

.download-strip span {
  opacity: 0.92;
}

.quick-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.quick-actions a {
  min-width: 142px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  text-align: center;
}

.quick-actions a:first-child {
  background: var(--pink);
}

.quick-actions a:last-child {
  background: var(--gold);
}

.welcome-section {
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  background: #ffffff;
}

.welcome-card {
  padding: 24px 0;
}

.welcome-card h2 {
  margin-bottom: 10px;
  color: var(--pink);
  font-size: 26px;
}

.welcome-card p {
  max-width: 920px;
  margin-bottom: 0;
  color: var(--muted);
}

.soft-section,
.install-section {
  padding: 88px 0;
  background: var(--soft);
}

.soft-section::before,
.install-section::before,
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 34px;
  background:
    radial-gradient(80px 24px at 10% 0, #ffffff 98%, transparent 100%),
    radial-gradient(110px 28px at 34% 0, #ffffff 98%, transparent 100%),
    radial-gradient(90px 24px at 64% 0, #ffffff 98%, transparent 100%),
    radial-gradient(120px 30px at 90% 0, #ffffff 98%, transparent 100%);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin-bottom: 0;
}

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

.feature-grid article,
.steps li {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(22, 34, 48, 0.06);
}

.feature-grid span,
.steps li::before {
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
}

.feature-grid p,
.steps span,
.notice p {
  margin-bottom: 0;
  color: var(--muted);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
}

.steps strong,
.steps span {
  display: block;
}

.final-cta {
  padding: 70px 0;
  background: #ffffff;
}

.final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.final-card h2 {
  margin-bottom: 0;
}

.final-card a {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 56px;
  min-width: 190px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.notice {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.notice strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.site-footer {
  position: relative;
  padding: 74px 0 34px;
  background: var(--soft);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid img {
  width: 190px;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

.footer-grid a {
  color: var(--muted);
  font-size: 14px;
}

.shape-dot {
  position: absolute;
  z-index: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
}

.dot-yellow {
  background: var(--gold);
}

.dot-red {
  background: var(--pink);
}

.dot-blue {
  background: var(--blue);
}

.dot-one { left: 6%; top: 26%; width: 28px; height: 28px; }
.dot-two { left: 36%; top: 18%; width: 10px; height: 10px; }
.dot-three { right: 21%; top: 22%; width: 12px; height: 12px; }
.dot-four { right: 11%; bottom: 24%; width: 34px; height: 34px; }
.dot-five { left: 7%; top: 33%; width: 14px; height: 14px; }
.dot-six { right: 9%; top: 28%; width: 12px; height: 12px; }
.dot-seven { left: 8%; bottom: 19%; width: 28px; height: 28px; }
.dot-eight { right: 9%; bottom: 24%; width: 34px; height: 34px; }

.hero-grid,
.download-strip,
.quick-actions,
.container > *:not(.shape-dot) {
  position: relative;
  z-index: 1;
}

.header-btn:hover,
.phone-download:hover,
.download-strip a:hover,
.final-card a:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.download-highlight {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: downloadPulse 1.35s ease-in-out infinite;
}

.download-highlight::after {
  content: "";
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -70%;
  z-index: 0;
  width: 46%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  pointer-events: none;
  animation: downloadShine 1.9s ease-in-out infinite;
}

@keyframes downloadPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 12px 28px rgba(239, 79, 134, 0.24), 0 0 0 0 rgba(246, 173, 85, 0.55);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(239, 79, 134, 0.34), 0 0 0 9px rgba(246, 173, 85, 0);
  }
}

@keyframes downloadShine {
  0% {
    left: -70%;
  }

  52%,
  100% {
    left: 126%;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    gap: 16px;
  }

  .nav-links {
    display: none;
  }

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

  .hero-copy,
  .section-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .final-card,
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid nav {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 20px, 1170px);
  }

  .site-header {
    background: #ffffff;
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand img {
    width: 160px;
  }

  .header-btn {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .hero-section {
    padding: 54px 0 36px;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    font-size: 38px;
  }

  .phone-card {
    padding: 12px;
    border-radius: 22px;
  }

  .phone-top img {
    width: 150px;
  }

  .app-preview-card {
    min-height: 226px;
    padding: 24px;
  }

  .app-preview-card h2 {
    font-size: 32px;
  }

  .download-strip {
    border-radius: 16px;
  }

  .download-strip a {
    flex-direction: column;
    gap: 0;
    min-height: 64px;
    padding: 8px 14px;
  }

  .quick-actions {
    flex-direction: column;
  }

  .welcome-card {
    text-align: center;
  }

  .soft-section,
  .install-section {
    padding: 66px 0;
  }

  .feature-grid article,
  .steps li {
    min-height: auto;
    padding: 24px;
  }

  .final-card {
    padding: 24px;
  }

  .shape-dot {
    opacity: 0.75;
  }
}
