/* Winnow — landing/legal. Dark, mint, jemný glass. Striedmo, prémiovo (nie generický AI look). */
:root {
  --bg: #08090c;
  --bg-soft: #0e1014;
  --card: rgba(255, 255, 255, 0.035);
  --card-border: rgba(255, 255, 255, 0.08);
  --text: #eceef1;
  --muted: #969ba4;
  --mint: #4fe3c7;
  --mint-dim: #2fb8a0;
  --maxw: 1000px;
  --radius: 18px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* jeden veľmi jemný glow za herom — žiadne dúhové bloby */
body::before {
  content: ""; position: fixed; inset: -20% 0 auto 0; height: 620px; z-index: -1;
  background: radial-gradient(600px 380px at 50% 0%, rgba(79, 227, 199, 0.10), transparent 70%);
  pointer-events: none;
}
a { color: var(--mint); text-decoration: none; }
a:hover { color: #7ff0da; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* Nav */
nav {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  background: rgba(8, 9, 12, 0.6); border-bottom: 1px solid var(--card-border);
}
nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; color: var(--text); display: inline-flex; align-items: center; gap: 9px; }
.brand .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 16px var(--mint); }
.nav-right { display: flex; align-items: center; gap: 18px; font-size: 0.95rem; }
.nav-right a { color: var(--muted); }
.nav-right a:hover { color: var(--text); }
.lang { display: inline-flex; gap: 2px; border: 1px solid var(--card-border); border-radius: 999px; padding: 3px; }
.lang a {
  color: var(--muted); font-size: 0.82rem; text-decoration: none;
  padding: 4px 10px; border-radius: 999px; line-height: 1;
}
.lang a:hover { color: var(--text); }
.lang a[aria-current="true"] { background: var(--mint); color: #04120f; font-weight: 600; }

/* Hero */
.hero { text-align: center; padding: 92px 0 64px; }
.eyebrow { color: var(--mint); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.14em; text-transform: uppercase; }
h1 { font-size: clamp(2.3rem, 6vw, 3.9rem); line-height: 1.05; letter-spacing: -0.03em; margin: 16px 0 0; font-weight: 700; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 2.4vw, 1.28rem); max-width: 620px; margin: 20px auto 0; }
.cta { margin-top: 34px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.badge {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.98rem;
  padding: 13px 22px; border-radius: 14px; color: #04120f;
  background: var(--mint); box-shadow: 0 10px 40px rgba(79, 227, 199, 0.22);
}
.badge.soon { background: var(--card); color: var(--text); border: 1px solid var(--card-border); box-shadow: none; }
.fineprint { color: var(--muted); font-size: 0.9rem; }

/* Sections */
section { padding: 56px 0; }
.section-title { font-size: clamp(1.5rem, 3.5vw, 2.1rem); letter-spacing: -0.02em; text-align: center; font-weight: 700; }
.section-sub { color: var(--muted); text-align: center; margin: 10px auto 0; max-width: 560px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 40px; }
.card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 24px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.card h3 { font-size: 1.12rem; letter-spacing: -0.01em; margin-bottom: 7px; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card .ic { width: 34px; height: 34px; margin-bottom: 14px; color: var(--mint); }

/* Fair strip */
.strip { background: var(--bg-soft); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.strip .section-sub { max-width: 640px; }

/* Legal (privacy / terms) */
.legal { padding: 56px 22px 80px; }   /* horizontálny padding musí byť tu (shorthand by inak vynuloval .wrap) */
.legal h1 { font-size: clamp(1.9rem, 5vw, 2.6rem); text-align: left; }
.legal .meta { color: var(--muted); font-size: 0.95rem; margin-top: 6px; }
.legal h2 { font-size: 1.22rem; margin: 34px 0 8px; letter-spacing: -0.01em; }
.legal p, .legal li { color: #c9cdd3; }
.legal ul { padding-left: 22px; margin: 8px 0; }
.legal li { margin: 6px 0; }
.callout { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 18px 20px; margin: 22px 0; }

/* Footer */
footer { border-top: 1px solid var(--card-border); padding: 34px 0 60px; color: var(--muted); font-size: 0.92rem; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; justify-content: space-between; }
footer a { color: var(--muted); }
footer a:hover { color: var(--text); }
footer .links { display: flex; gap: 22px; flex-wrap: wrap; }

/* App Store badge (oficiálny Apple asset) */
.badge-appstore { display: inline-block; line-height: 0; transition: transform .15s ease, filter .15s ease; }
.badge-appstore img { height: 52px; width: auto; }
.badge-appstore:hover { transform: translateY(-2px); filter: brightness(1.08); }

/* Showcase — screenshoty appky */
.showcase .shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.shot { display: flex; flex-direction: column; }
.shot img { width: 100%; height: auto; border-radius: 22px; border: 1px solid var(--card-border); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5); }
.shot figcaption { margin-top: 16px; text-align: center; }
.shot figcaption h3 { font-size: 1.05rem; letter-spacing: -0.01em; }
.shot figcaption p { color: var(--muted); font-size: 0.94rem; margin-top: 4px; }

/* Plan / compare tabuľka */
.plan { background: var(--bg-soft); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.compare { width: 100%; max-width: 620px; margin: 40px auto 0; border-collapse: collapse; }
.compare th, .compare td { padding: 14px 12px; text-align: center; border-bottom: 1px solid var(--card-border); }
.compare thead th { font-size: 1rem; color: var(--muted); font-weight: 600; }
.compare thead th.pro { color: var(--mint); }
.compare thead th.pro span { display: block; font-size: 0.76rem; color: var(--muted); font-weight: 500; margin-top: 3px; }
.compare tbody th { text-align: left; font-weight: 500; color: var(--text); font-size: 0.96rem; }
.compare td.yes { color: var(--mint); font-weight: 700; font-size: 1.05rem; }
.compare td.no { color: var(--muted); }

/* FAQ */
.faqlist { max-width: 720px; margin: 36px auto 0; }
.faq { border: 1px solid var(--card-border); border-radius: 14px; background: var(--card); margin-bottom: 12px; }
.faq summary { cursor: pointer; font-weight: 600; padding: 16px 44px 16px 18px; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--mint); font-size: 1.4rem; line-height: 1; }
.faq[open] summary::after { content: "\2212"; }
.faq p { color: var(--muted); padding: 0 18px 16px; font-size: 0.97rem; }

@media (max-width: 720px) {
  .showcase .shots { grid-template-columns: 1fr; max-width: 330px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  .hero { padding: 64px 0 44px; }
  .nav-right .hide-sm { display: none; }
}
