:root {
  color-scheme: dark;
  --ink: #fff8ff;
  --muted: #cbbdd5;
  --bg: #170d2b;
  --surface: #24133d;
  --surface-bright: #321852;
  --line: rgba(255, 225, 255, .15);
  --magenta: #d95d9f;
  --orange: #ff9d2e;
  --cyan: #35d9e8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 8%, rgba(217, 93, 159, .11), transparent 28rem),
    radial-gradient(circle at 5% 40%, rgba(53, 217, 232, .08), transparent 32rem),
    var(--bg);
  color: var(--ink);
  line-height: 1.65;
}
a { color: inherit; text-underline-offset: .22em; }
.site-header, main, footer { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 1.4rem; font-weight: 720; letter-spacing: -.02em; text-decoration: none; }
.app-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 15px;
  background: #ff9b68;
  box-shadow: 0 10px 28px rgba(255, 105, 75, .23);
}
.app-icon img { width: 88%; height: 88%; object-fit: contain; }
nav { display: flex; gap: clamp(12px, 3vw, 30px); align-items: center; }
nav a { color: var(--muted); text-decoration: none; font-weight: 700; font-size: .9rem; }
nav a:hover, nav a:focus-visible { color: var(--ink); }
.language { border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; }

.hero { min-height: 690px; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 50px; }
.hero-copy { max-width: 700px; }
.eyebrow { color: var(--magenta); text-transform: uppercase; letter-spacing: .16em; font-size: .73rem; font-weight: 850; }
h1, h2, h3 { margin-top: 0; line-height: 1.06; letter-spacing: -.04em; }
h1 { margin-bottom: 26px; font-size: clamp(3rem, 6.6vw, 6.15rem); font-weight: 650; }
h2 { margin-bottom: 22px; font-size: clamp(2.1rem, 4.6vw, 4.1rem); }
h3 { font-size: 1.32rem; }
.lead { max-width: 700px; color: var(--muted); font-size: clamp(1.04rem, 1.6vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 30px; }
.button { display: inline-block; padding: 13px 21px; border-radius: 999px; background: var(--magenta); color: white; font-weight: 850; text-decoration: none; }
.button-disabled { cursor: default; box-shadow: 0 12px 35px rgba(217, 93, 159, .16); }
.text-link { display: inline-block; color: var(--cyan); font-weight: 750; text-decoration-thickness: 1px; }

.hero-art { position: relative; aspect-ratio: 1; display: grid; place-items: center; isolation: isolate; }
.hero-art img { z-index: 2; width: min(100%, 520px); height: auto; filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .34)); }
.glow { position: absolute; inset: 12%; z-index: -1; border-radius: 50%; background: radial-gradient(circle, rgba(255, 157, 46, .3), rgba(255, 47, 162, .12) 45%, transparent 72%); }
.tag { position: absolute; z-index: 3; width: 50px; height: 50px; display: grid; place-items: center; border: 4px solid rgba(255,255,255,.82); border-radius: 50%; color: white; font-size: 1.35rem; font-weight: 900; box-shadow: 0 12px 28px rgba(0,0,0,.3); }
.tag-heart { top: 14%; right: 5%; background: var(--magenta); transform: rotate(9deg); }
.tag-travel { left: 2%; bottom: 24%; background: #7057ff; transform: rotate(-11deg); }
.tag-food { right: 6%; bottom: 12%; background: var(--cyan); }

.product { padding: 120px 0; border-top: 1px solid var(--line); }
.section-heading { max-width: 820px; }
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 58px; }
.features article { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.012)); }
.features span { color: var(--orange); font-size: .78rem; font-weight: 850; }
.features h3 { margin: 38px 0 11px; }
.features p { margin: 0; color: var(--muted); }
.privacy-callout { padding: 105px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.privacy-callout p { color: var(--muted); }

.policy { width: min(830px, calc(100% - 40px)); padding: 86px 0 120px; }
.policy h1 { font-size: clamp(2.5rem, 5.8vw, 4.7rem); }
.policy h2 { margin: 50px 0 13px; font-size: clamp(1.4rem, 3vw, 2rem); }
.policy p, .policy li { color: var(--muted); }
.policy strong { color: var(--ink); }
.policy a { color: var(--cyan); }
.policy-intro { font-size: 1.18rem; }
.policy-divider { height: 1px; margin: 105px 0; background: var(--line); }

footer { min-height: 180px; padding: 45px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto auto; align-items: start; gap: 38px; color: var(--muted); }
.ffox-brand { display: inline-flex; width: fit-content; align-items: center; gap: 11px; color: var(--ink); font-size: 1.18rem; font-weight: 900; letter-spacing: .08em; text-decoration: none; }
.ffox-brand img { width: 44px; height: 44px; }
.footer-links { display: grid; gap: 7px; }
footer p { margin: 0; }

@media (max-width: 760px) {
  .site-header { min-height: 70px; }
  nav a:first-child { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 18px; padding: 70px 0; }
  .hero-art { width: min(88vw, 430px); margin: auto; grid-row: 1; }
  .features, .privacy-callout { grid-template-columns: 1fr; }
  .product, .privacy-callout { padding: 76px 0; }
  footer { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 430px) {
  .site-header, main, footer { width: min(100% - 28px, 1160px); }
  .brand { font-size: 1.14rem; }
  .app-icon { width: 39px; height: 39px; border-radius: 12px; }
  nav { gap: 9px; }
  h1 { font-size: 2.7rem; }
  .features article { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
