:root {
  color-scheme: only light;
  --bg: #f6f1ea;
  --ink: #101116;
  --ink-soft: #3f424a;
  --card: #ffffff;
  --border: rgba(16, 17, 22, 0.12);
  --shadow: 0 30px 80px rgba(16, 17, 22, 0.2);
  --accent-1: #ff6b4a;
  --accent-2: #ffd84c;
  --accent-3: #5ad3ff;
  --accent-4: #7dff8a;
}

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

body {
  min-height: 100vh;
  background:
    radial-gradient(1000px 600px at 5% -10%, rgba(90, 211, 255, 0.35), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(255, 216, 76, 0.45), transparent 60%),
    radial-gradient(1000px 700px at 70% 90%, rgba(255, 107, 74, 0.25), transparent 60%),
    var(--bg);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.6;
  padding: 32px 6vw 48px;
}

.policy-page {
  padding: 32px 6vw 48px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(16, 17, 22, 0.03) 0,
      rgba(16, 17, 22, 0.03) 1px,
      transparent 1px,
      transparent 8px
    );
  pointer-events: none;
  opacity: 0.4;
}

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

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

section {
  margin: 80px 0;
}

.policy {
  max-width: 900px;
  margin: 0 auto;
}

.policy-header {
  margin-top: 60px;
  margin-bottom: 40px;
}

.policy-header h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-family: "Fraunces", serif;
  margin-bottom: 10px;
}

.policy-header p {
  color: var(--ink-soft);
}

.policy-section {
  margin: 40px 0;
  padding: 28px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(16, 17, 22, 0.08);
}

.policy-section h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-family: "Fraunces", serif;
}

.policy-section p {
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.policy-section ul {
  padding-left: 20px;
  color: var(--ink-soft);
  display: grid;
  gap: 8px;
}

.policy-section li {
  list-style: disc;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}

.logo img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(16, 17, 22, 0.18);
}

.logo p {
  font-size: 20px;
  font-family: "Fraunces", serif;
}

.logo span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
}

.app-button {
  background: #fff;
  border-radius: 999px;
  padding: 8px 18px;
  border: 1px solid rgba(16, 17, 22, 0.08);
  box-shadow: 0 10px 20px rgba(16, 17, 22, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(16, 17, 22, 0.18);
}

.app-button img {
  height: 40px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: start;
  margin-top: 64px;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  font-family: "Fraunces", serif;
  margin: 12px 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.lead {
  font-size: 1.1rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.download-badge {
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.download-badge:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 10px 22px rgba(16, 17, 22, 0.2));
}

.download-badge img {
  height: 56px;
}

.primary,
.secondary {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary {
  background: linear-gradient(120deg, var(--accent-1), var(--accent-2));
  color: #111;
  box-shadow: 0 12px 28px rgba(255, 107, 74, 0.28);
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255, 107, 74, 0.35);
}

.secondary {
  border: 1px solid rgba(16, 17, 22, 0.15);
  color: var(--ink);
}

.secondary:hover {
  background: rgba(16, 17, 22, 0.05);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.tag-row span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(16, 17, 22, 0.05);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.video-shell {
  padding: 20px;
  border-radius: 34px;
  background: linear-gradient(140deg, rgba(90, 211, 255, 0.2), rgba(255, 216, 76, 0.3));
  box-shadow: var(--shadow);
}

.video-frame {
  position: relative;
  width: clamp(260px, 30vw, 360px);
}

.video-slot {
  width: 100%;
  aspect-ratio: 886 / 1920;
  border-radius: 26px;
  border: 1px dashed rgba(16, 17, 22, 0.3);
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 20px;
}

.video-player {
  width: 100%;
  aspect-ratio: 886 / 1920;
  border-radius: 26px;
  border: 1px solid rgba(16, 17, 22, 0.2);
  object-fit: cover;
  background: #111218;
}

.video-sound {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(16, 17, 22, 0.15);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(16, 17, 22, 0.14);
}

.video-sound svg {
  width: 16px;
  height: 16px;
}

.video-sound .icon-on {
  display: none;
}

.video-sound[data-muted="false"] .icon-on {
  display: block;
}

.video-sound[data-muted="false"] .icon-off {
  display: none;
}

.video-slot p {
  font-weight: 700;
  font-size: 1.1rem;
}

.video-slot span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--ink-soft);
}

.video-slot small {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.story-copy h2 {
  font-size: 2rem;
  font-family: "Fraunces", serif;
  margin-bottom: 16px;
}

.story-copy p {
  margin-bottom: 16px;
  color: var(--ink-soft);
}

.story-callout {
  background: var(--card);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(16, 17, 22, 0.12);
}

.callout-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.callout-foot {
  margin-top: 12px;
  font-weight: 600;
}

.section-title {
  font-size: 2rem;
  font-family: "Fraunces", serif;
  margin-bottom: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(16, 17, 22, 0.1);
}

.feature-card h3 {
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--ink-soft);
}

.modes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.mode-card {
  background: linear-gradient(140deg, rgba(255, 107, 74, 0.2), rgba(125, 255, 138, 0.2));
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(16, 17, 22, 0.08);
}

.mode-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.mode-card p {
  color: var(--ink-soft);
}

.screens {
  margin-bottom: 100px;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.screen-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--border);
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.screen-title {
  font-weight: 700;
  font-size: 1rem;
}

.screen-card span {
  color: var(--ink-soft);
}

.testimonials {
  margin-top: 80px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--border);
  display: grid;
  gap: 12px;
  min-height: 200px;
}

.testimonial-card p {
  color: var(--ink-soft);
}

.testimonial-name {
  font-weight: 600;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #101116;
  background: var(--accent-2);
}

.avatar.tone-1 {
  background: linear-gradient(135deg, #ffd84c, #ff6b4a);
}

.avatar.tone-2 {
  background: linear-gradient(135deg, #5ad3ff, #7dff8a);
}

.avatar.tone-3 {
  background: linear-gradient(135deg, #ff8f6b, #ffd84c);
}

.avatar.tone-4 {
  background: linear-gradient(135deg, #7dff8a, #5ad3ff);
}

.cta {
  margin-top: 40px;
}

.cta-card {
  background: #111218;
  color: #f6f1ea;
  border-radius: 30px;
  padding: 40px;
  display: grid;
  gap: 16px;
  box-shadow: 0 30px 70px rgba(16, 17, 22, 0.4);
}

.cta-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-family: "Fraunces", serif;
}

.cta-card p {
  color: rgba(246, 241, 234, 0.78);
}

.cta-card .primary {
  justify-self: start;
}

.contact a {
  color: #ffd84c;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(16, 17, 22, 0.12);
  padding-top: 24px;
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  body {
    padding: 24px 6vw 32px;
  }

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

  .hero {
    margin-top: 40px;
  }

  .video-frame {
    width: min(320px, 100%);
  }

  .cta-card {
    padding: 28px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .primary,
  .secondary,
  .app-button {
    transition: none;
  }
}
