/* Ukly — marketing site styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #121212;
  --bg-2: #171717;
  --surface: #1e1e1e;
  --surface-2: #2c2c2c;
  --primary: #f1b434;
  --primary-light: #f8d678;
  --primary-dark: #c9931b;
  --on-primary: #2d2d2d;
  --text: #f5f5f5;
  --text-2: #b0b0b0;
  --text-3: #808080;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 20px;
  --maxw: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-light); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav__logo { height: 30px; width: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { color: var(--text-2); font-weight: 500; font-size: 15px; }
.nav__links a:hover { color: var(--text); }
.nav__cta { background: var(--primary); color: var(--on-primary) !important; padding: 9px 18px; border-radius: 999px; font-weight: 600; }
.nav__cta:hover { background: var(--primary-light); }
@media (max-width: 720px) { .nav__links a:not(.nav__cta) { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 16px;
  transition: transform .15s ease, background .15s ease;
}
.btn--primary { background: var(--primary); color: var(--on-primary); }
.btn--primary:hover { background: var(--primary-light); color: var(--on-primary); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--primary); color: var(--text); }

/* ---------- Store badges ---------- */
.store-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #000; border: 1px solid var(--border); border-radius: 14px;
  padding: 10px 20px; color: var(--text);
  transition: border-color .15s ease, transform .15s ease;
}
.store-badge:hover { border-color: var(--primary); color: var(--text); transform: translateY(-1px); }
.store-badge__icon { width: 26px; height: 26px; fill: currentColor; flex: none; }
.store-badge__text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-badge__text small { font-size: 11px; color: var(--text-2); }
.store-badge__text strong { font-size: 18px; font-weight: 600; }
.cta-band .store-badges { justify-content: center; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 88px 0 64px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 180, 52, 0.16), transparent 62%);
  pointer-events: none;
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero__eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: var(--primary); background: rgba(241, 180, 52, 0.12);
  border: 1px solid rgba(241, 180, 52, 0.25); padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(38px, 6vw, 60px); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }
.hero h1 .accent { color: var(--primary); }
.hero p.lead { margin-top: 20px; font-size: 19px; color: var(--text-2); max-width: 30ch; }
.hero__actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__note { margin-top: 16px; font-size: 14px; color: var(--text-3); }
.hero__art { position: relative; display: flex; justify-content: center; }
.phone {
  width: 260px; max-width: 78%; border-radius: 38px; border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55); background: #000;
}
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero__eyebrow { margin-inline: auto; }
  .hero p.lead { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__art { margin-top: 40px; }
}

/* ---------- Section ---------- */
.section { padding: 72px 0; }
.section--alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section__head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -0.01em; }
.section__head p { margin-top: 14px; color: var(--text-2); font-size: 18px; }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; transition: border-color .2s ease, transform .2s ease;
}
.feature:hover { border-color: rgba(241, 180, 52, 0.35); transform: translateY(-3px); }
.feature__icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(241, 180, 52, 0.14); font-size: 22px; margin-bottom: 16px;
}
.feature h3 { font-size: 19px; font-weight: 600; }
.feature p { margin-top: 8px; color: var(--text-2); font-size: 15px; }

/* ---------- Screenshots ---------- */
.shots { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.shots img {
  width: 220px; max-width: 60vw; border-radius: 30px; border: 1px solid var(--border);
  box-shadow: 0 20px 55px rgba(0,0,0,0.5);
}

/* ---------- Pricing ---------- */
.pricing { max-width: 460px; margin: 0 auto; }
.price-card {
  background: linear-gradient(160deg, rgba(241,180,52,0.14), rgba(241,180,52,0.03));
  border: 1px solid rgba(241, 180, 52, 0.3); border-radius: 24px; padding: 36px; text-align: center;
}
.price-card .amount { font-size: 44px; font-weight: 800; }
.price-card .amount span { font-size: 18px; font-weight: 500; color: var(--text-2); }
.price-card .trial { color: var(--primary); font-weight: 600; margin-top: 6px; }
.price-card ul { list-style: none; margin: 24px 0; text-align: left; display: inline-block; }
.price-card li { padding: 7px 0 7px 30px; position: relative; color: var(--text-2); }
.price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 700; }
.cta-band p { color: var(--text-2); margin: 12px 0 28px; font-size: 18px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 48px 0 40px; background: var(--bg-2); }
.footer .container { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: flex-start; }
.footer__brand img { height: 26px; margin-bottom: 14px; }
.footer__brand p { color: var(--text-3); font-size: 14px; max-width: 34ch; }
.footer__links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer__col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-3); margin-bottom: 12px; }
.footer__col a { display: block; color: var(--text-2); font-size: 15px; padding: 4px 0; }
.footer__col a:hover { color: var(--text); }
.footer__legal { width: 100%; border-top: 1px solid var(--border); margin-top: 32px; padding-top: 22px; color: var(--text-3); font-size: 14px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer__legal a { color: var(--text-2); }

/* ---------- Prose (privacy / support) ---------- */
.page-hero { padding: 64px 0 24px; text-align: center; }
.page-hero h1 { font-size: clamp(30px, 5vw, 44px); font-weight: 800; }
.page-hero p { color: var(--text-3); margin-top: 10px; }
.prose { max-width: 760px; margin: 0 auto; padding: 24px 24px 80px; }
.prose h2 { font-size: 22px; font-weight: 700; margin: 34px 0 12px; }
.prose h3 { font-size: 18px; font-weight: 600; margin: 24px 0 8px; }
.prose p { color: var(--text-2); margin: 10px 0; }
.prose ul { margin: 10px 0 10px 22px; color: var(--text-2); }
.prose li { margin: 6px 0; }
.prose .card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 20px 24px; margin: 20px 0; }
.faq { border: 1px solid var(--border); border-radius: 14px; margin: 12px 0; overflow: hidden; background: var(--surface); }
.faq summary { cursor: pointer; padding: 18px 22px; font-weight: 600; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq[open] summary { color: var(--primary); }
.faq p { padding: 0 22px 20px; margin: 0; }
