:root {
  color-scheme: light;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Manrope", "Helvetica Neue", sans-serif;
  --bg: #fdf7fb;
  --bg-elevated: #ffffff;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #292933;
  --text-muted: #70788f;
  --text-soft: #9aa1b0;
  --accent: #ed75a1;
  --accent-glow: rgba(237, 117, 161, 0.35);
  --line: rgba(41, 41, 51, 0.08);
  --shadow: 0 30px 60px rgba(35, 35, 45, 0.12);
  --radius: 24px;
  --content-width: 1120px;
}

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

html,
body {
  max-width: 100vw;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body), sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(237, 117, 161, 0.25), transparent 45%),
    radial-gradient(circle at 80% 15%, rgba(212, 230, 250, 0.7), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(250, 224, 209, 0.7), transparent 55%),
    repeating-linear-gradient(
      0deg,
      rgba(41, 41, 51, 0.04) 0,
      rgba(41, 41, 51, 0.04) 1px,
      transparent 1px,
      transparent 28px
    ),
    linear-gradient(135deg, #fadbed, #d4e6fa 45%, #fae0d1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 32px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  border-radius: 16px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9), 0 18px 30px rgba(237, 117, 161, 0.2);
}

.logo-title {
  font-family: var(--font-display), serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.logo-subtitle {
  color: var(--text-soft);
  font-size: 0.86rem;
}

.nav-links {
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 14px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.nav-links a:hover {
  border-color: rgba(237, 117, 161, 0.4);
  color: var(--text);
  background: rgba(255, 255, 255, 0.6);
}

.section {
  display: grid;
  gap: 20px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 40px;
}

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

.hero-title {
  font-family: var(--font-display), serif;
  margin: 16px 0;
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  line-height: 1.05;
}

.hero-title span {
  color: var(--accent);
  text-shadow: 0 0 22px rgba(237, 117, 161, 0.45);
}

.lead {
  color: var(--text-muted);
  max-width: 540px;
  font-size: 1.1rem;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 10px;
}

.privacy-cta {
  margin-top: 18px;
}

.button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.button.primary {
  background: linear-gradient(135deg, #ed75a1, #f59bbd);
  color: #fffafc;
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(237, 117, 161, 0.35);
}

.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(237, 117, 161, 0.4);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.6);
}

.button.ghost:hover {
  border-color: rgba(237, 117, 161, 0.5);
  color: var(--accent);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.badge {
  border: 1px solid var(--line);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
}

.badge.accent {
  color: #fffafc;
  background: var(--accent);
  border-color: transparent;
}

.hero-panel {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -90px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 117, 161, 0.45), transparent 70%);
  filter: blur(18px);
  opacity: 0.9;
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: -80px;
  left: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 230, 250, 0.7), transparent 70%);
  filter: blur(20px);
  opacity: 0.9;
}

.hero-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.section-head {
  display: grid;
  gap: 10px;
  max-width: 680px;
}

.section-title {
  font-family: var(--font-display), serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}

.section-lead {
  color: var(--text-muted);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.panel-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  display: grid;
  gap: 8px;
  box-shadow: 0 14px 24px rgba(41, 41, 51, 0.08);
}

.panel-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.panel-meta {
  color: var(--text-soft);
  font-size: 0.85rem;
}

.panel-list {
  color: var(--text-muted);
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
}

.marquee {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12% 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12% 88%, transparent);
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 20px;
  animation: marquee 35s linear infinite;
}

.screen-card {
  flex: none;
  width: 220px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 18px rgba(41, 41, 51, 0.08);
  animation: float 6s ease-in-out infinite;
}

.screen-card:nth-child(2n) {
  animation-delay: -2s;
}

.screen-card:nth-child(3n) {
  animation-delay: -4s;
}

.screen-frame {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(237, 117, 161, 0.2);
}

.screen-frame img {
  width: 100%;
  height: auto;
}

.screen-caption {
  color: var(--text-soft);
  margin-top: 8px;
  font-size: 0.8rem;
}

.spin {
  animation: spin 28s linear infinite;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  min-height: 180px;
  display: grid;
  gap: 10px;
}

.feature-title {
  font-weight: 600;
}

.feature-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.feature-tag {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-soft);
  font-size: 0.75rem;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  display: grid;
  gap: 12px;
}

.footer {
  color: var(--text-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.policy-layout {
  display: grid;
  gap: 24px;
}

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

.policy-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 10px;
  box-shadow: 0 14px 24px rgba(41, 41, 51, 0.08);
}

.policy-body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: grid;
  gap: 20px;
  box-shadow: var(--shadow);
}

.policy-section h3 {
  font-family: var(--font-display), serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.policy-section p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.policy-section ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-muted);
  display: grid;
  gap: 6px;
}

.policy-section a {
  color: var(--accent);
  font-weight: 600;
}

.policy-section a:hover {
  text-decoration: underline;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 980px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

@media (max-width: 640px) {
  .page {
    gap: 64px;
    padding: 24px 16px 64px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 7vw, 3rem);
  }

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

  .screen-card {
    width: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .spin,
  .screen-card {
    animation: none;
  }
}
