:root {
  --bg: #f3f3f3;
  --surface: #ffffff;
  --text-dark: #393b40;
  --text-body: #4c4f54;
  --brand: #0ab166;
  --button-bg: #111111;
  --button-text: #ffffff;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.08);
  --header-height: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text-dark);
  font-family: "Inter", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(1200px, calc(100% - 56px));
  margin: 0 auto;
}

.site-header {
  background: var(--bg);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: clamp(12px, 4vw, 48px);
  color: var(--text-dark);
  font-size: 17px;
  font-weight: 500;
}

.site-nav a {
  transition: opacity 0.2s ease;
}

.site-nav a:hover {
  opacity: 0.68;
}

.hero-section {
  padding: 50px 0 8px;
}

.hero-grid {
  min-height: calc(100vh - var(--header-height) - 100px);
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  align-items: start;
  gap: 24px;
}

.hero-copy {
  max-width: 560px;
  justify-self: center;
  align-self: start;
  text-align: center;
  padding-top: 10px;
}

.hero-kicker {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.58;
  font-weight: 400;
  color: var(--text-dark);
}

.hero-title {
  margin: 4px 0 16px;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--brand);
}

.hero-text {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.58;
  font-weight: 400;
  color: var(--text-dark);
}

.play-button-link {
  display: inline-block;
  width: min(200px, 100%);
  margin: 24px auto 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.play-button-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.play-button-link img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-device {
  --device-width: min(100%, 240px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: start;
  padding-top: 10px;
}

.device-frame {
  width: var(--device-width);
}

.device-frame img {
  width: 100%;
  aspect-ratio: 536 / 1121;
  object-fit: contain;
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.14));
}

.privacy-main {
  padding: 8px 0 72px;
}

.privacy-shell {
  display: flex;
  justify-content: center;
}

.privacy-card {
  width: min(900px, 100%);
  background: var(--surface);
  border-radius: 28px;
  padding: 42px 38px;
  box-shadow: var(--shadow-soft);
}

.privacy-card h1,
.privacy-card h2,
.privacy-card h3,
.privacy-card strong {
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--text-dark);
}

.privacy-card h1 {
  margin: 0 0 16px;
}

.privacy-card h2 {
  margin: 28px 0 12px;
}

.privacy-card h3 {
  margin: 18px 0 10px;
}

.privacy-card p,
.privacy-card li {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.6;
}

.privacy-card p {
  margin: 0 0 14px;
}

.privacy-card ul {
  margin: 0 0 14px;
  padding-left: 24px;
}

.privacy-card li {
  margin-bottom: 6px;
}

.privacy-card a {
  color: var(--brand);
}

.site-footer {
  padding: 0 0 8px;
  background: var(--bg);
  color: var(--text-dark);
  text-align: center;
  font-size: 18px;
  font-weight: 300;
}

@media (max-width: 980px) {
  .hero-section {
    padding: 10px 0 6px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-copy {
    max-width: 640px;
    padding-top: 0;
  }

  .hero-device {
    --device-width: min(240px, 68vw);
    padding-top: 0;
  }

  .play-button-link {
    width: min(200px, 100%);
    margin-top: 18px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .header-inner {
    min-height: unset;
    padding: 16px 0;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .site-nav {
    font-size: 15px;
    margin-right: 10px;
  }

  .hero-section {
    padding: 8px 0 18px;
  }

  .hero-kicker {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-title {
    font-size: clamp(30px, 9vw, 44px);
    margin: 4px 0 14px;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.55;
  }

  .play-button-link {
    width: min(185px, 100%);
    margin-top: 18px;
  }

  .hero-device {
    --device-width: min(220px, 68vw);
  }

  .privacy-card {
    border-radius: 22px;
    padding: 28px 20px;
  }

  .privacy-card h1,
  .privacy-card h2,
  .privacy-card h3,
  .privacy-card strong {
    font-size: 16px;
  }

  .privacy-card p,
  .privacy-card li {
    font-size: 15px;
  }

  .site-footer {
    padding-bottom: 6px;
  }
}