

:root {
  --paper: #F4EFE8;
  --paper-deep: #EBE2D6;
  --surface: #FFFFFF;
  --ink: #242424;
  --ink-soft: #57524B;
  --ink-faint: #8A847B;
  --green: #329F5B;
  --green-deep: #1B4332;
  --green-tint: #E2F2E8;
  --green-hi: #BFE3CE;
  --mint: #D4E9E2;
  --amber-tint: #FFF1E0;
  --amber-ink: #9A6B2F;
  --line: #DCD5CB;
  --display: 'Bricolage Grotesque', 'Avenir Next', 'Trebuchet MS', sans-serif;
  --body: 'Instrument Sans', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono: ui-monospace, 'SF Mono', 'Cascadia Mono', Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { max-width: 1140px; margin-inline: auto; padding-inline: 24px; }

h1, h2, h3 { font-family: var(--display); text-wrap: balance; }
h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}
.section-head { max-width: 620px; display: grid; gap: 14px; margin-bottom: 52px; }
.section-head p { color: var(--ink-soft); }

/* ---------- nav ---------- */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 232, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 15px;
}
.nav-logo { color: var(--ink); }
.nav-logo svg { height: 26px; width: auto; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  color: #fff;
  background: var(--green);
  padding: 10px 20px;
  border-radius: 999px;
  transition: background 0.15s, transform 0.15s;
}
.nav-cta:hover { background: #2A8A4E; transform: translateY(-1px); }
@media (max-width: 760px) { .nav-links { display: none; } }

/* ---------- hero ---------- */
.hero { padding-block: clamp(56px, 8vw, 104px) clamp(40px, 6vw, 72px); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.hero-copy { display: grid; gap: 22px; justify-items: start; }
.hero-copy h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.15rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.022em;
}
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(transparent 64%, var(--green-hi) 64%);
}
.lead {
  font-size: 1.16rem;
  color: var(--ink-soft);
  max-width: 34em;
}
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.badge-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: var(--ink);
  color: var(--paper);
  padding: 11px 22px 11px 16px;
  border-radius: 14px;
  transition: transform 0.15s, background 0.15s;
}
.badge-btn:hover { transform: translateY(-2px); background: #000; }
.badge-btn.soon {
  background: transparent;
  color: var(--ink-soft);
  border: 1.5px dashed #B9B1A5;
  cursor: default;
}
.badge-btn.soon:hover { transform: none; background: transparent; }
.badge-btn.soon .arrow { background: var(--paper-deep); }
.badge-btn.soon small { opacity: 0.8; }
.badge-btn .arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  flex: none;
}
.badge-btn small {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.65;
  line-height: 1.3;
}
.badge-btn strong {
  font-family: var(--display);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.2;
}
.platforms {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
}

