:root {
  --bg: #f8eee7;
  --bg-soft: #fff6f0;
  --ink: #1f2026;
  --ink-soft: #565763;
  --line: rgba(31, 32, 38, 0.12);
  --navy: #202838;
  --green: #2f8f64;
  --green-soft: #d8eee3;
  --orange: #e39a4c;
  --orange-soft: #f6e4cf;
  --red: #c5343f;
  --red-deep: #5d0b11;
  --card: rgba(255, 248, 242, 0.84);
  --card-strong: rgba(255, 249, 244, 0.94);
  --shadow: 0 24px 60px rgba(93, 11, 17, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --content-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(197, 52, 63, 0.08), transparent 34%),
    linear-gradient(180deg, #fffaf6 0%, var(--bg) 54%, #f1e3d9 100%);
}

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

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
  padding-bottom: 4rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  gap: 1rem;
  margin-top: 0.7rem;
}

.brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  font-weight: 700;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
  border-radius: 0.9rem;
  filter: drop-shadow(0 10px 18px rgba(93, 11, 17, 0.18));
}

.brand-name,
h1,
h2,
h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
}

.brand-name {
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1;
}

.topbar-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0.25rem;
  border: 1px solid rgba(31, 32, 38, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 140ms ease;
}

.nav-link-current {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 4px 12px rgba(32, 40, 56, 0.16);
}

.nav-link:not(.nav-link-current):hover {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(31, 32, 38, 0.08);
  transform: translateY(-1px);
}

.store-pill,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.official-store-badge {
  display: block;
  height: auto;
}

.official-store-badge-play {
  width: 12.2rem;
}

.official-store-badge-apple {
  width: 10.55rem;
}

.store-pill,
.secondary-button {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  color: var(--navy);
}

.primary-button {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 28px rgba(22, 49, 77, 0.18);
}

.store-pill:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  gap: 2.6rem;
  align-items: center;
  padding: 1rem 0 2.1rem;
  max-width: 68rem;
  margin: 0 auto;
}

.hero-copy {
  max-width: 29rem;
  text-align: left;
  justify-self: end;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

h1 {
  margin: 0 0 0.9rem;
  font-size: clamp(2.6rem, 4.6vw, 4.15rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

h1 span {
  display: block;
}

.hero-line-nowrap {
  white-space: nowrap;
}

.hero-text,
.feature-card p,
.share-copy p {
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 1.03rem;
}

.hero-text {
  max-width: 32rem;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  margin-top: 0.85rem;
  justify-content: flex-start;
}

.cta-row-hero {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: visible;
  width: 100%;
  margin-top: 0;
}

.hero-device-art {
  display: block;
  width: min(100%, 74rem);
  max-width: 100%;
  height: auto;
}

.hero-device-art-profile {
  width: min(100%, 20.5rem);
}

.product-showcase,
.product-card,
.share-section {
  border: 1px solid rgba(22, 49, 77, 0.08);
  box-shadow: 0 14px 30px rgba(93, 11, 17, 0.06);
}

.feature-kicker {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-showcase,
.product-card,
.support-section,
.share-section {
  border-radius: var(--radius-lg);
  background: var(--card-strong);
}

.product-showcase-copy h2,
.support-section-copy h2,
.share-copy h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.06;
}

.product-showcase {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  margin-top: 0.65rem;
  padding: 1.3rem;
}

.product-showcase-copy {
  max-width: 36rem;
}

.product-showcase-copy p:last-child {
  margin-bottom: 0;
}

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

.product-showcase-art {
  display: block;
  width: min(100%, 56rem);
  max-width: 100%;
  height: auto;
}

.product-showcase-art-phone {
  width: min(100%, 24rem);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  text-align: center;
  padding: 1.2rem;
}

.support-section {
  margin-top: 0.8rem;
  padding: 1.1rem;
  border: 1px solid rgba(22, 49, 77, 0.06);
  box-shadow: 0 8px 18px rgba(93, 11, 17, 0.03);
}

.support-section-copy {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.support-section-copy p:last-child {
  margin-bottom: 0;
}

.support-page {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0.25rem 0 1.6rem;
}

.support-page-hero {
  text-align: center;
  padding: 0.2rem 0 0;
}

.support-page-text {
  max-width: 34rem;
  margin: 0 auto;
}

.support-link {
  color: var(--red);
  font-weight: 700;
}

.support-note {
  font-size: 0.96rem;
}

.privacy-updated {
  margin-top: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.privacy-checklist {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.privacy-check-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  border-radius: var(--radius-md);
  border: 1px solid rgba(22, 49, 77, 0.06);
  background: rgba(255, 255, 255, 0.34);
  padding: 0.95rem 1rem;
}

.privacy-check-item h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.2;
}

.privacy-check-item p {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.privacy-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: rgba(47, 143, 100, 0.14);
  color: var(--green);
  font-weight: 800;
}

.support-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

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

.support-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(22, 49, 77, 0.06);
  background: rgba(255, 255, 255, 0.34);
  padding: 0.9rem;
  text-align: left;
}

.support-card h3 {
  margin: 0.2rem 0 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.support-card p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.support-step {
  margin: 0;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1.1rem;
}

.audience-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 49, 77, 0.06);
  background: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  color: var(--navy);
}

.faq-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.15rem;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(22, 49, 77, 0.06);
  background: rgba(255, 255, 255, 0.46);
  padding: 0.95rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.share-section {
  margin-top: 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  border-color: rgba(22, 49, 77, 0.06);
  background:
    radial-gradient(circle at top center, rgba(197, 52, 63, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(255, 251, 247, 0.98) 0%, rgba(255, 245, 238, 0.94) 100%);
  box-shadow:
    0 22px 40px rgba(93, 11, 17, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.share-copy {
  max-width: 34rem;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.05rem;
  justify-content: center;
}

.share-support-link {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    max-width: none;
    align-items: start;
  }

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

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


  .hero {
    padding-top: 0.75rem;
  }

  .hero-copy {
    max-width: none;
    text-align: center;
    justify-self: stretch;
    margin-top: 0;
  }

  .hero-text {
    max-width: 39rem;
    margin: 0 auto;
  }

  .hero-device-art {
    width: min(100%, 70rem);
    max-width: 100%;
  }

  .hero-device-art-profile {
    width: min(100%, 28rem);
  }

  .hero-visual {
    margin-top: 0;
  }

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

  .topbar {
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .brand {
    align-items: center;
  }

  .topbar-nav {
    justify-content: center;
  }

  .product-showcase {
    gap: 1rem;
    padding: 1.35rem;
  }

  .product-card {
    padding: 1.35rem;
  }

  .support-section {
    padding: 1.1rem;
  }

  .share-actions {
    margin-top: 0.25rem;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--content-width));
  }

  .topbar {
    padding-top: 0.8rem;
  }

  h1 {
    font-size: clamp(2.45rem, 16vw, 3.8rem);
  }

  .product-card,
  .share-section {
    border-radius: 1.3rem;
  }
}
