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

:root {
  --bg: #f6f2ee;
  --surface: #ffffff;
  --text: #2e2a27;
  --muted: #6d6560;
  --line: #e6dbcf;
  --accent-start: #f4a261;
  --accent-end: #e76f51;
  --shadow: 0 18px 40px rgba(46, 42, 39, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(246, 242, 238, 0.8);
  border-bottom: 1px solid rgba(230, 219, 207, 0.55);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.nav-links {
  display: inline-flex;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  padding: 72px 0 48px;
  align-items: center;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.015em;
}

h1,
h2 {
  font-family: Newsreader, Georgia, serif;
}

h1 {
  margin-top: 10px;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.25rem);
  line-height: 1.12;
}

.subheadline {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 56ch;
}

.hero-cta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.96rem;
  border: 1px solid transparent;
}

.btn-primary {
  color: #2f2116;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
}

.btn-secondary {
  color: var(--text);
  background: color-mix(in srgb, #fff 75%, transparent 25%);
  border-color: var(--line);
}

.hero-points {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 0.95rem;
}

.hero-media {
  display: grid;
  gap: 10px;
}

.phone-frame {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.phone-frame img {
  width: 100%;
  display: block;
}

figcaption {
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

section {
  padding: 34px 0;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.problem h2,
.social-proof h2,
.how h2,
.features h2,
.screens h2,
.languages h2,
.seo-links h2 {
  text-align: center;
}

.problem-grid,
.quotes,
.steps,
.feature-grid {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

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

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

.problem-card,
.step,
.feature-grid .card,
.quotes .card {
  padding: 20px;
}

.problem-close {
  margin: 16px 0 0;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

blockquote {
  margin: 0;
  color: var(--text);
  display: grid;
  gap: 10px;
}

blockquote cite {
  color: var(--muted);
  font-style: normal;
  font-size: 0.92rem;
}

.step-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
  display: inline-block;
}

.step p,
.feature-grid p,
.problem-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.carousel {
  margin-top: 20px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 290px);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.carousel img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.privacy-card {
  padding: 24px;
}

.privacy-card p {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 62ch;
}

.privacy-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--text);
  font-weight: 600;
}

.languages p {
  margin: 10px 0 0;
  color: var(--muted);
  text-align: center;
}

.language-tags {
  margin: 16px auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.language-tags li {
  background: color-mix(in srgb, #fff 78%, transparent 22%);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
}

.language-tags span {
  font-weight: 500;
  color: var(--muted);
}

.cta-card {
  padding: 28px;
  text-align: center;
}

.cta-card .hero-cta {
  justify-content: center;
}

.seo-links ul {
  margin: 14px auto 0;
  max-width: 680px;
  color: var(--muted);
}

.seo-links li + li {
  margin-top: 8px;
}

.footer {
  padding: 20px 0 40px;
  text-align: center;
  color: var(--muted);
}

.article-page {
  padding: 36px 0 54px;
}

.back-link {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 700;
}

.article {
  padding: 28px;
}

.article h1 {
  font-size: clamp(1.9rem, 4.4vw, 2.8rem);
}

.article h2 {
  margin-top: 20px;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.article p,
.article li {
  color: var(--muted);
  font-size: 1.02rem;
}

.shape {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.shape-top {
  width: 420px;
  height: 420px;
  top: -200px;
  left: -120px;
  background: radial-gradient(circle at 50% 50%, rgba(244, 162, 97, 0.19), rgba(244, 162, 97, 0.02));
}

.shape-bottom {
  width: 500px;
  height: 500px;
  right: -180px;
  bottom: -260px;
  background: radial-gradient(circle at 50% 50%, rgba(231, 111, 81, 0.16), rgba(231, 111, 81, 0.02));
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 46px;
  }

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

  .nav-links {
    gap: 14px;
    font-size: 0.94rem;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 28px);
  }

  .nav {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }
}