/* hero load-in */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * , .phone-wrap { animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
  .hero-copy > :nth-child(2) { animation-delay: 0.07s; }
  .hero-copy > :nth-child(3) { animation-delay: 0.14s; }
  .hero-copy > :nth-child(4) { animation-delay: 0.21s; }
  .hero-copy > :nth-child(5) { animation-delay: 0.28s; }
  .phone-wrap { animation-delay: 0.18s; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- phone mockup ---------- */
.phone-wrap { position: relative; justify-self: center; padding: 24px 10px; }
.phone {
  width: min(300px, 82vw);
  border: 9px solid var(--ink);
  border-radius: 46px;
  background: var(--ink);
  box-shadow: 0 32px 64px -24px rgba(36, 36, 36, 0.35);
}
.screen {
  background: #FBF8F3;
  border-radius: 37px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 18.6;
  display: flex;
  flex-direction: column;
}
.p-island {
  width: 84px; height: 22px;
  background: var(--ink);
  border-radius: 999px;
  margin: 10px auto 6px;
  flex: none;
}
.p-body { padding: 6px 14px 0; display: grid; gap: 10px; align-content: start; flex: 1; }
.p-appbar { display: flex; align-items: center; gap: 8px; }
.p-appbar svg { height: 17px; width: auto; }
.p-search {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.72rem;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 8px;
}
.chips-row { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
}
.chip.on { background: var(--green-deep); color: #fff; border-color: var(--green-deep); }
.p-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  margin-top: 2px;
}
.pcard {
  background: #fff;
  border: 1px solid #EAE4DA;
  border-radius: 15px;
  padding: 10px;
  display: grid;
  gap: 8px;
}
.pcard-top { display: flex; gap: 9px; align-items: center; }
.pinfo { flex: 1; min-width: 0; }
.pthumb {
  width: 40px; height: 40px;
  border-radius: 10px;
  flex: none;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
}
.pthumb.a { background: var(--mint); color: var(--green-deep); }
.pthumb.b { background: var(--amber-tint); color: var(--amber-ink); }
.pthumb.c { background: var(--paper-deep); color: var(--ink-soft); }
.pname { display: block; font-size: 0.72rem; font-weight: 600; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pmeta { display: block; font-size: 0.6rem; color: var(--ink-faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pprice { margin-left: auto; font-size: 0.74rem; font-weight: 700; white-space: nowrap; align-self: flex-start; }
.pcard-bottom { display: flex; align-items: center; gap: 8px; font-size: 0.58rem; color: var(--ink-faint); }
.pcard-bottom .seen { margin-left: auto; white-space: nowrap; }
.pbadge {
  font-size: 0.56rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.pbadge.cert { background: var(--green-tint); color: #1B7A43; }
.pbadge.skladu { background: var(--amber-tint); color: var(--amber-ink); }
.stat { display: inline-flex; align-items: center; gap: 3px; }
.stat svg { width: 11px; height: 11px; }

.scanline {
  position: absolute;
  left: 8px; right: 8px;
  height: 42px;
  top: -60px;
  background: linear-gradient(to bottom, transparent, rgba(50, 159, 91, 0.16) 55%, rgba(50, 159, 91, 0.55) 96%, #2A8A4E);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .scanline { animation: scan 4.6s ease-in-out infinite; }
}
@media (prefers-reduced-motion: reduce) {
  .scanline { display: none; }
}
@keyframes scan {
  0% { top: -60px; opacity: 0; }
  8% { opacity: 1; }
  46% { top: calc(100% + 10px); opacity: 1; }
  54% { opacity: 0; }
  100% { top: calc(100% + 10px); opacity: 0; }
}

.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 16px 36px -16px rgba(36, 36, 36, 0.28);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  line-height: 1.35;
}
.float-card .dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
}
.fc1 { top: 66px; right: -66px; }
.fc1 .dot { background: var(--green-tint); }
.fc1 code { font-family: var(--mono); font-size: 0.64rem; color: var(--ink-faint); }
.fc2 { bottom: 56px; left: -58px; }
.fc2 .dot { background: #FBE7E7; }
@media (prefers-reduced-motion: no-preference) {
  .fc1 { animation: floaty 6s ease-in-out infinite alternate; }
  .fc2 { animation: floaty 7s ease-in-out 0.8s infinite alternate-reverse; }
}
@keyframes floaty {
  from { transform: translateY(-5px); }
  to { transform: translateY(6px); }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone-wrap { padding-inline: 60px; }
  .fc1 { right: -10px; }
  .fc2 { left: -8px; }
}
@media (max-width: 460px) {
  .phone-wrap { padding-inline: 10px; }
  .fc1, .fc2 { display: none; }
}

/* ---------- barcode divider ---------- */
.barcode-block {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding-block: 8px clamp(48px, 7vw, 84px);
}
.barcode {
  width: min(340px, 70vw);
  height: 34px;
  background: repeating-linear-gradient(90deg,
    var(--ink) 0 2px, transparent 2px 6px,
    var(--ink) 6px 9px, transparent 9px 12px,
    var(--ink) 12px 13px, transparent 13px 17px,
    var(--ink) 17px 21px, transparent 21px 24px);
  opacity: 0.82;
}
.barcode-caption {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
}

/* ---------- steps ---------- */
.steps { padding-block: clamp(56px, 8vw, 100px); background: var(--surface); border-block: 1px solid var(--line); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step { display: grid; gap: 10px; align-content: start; }
.step-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
.step h3 { font-size: 1.22rem; font-weight: 700; }
.step p { color: var(--ink-soft); font-size: 0.98rem; }
@media (max-width: 860px) { .steps-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- features ---------- */
.features { padding-block: clamp(64px, 9vw, 112px); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.fcard {
  background: var(--surface);
  border: 1px solid #E7E0D5;
  border-radius: 20px;
  padding: 28px 26px;
  display: grid;
  gap: 14px;
  align-content: start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.fcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(36, 36, 36, 0.25);
}
.ficon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--green-tint);
  display: grid;
  place-items: center;
}
.ficon svg { width: 24px; height: 24px; stroke: var(--green-deep); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.fcard h3 { font-size: 1.14rem; font-weight: 700; }
.fcard p { color: var(--ink-soft); font-size: 0.95rem; }
@media (max-width: 980px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }

/* ---------- watch band ---------- */
.watch {
  background: var(--green-deep);
  color: var(--paper);
  padding-block: clamp(64px, 9vw, 110px);
}
.watch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.watch .eyebrow { color: var(--green-hi); }
.watch .eyebrow::before { background: var(--green-hi); }
.watch-copy { display: grid; gap: 18px; justify-items: start; }
.watch-copy p { color: rgba(244, 239, 232, 0.78); max-width: 30em; }
.watch-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.watch-chips span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(244, 239, 232, 0.28);
}
.watch-mock { justify-self: center; display: grid; justify-items: center; }
.watch-strap {
  width: 92px; height: 74px;
  background: linear-gradient(180deg, #143528, #16402F);
  border-radius: 20px 20px 8px 8px;
}
.watch-strap.bottom { border-radius: 8px 8px 20px 20px; background: linear-gradient(0deg, #143528, #16402F); }
.watch-face {
  width: 196px; height: 196px;
  border-radius: 50%;
  background: #0E241B;
  border: 7px solid #34584A;
  margin-block: -8px;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.55);
}
.watch-screen { display: grid; justify-items: center; gap: 7px; text-align: center; }
.watch-time {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.7rem;
  color: #F4EFE8;
  font-variant-numeric: tabular-nums;
}
.watch-comp {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(50, 159, 91, 0.16);
  border: 1px solid rgba(50, 159, 91, 0.45);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #A7D9BC;
}
.watch-sub { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.14em; color: rgba(244, 239, 232, 0.5); text-transform: uppercase; }
@media (max-width: 860px) { .watch-grid { grid-template-columns: 1fr; } }

/* ---------- community + faq ---------- */
.community { padding-block: clamp(64px, 9vw, 112px); }
.community-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 860px) { .community-grid { grid-template-columns: 1fr; } }
.community-copy { display: grid; gap: 18px; }
.community-copy p { color: var(--ink-soft); }
.honesty {
  border-left: 3px solid var(--green);
  padding: 4px 0 4px 18px;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.honesty strong { color: var(--ink); }
.faq { display: grid; gap: 10px; }
.qa {
  background: var(--surface);
  border: 1px solid #E7E0D5;
  border-radius: 16px;
  overflow: hidden;
}
.qa summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: var(--display);
  font-weight: 650;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: '+';
  font-family: var(--body);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--green);
  flex: none;
  transition: transform 0.2s;
}
.qa[open] summary::after { transform: rotate(45deg); }
.qa p { padding: 0 22px 20px; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- cta ---------- */
.cta-wrap { padding-block: 0 clamp(72px, 9vw, 120px); }
.cta-panel {
  background: var(--mint);
  border-radius: 30px;
  padding: clamp(48px, 7vw, 88px) clamp(24px, 6vw, 80px);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.cta-panel h2 { max-width: 15em; }
.cta-panel p { color: #3E5A4E; max-width: 36em; }
.cta-panel .store-badges { justify-content: center; }
.cta-barcode {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 180px;
  height: 100px;
  transform: rotate(12deg);
  opacity: 0.14;
  background: repeating-linear-gradient(90deg,
    var(--green-deep) 0 3px, transparent 3px 8px,
    var(--green-deep) 8px 12px, transparent 12px 16px,
    var(--green-deep) 16px 18px, transparent 18px 24px);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: 56px 40px;
}
.footer-grid {
  display: grid;
  gap: 32px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-top svg { height: 24px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; list-style: none; }
.footer-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: rgba(244, 239, 232, 0.72);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--paper); }
.footer-note {
  font-size: 0.85rem;
  color: rgba(244, 239, 232, 0.55);
  max-width: 56em;
  border-top: 1px solid rgba(244, 239, 232, 0.14);
  padding-top: 24px;
  display: grid;
  gap: 10px;
}

/* ---------- language switch ---------- */
.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: inline-flex;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch a {
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  padding: 5px 10px;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}
.lang-switch a:hover { color: var(--ink); }
.lang-switch a.active { background: var(--green); color: #fff; }
@media (max-width: 560px) { .nav-cta { display: none; } }
