:root {
  color-scheme: light;
  --ink: #201f2e;
  --muted: #69677a;
  --line: #eceaf5;
  --soft: #fff7fb;
  --brand: #ff5aa5;
  --brand-dark: #db2f84;
  --violet: #7057ff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(63, 45, 91, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7fb 0%, #ffffff 34%);
  line-height: 1.6;
}

.home-landing {
  background: #fff url("home/home_bg.webp") top center / cover repeat-y;
}

.classic-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 66px;
  padding: 0 8%;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.classic-brand {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.classic-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  flex: 1;
  font-size: 14px;
  font-weight: 800;
}

.classic-nav a {
  color: var(--ink);
}

.classic-header img {
  display: block;
}

.classic-product {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 5vw;
  align-items: center;
  min-height: calc(100vh - 66px);
  padding: 7vw 9vw 4vw;
}

.classic-fotoplay {
  grid-template-columns: .9fr 1.1fr;
  min-height: 82vh;
}

.classic-preview img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.classic-copy {
  max-width: 540px;
}

.classic-icon {
  display: block;
  width: 68px;
  height: 68px;
  margin-bottom: 26px;
  border-radius: 18px;
}

.classic-title-image {
  display: block;
  width: min(330px, 80%);
  margin-bottom: 22px;
}

.classic-title-image.fotoplay-title {
  width: min(290px, 76%);
}

.classic-copy h1,
.classic-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.classic-copy p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
}

.store-button {
  display: inline-block;
}

.store-button img {
  display: block;
  width: 190px;
  max-width: 100%;
}

.store-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.store-button.small img {
  width: 150px;
}

.geo-section {
  background: rgba(255, 255, 255, .92);
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin: clamp(36px, 5vw, 64px) clamp(20px, 5vw, 72px) 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 54px rgba(63, 45, 91, .08);
}

.trust-main {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.trust-icon {
  flex: 0 0 auto;
  border-radius: 18px;
}

.trust-strip h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
}

.trust-strip p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.use-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.use-pills span,
.use-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff7fb;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.use-pills a {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--violet));
  box-shadow: 0 12px 28px rgba(219, 47, 132, .18);
}

.sibling-app {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: clamp(30px, 5vw, 60px) clamp(20px, 5vw, 72px);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 36px rgba(63, 45, 91, .06);
}

.sibling-app h2 {
  font-size: clamp(24px, 3vw, 38px);
}

.sibling-icon {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 18px;
}

.sibling-app p {
  max-width: 780px;
  color: var(--muted);
}

.sibling-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

a {
  color: var(--brand-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  font-size: 20px;
}

.brand img {
  border-radius: 12px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

nav a {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, .96fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.hero h1,
.section h1,
.section h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 76px);
}

.section h1 {
  max-width: 900px;
  font-size: clamp(38px, 5vw, 64px);
}

.section h2 {
  max-width: 780px;
  font-size: clamp(30px, 4vw, 48px);
}

.lead {
  max-width: 740px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2.2vw, 23px);
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--violet));
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.proof {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  padding: 18px;
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  border-radius: 24px;
}

.section {
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

.section > p,
.section > .lead {
  max-width: 760px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.card,
.note {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 36px rgba(63, 45, 91, .06);
}

.card h3,
.note h3 {
  margin: 0 0 10px;
  font-size: 21px;
  letter-spacing: -.02em;
}

.card-icon {
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  object-fit: contain;
}

.card p,
.note p,
.section li,
.faq p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: start;
}

.check-list {
  padding-left: 20px;
  margin-top: 24px;
}

.check-list li {
  margin: 10px 0;
}

.faq details {
  max-width: 900px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 19px;
}

.site-footer {
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #15131f;
}

.site-footer a {
  color: #ffd5e9;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px) clamp(30px, 5vw, 56px);
  background: linear-gradient(180deg, #fff7fb 0%, #fff 100%);
}

.page-visual {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.page-visual img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 22px;
}

.content {
  max-width: 980px;
  padding: 0 clamp(20px, 5vw, 72px) 80px;
}

.content h2 {
  margin-top: 42px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.content p,
.content li {
  color: var(--muted);
  font-size: 18px;
}

.fact-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.fact-table th,
.fact-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.fact-table th {
  width: 32%;
  background: var(--soft);
}

@media (max-width: 900px) {
  .classic-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 8%;
  }

  .classic-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .classic-product,
  .classic-fotoplay {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 96px 8vw 56px;
  }

  .classic-fotoplay .classic-preview {
    order: -1;
  }

  .classic-copy {
    max-width: none;
    text-align: center;
  }

  .classic-icon,
  .classic-title-image {
    margin-left: auto;
    margin-right: auto;
  }

  .store-row {
    justify-content: center;
  }

  .hero,
  .page-hero,
  .split,
  .trust-strip,
  .sibling-app {
    grid-template-columns: 1fr;
  }

  .use-pills {
    justify-content: flex-start;
  }

  .sibling-actions {
    justify-content: flex-start;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  nav {
    gap: 10px 14px;
  }

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

  .hero h1,
  .section h1 {
    font-size: 40px;
  }
}
