:root {
  --paper: #FAFAF8;
  --ink: #14161A;
  --accent: #FF5A36;
  --accent-soft: #FFE8E0;
  --accent-text: #B8381E;
  --surface: #FFFFFF;
  --line: #ECECE8;
  --muted: #8B8B85;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.serif {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
}

.brand .mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink);
}

.nav-links a { opacity: 0.72; transition: opacity .15s; }
.nav-links a:hover { opacity: 1; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 64px;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-text);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

h1 {
  font-size: 54px;
  line-height: 1.08;
  font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.hero p.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 34px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* App Store badge (non-clickable placeholder) */
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 11px 20px;
  border-radius: 12px;
  opacity: 0.92;
  position: relative;
}

.appstore-badge .glyph {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.appstore-badge .label small {
  display: block;
  font-size: 10px;
  opacity: 0.8;
  font-weight: 400;
}

.appstore-badge .label strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  font-family: -apple-system, sans-serif;
  margin-top: 1px;
}

.android-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  color: var(--ink);
  padding: 11px 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(20, 22, 26, 0.06);
}

.android-badge .glyph {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.android-badge .label small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
}

.android-badge .label strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  font-family: -apple-system, sans-serif;
  margin-top: 1px;
  color: var(--ink);
}

/* scattered platform icons */
.icon-field {
  position: relative;
  height: 220px;
  max-width: 640px;
  margin: 56px auto 0;
}

.icon-badge {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 22, 26, 0.1);
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.icon-badge .bob {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: iconFloat;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

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

@keyframes iconFloat {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(2px, -7px); }
  50%  { transform: translate(-2px, -3px); }
  75%  { transform: translate(-3px, -8px); }
  100% { transform: translate(0, 0); }
}

.icon-badge:nth-of-type(1) .bob { animation-duration: 4.3s; animation-delay: 0s; }
.icon-badge:nth-of-type(2) .bob { animation-duration: 5.2s; animation-delay: .3s; }
.icon-badge:nth-of-type(3) .bob { animation-duration: 4.8s; animation-delay: .6s; }
.icon-badge:nth-of-type(4) .bob { animation-duration: 5.6s; animation-delay: .15s; }
.icon-badge:nth-of-type(5) .bob { animation-duration: 4.1s; animation-delay: .8s; }
.icon-badge:nth-of-type(6) .bob { animation-duration: 5.4s; animation-delay: .45s; }
.icon-badge:nth-of-type(7) .bob { animation-duration: 4.6s; animation-delay: .2s; }
.icon-badge:nth-of-type(8) .bob { animation-duration: 5.0s; animation-delay: .65s; }

@media (prefers-reduced-motion: reduce) {
  .icon-badge .bob { animation: none; }
  .icon-badge { transition: none; }
}

/* ---------- Product mock ---------- */

.mock-wrap {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.mock-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 8px;
}

.mock-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(20, 22, 26, 0.06);
}

.mock-card .cover {
  position: relative;
  height: 118px;
  background: var(--line);
  overflow: hidden;
}

.mock-card .cover .cover-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mock-card .cover .platform-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 10px rgba(20, 22, 26, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.mock-card .cover .platform-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mock-card .cover .fav-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}

.mock-card .body { padding: 10px 12px 14px; }

.mock-card .mtitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mock-card .msummary {
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mock-card .tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  color: var(--accent-text);
  background: var(--accent-soft);
  padding: 3px 8px;
  border-radius: 999px;
  margin-top: 7px;
}

.mock-card.tall .cover { height: 168px; }
.mock-card.short .cover { height: 88px; }

@media (max-width: 720px) {
  .mock-card-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Sections ---------- */

section { padding: 88px 0; }

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.section-head .kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: 34px;
  font-weight: 500;
  margin: 0 0 12px;
  line-height: 1.2;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

/* Feature cards */

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
}

.feature-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  font-family: -apple-system, sans-serif;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 800px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* Steps */

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

.step {
  text-align: center;
  padding: 0 12px;
}

.step .num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
  font-family: -apple-system, sans-serif;
}

.step p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; gap: 32px; }
}

/* Pricing */

.pricing-section { background: var(--ink); color: #fff; border-radius: 32px; margin: 0 20px; }
.pricing-section .wrap { max-width: 1000px; }
.pricing-section .section-head p { color: rgba(255,255,255,0.6); }
.pricing-section .section-head .kicker { color: var(--accent); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}

.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 22px;
  padding: 28px 26px;
}

.price-card.highlight {
  background: rgba(255,90,54,0.08);
  border-color: var(--accent);
  position: relative;
}

.price-card .badge {
  position: absolute;
  top: -12px;
  right: 22px;
  background: var(--accent);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
}

.price-card .plan {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.price-card .amount {
  font-family: "Newsreader", Georgia, serif;
  font-size: 34px;
  margin-bottom: 4px;
}

.price-card .per {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
}

.price-card li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-section { margin: 0; border-radius: 0; }
}

/* Footer */

footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
}

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

footer .foot-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
}

footer .foot-links a:hover { color: var(--ink); }

footer .copyright {
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- Legal pages ---------- */

.legal-page .wrap { max-width: 720px; }

.legal-header { padding: 56px 0 20px; }

.legal-header a.back {
  font-size: 13px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
}

.legal-header h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.legal-header .updated {
  font-size: 13px;
  color: var(--muted);
}

.legal-body { padding-bottom: 90px; font-size: 15.5px; line-height: 1.7; }

.legal-body h2 {
  font-size: 20px;
  font-weight: 600;
  font-family: -apple-system, sans-serif;
  margin: 40px 0 12px;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p, .legal-body li { color: #2b2d31; }
.legal-body ul { padding-left: 20px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--accent-text); text-decoration: underline; }

.legal-body .note {
  background: var(--accent-soft);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 13.5px;
  color: var(--accent-text);
  margin-bottom: 30px;
}

@media (max-width: 640px) {
  h1 { font-size: 38px; }
  .hero { padding: 64px 0 40px; }
  .icon-field { height: 160px; max-width: 320px; margin: 40px auto 0; }
  .icon-badge { width: 40px; height: 40px; }
  section { padding: 64px 0; }
}
