:root {
  --bg: #fff7fb;
  --card: #ffffffcc;
  --line: #f3dce8;
  --text: #3e214b;
  --muted: #775e83;
  --pink: #ed5f9f;
  --pink-dark: #de468b;
  --shadow: 0 24px 55px rgba(224, 112, 163, 0.2);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  background:
    radial-gradient(circle at 15% 20%, #ffe6f0 0%, transparent 45%),
    radial-gradient(circle at 82% 18%, #ffe7f6 0%, transparent 40%),
    linear-gradient(180deg, #fff8fc 0%, #fff3f9 100%);
  color: var(--text);
  min-height: 100vh;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.glow {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(85px);
}

.glow-a {
  width: 340px;
  height: 340px;
  background: #ffcae2;
  left: -130px;
  top: 80px;
}

.glow-b {
  width: 420px;
  height: 420px;
  background: #ffd6eb;
  right: -160px;
  top: 40px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
}

.brand strong {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  line-height: 1;
  color: #d94d90;
}

.brand span {
  display: block;
  font-size: 13px;
  color: #ba658e;
}

.main-nav {
  display: flex;
  gap: 26px;
}

.main-nav a {
  text-decoration: none;
  color: #5b3868;
  font-weight: 600;
}

.main-nav a.active {
  color: var(--pink);
  border-bottom: 2px solid var(--pink);
  padding-bottom: 6px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
}

.lang-btn {
  text-decoration: none;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 99px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.lang-btn:hover {
  color: var(--pink);
  background: rgba(237, 95, 159, 0.05);
}

.lang-btn.active {
  color: var(--pink);
  background: rgba(237, 95, 159, 0.1);
  border-color: rgba(237, 95, 159, 0.2);
}

.lang-sep {
  color: var(--line);
  font-weight: 400;
}

.download-btn {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, #f26ca6 0%, #eb5f9e 100%);
  padding: 14px 26px;
  border-radius: 999px;
}


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

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5.2vw, 74px);
  line-height: 1.08;
}

.hero h1 span {
  color: var(--pink);
}

.hero-copy p {
  margin-top: 22px;
  font-size: 26px;
  line-height: 1.45;
  max-width: 580px;
  color: #4e2f5f;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(237, 95, 159, 0.33);
}

.btn-ghost {
  background: #fff;
  color: #5c3a66;
  border: 1px solid #f2d8e8;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -10px;
}

.avatars img:first-child {
  margin-left: 0;
}

.social-proof p {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

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

.hero-visual::before {
  content: '';
  position: absolute;
  width: min(620px, 96%);
  height: 82%;
  border-radius: 34px;
  border: 2px solid #fbe0ee;
  top: 9%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-visual img {
  width: min(620px, 100%);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 26px;
  filter: drop-shadow(0 30px 32px rgba(237, 95, 159, 0.26));
}

.feature-strip {
  margin-top: 14px;
  background: var(--card);
  border: 1px solid #f5e6ee;
  border-radius: 26px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-strip article {
  padding: 34px 24px;
}

.feature-strip article + article {
  border-left: 1px solid var(--line);
}

.feature-strip h3 {
  font-size: 26px;
}

.feature-strip p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 18px;
}

.journey {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 0.95fr 0.56fr 0.8fr;
  margin-top: 42px;
  align-items: center;
}

.journey-copy small {
  letter-spacing: 0.15em;
  color: var(--pink);
  font-weight: 700;
}

.journey-copy h2 {
  margin-top: 10px;
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.15;
}

.journey-copy ul {
  list-style: none;
  margin: 18px 0 24px;
  display: grid;
  gap: 14px;
  font-size: 19px;
}

.journey-copy li {
  color: var(--muted);
}

.journey-copy strong {
  color: var(--text);
}

.phone-preview {
  background: #fff;
  border-radius: 42px;
  border: 1px solid #f7dae8;
  padding: 18px;
  box-shadow: var(--shadow);
  align-self: center;
}

.phone-preview img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 30px;
}

.phone-stack {
  display: grid;
  gap: 14px;
  align-self: center;
}

.phone-stack img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 26px;
  border: 1px solid #f4dbe8;
  box-shadow: 0 10px 20px rgba(224, 112, 163, 0.2);
}

.signal-cards {
  display: grid;
  gap: 12px;
}

.signal-cards article {
  background: #fff;
  border: 1px solid #f4dbe8;
  border-radius: 20px;
  padding: 20px;
}

.signal-cards h4 {
  color: #df4c8d;
  margin-bottom: 6px;
  font-size: 20px;
}

.signal-cards p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 17px;
}

.bottom-grid {
  margin: 42px 0 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.testimonial,
.award-grid {
  border: 1px solid #f2ddeb;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 26px;
}

.testimonial p {
  font-size: 20px;
  line-height: 1.6;
}

.testimonial span {
  margin-top: 12px;
  display: inline-block;
  color: var(--muted);
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.award-grid div {
  background: #fff7fc;
  border: 1px solid #f4dfeb;
  border-radius: 14px;
  padding: 14px;
}

.award-grid strong {
  display: block;
  font-size: 17px;
  line-height: 1.4;
}

.award-grid span {
  color: #9a789f;
  font-size: 15px;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .social-proof {
    justify-content: center;
  }

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

  .feature-strip article:nth-child(3) {
    border-left: 0;
  }

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

@media (max-width: 720px) {
  .site-header {
    padding-top: 16px;
  }

  .brand strong {
    font-size: 28px;
  }

  .download-btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .hero-copy p {
    font-size: 20px;
  }

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

  .btn {
    text-align: center;
  }

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

  .feature-strip article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .bottom-grid,
  .award-grid {
    grid-template-columns: 1fr;
  }
}

/* Privacy & Policy page styling */
.privacy-container {
  padding: 40px 0;
  width: min(900px, 92vw);
  margin: 40px auto;
}

.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(243, 220, 232, 0.6);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 48px;
}

.privacy-container h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.5vw, 48px);
  color: var(--text);
  margin-bottom: 8px;
}

.last-updated {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}

.privacy-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--text);
  margin: 36px 0 16px;
}

.privacy-content p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 16px;
}

.privacy-content ul {
  margin: 14px 0 24px 24px;
  display: grid;
  gap: 12px;
}

.privacy-content li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.privacy-content strong {
  color: var(--text);
}

/* Footer styling */
footer {
  margin-top: 80px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 24px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--pink);
  transform: translateY(-1px);
}

footer p {
  font-size: 14px;
  color: var(--muted);
  opacity: 0.8;
}

@media (max-width: 720px) {
  .glass-card {
    padding: 24px;
    border-radius: 20px;
  }
  
  .footer-links {
    gap: 18px;
  }
}
