/* Fietsert – appert.nu
   Plain CSS, system fonts only, no external requests. */
:root {
  --cream: #f7f4ef;
  --cream-2: #efe9df;
  --ink: #14241c;
  --green: #1b4d3e;
  --green-deep: #0f2d22;
  --green-soft: #dfeae4;
  --gold: #b08d4a;
  --gold-text: #7f6128;   /* darker gold for text contrast */
  --gold-soft: #f3ead7;
  --muted: #4f5e56;
  --card: #ffffff;
  --line: #e5e0d6;
  --radius: 20px;
  --shadow: 0 18px 48px rgba(20, 36, 28, 0.12);
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--green); }
a:hover { color: var(--green-deep); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.skip {
  position: absolute; left: -9999px; top: 8px;
  background: var(--green-deep); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 10;
}
.skip:focus { left: 8px; }

.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .wrap { padding: 0 32px; } }

/* ---------- Header ---------- */
.site-header { padding: 16px 0; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--green-deep); }
.brand svg { width: 34px; height: 34px; }
.brand-name { font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; }
.brand-by { font-size: 0.75rem; color: var(--muted); font-weight: 500; letter-spacing: 0; display: none; }
@media (min-width: 560px) { .brand-by { display: inline; } }
.site-nav { display: none; gap: 28px; }
.site-nav a { color: var(--muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; }
.site-nav a:hover { color: var(--green-deep); }
@media (min-width: 900px) { .site-nav { display: flex; } }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang {
  display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden;
  font-size: 0.8rem; font-weight: 700; background: var(--card);
}
.lang a, .lang span { padding: 6px 12px; text-decoration: none; color: var(--muted); line-height: 1.4; }
.lang [aria-current="true"] { background: var(--green); color: #fff; }
.lang a:hover { color: var(--green-deep); background: var(--green-soft); }
.header-store { display: none; }
@media (min-width: 640px) { .header-store { display: inline-flex; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 14px; padding: 12px 20px; font-weight: 650; font-size: 0.98rem;
  text-decoration: none; line-height: 1.2; border: 1.5px solid transparent;
}
.btn-store { background: #111; color: #fff; }
.btn-store:hover { background: #000; color: #fff; }
.btn-store small { display: block; font-size: 0.7rem; font-weight: 500; opacity: 0.8; }
.btn-store .store-text { text-align: left; }
.btn-store svg { width: 20px; height: 20px; flex: none; }
.btn-ghost { color: var(--gold-text); border-color: var(--gold); background: transparent; }
.btn-ghost:hover { background: var(--gold-soft); color: var(--gold-text); }
.btn-sm { padding: 8px 14px; font-size: 0.85rem; border-radius: 12px; }

/* ---------- Hero ---------- */
.hero { padding: 24px 0 56px; overflow: hidden; }
.hero .wrap { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) {
  .hero { padding: 40px 0 80px; }
  .hero .wrap { grid-template-columns: 1.15fr 0.85fr; }
}
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-text); margin: 0 0 14px;
}
h1, h2, h3 { color: var(--green-deep); letter-spacing: -0.025em; line-height: 1.1; margin: 0; }
h1 { font-size: clamp(2.5rem, 7vw, 4.25rem); font-weight: 800; }
h1 .line { display: block; }
h1 .accent { color: var(--green); }
.subline { font-size: clamp(1.15rem, 2.2vw, 1.4rem); color: var(--green); font-weight: 600; margin: 18px 0 12px; }
.lede { color: var(--muted); font-size: 1.05rem; max-width: 40ch; margin: 0 0 28px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.free-note { margin: 18px 0 0; font-size: 0.9rem; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.free-note .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: none; }
.hero-visual { position: relative; display: flex; justify-content: center; }

/* ---------- Phone placeholder ---------- */
.phone {
  position: relative; width: clamp(230px, 64vw, 290px); aspect-ratio: 9 / 19.5;
  background: #1a1d1b; border-radius: 46px; padding: 10px;
  box-shadow: var(--shadow), inset 0 0 0 2px #2c302d;
  flex: none;
}
.screen {
  position: relative; height: 100%; border-radius: 37px; overflow: hidden;
  background: var(--cream); display: flex; flex-direction: column;
  font-size: 12px; color: var(--ink);
}
.screen.dark { background: linear-gradient(170deg, #2a4a3d 0%, #10251c 70%); color: #fff; }
.island { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 34%; height: 24px; background: #000; border-radius: 20px; z-index: 2; }
.statusbar { display: flex; justify-content: space-between; padding: 12px 22px 0; font-weight: 700; font-size: 12px; height: 38px; }
.placeholder-tag {
  position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px; white-space: nowrap; z-index: 3;
  box-shadow: 0 6px 16px rgba(20,36,28,0.18);
}

/* in-screen UI sketch bits */
.ui-pad { padding: 8px 14px; }
.ui-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; }
.dark .ui-label { color: rgba(255,255,255,0.7); }
.coach {
  margin: 6px 14px 0; background: var(--card); border-radius: 22px; padding: 16px; text-align: center;
  box-shadow: 0 6px 18px rgba(20,36,28,0.08); border: 1px solid var(--line);
}
.coach-num {
  width: 104px; height: 104px; margin: 10px auto 8px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center; font-size: 50px; font-weight: 800; letter-spacing: -0.03em;
  box-shadow: 0 0 0 6px var(--green-soft);
}
.coach-row { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 22px; font-weight: 800; color: var(--green-deep); }
.coach-row svg { width: 30px; height: 30px; }
.coach-next { margin-top: 8px; color: var(--muted); font-size: 11px; }
.mini-map { flex: 1; margin: 10px 14px 14px; border-radius: 18px; background: var(--green-soft); position: relative; overflow: hidden; min-height: 60px; }
.mini-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.searchbar {
  margin: 4px 12px 8px; background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 8px 10px; color: var(--muted); font-size: 10.5px; display: flex; gap: 6px; align-items: center;
}
.searchbar svg { width: 12px; height: 12px; flex: none; }
.sheet {
  background: var(--card); border-top-left-radius: 20px; border-top-right-radius: 20px; padding: 10px 14px 18px;
  box-shadow: 0 -6px 18px rgba(20,36,28,0.08);
}
.sheet::before { content: ""; display: block; width: 36px; height: 4px; border-radius: 4px; background: var(--line); margin: 0 auto 10px; }
.poi { display: flex; align-items: center; gap: 10px; padding: 6px 0; border-bottom: 1px solid var(--line); }
.poi:last-child { border-bottom: 0; }
.poi-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--gold-soft); color: var(--gold-text); display: grid; place-items: center; flex: none; }
.poi-icon svg { width: 14px; height: 14px; }
.poi b { display: block; font-size: 11.5px; }
.poi span { color: var(--muted); font-size: 10px; }
.seg { display: flex; margin: 4px 14px 10px; background: var(--cream-2); border-radius: 10px; padding: 3px; font-weight: 700; font-size: 11px; }
.seg span { flex: 1; text-align: center; padding: 6px 0; border-radius: 8px; color: var(--muted); }
.seg .on { background: var(--card); color: var(--green-deep); box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.chips { display: flex; gap: 6px; padding: 0 14px; }
.chips span { flex: 1; text-align: center; border: 1px solid var(--line); background: var(--card); border-radius: 10px; padding: 7px 0; font-weight: 700; font-size: 11.5px; }
.chips .on { background: var(--green); border-color: var(--green); color: #fff; }
.toggle-row { display: flex; justify-content: space-between; align-items: center; margin: 10px 14px 0; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 8px 10px; font-size: 11px; font-weight: 600; }
.toggle { width: 30px; height: 18px; border-radius: 10px; background: var(--green); position: relative; flex: none; }
.toggle::after { content: ""; position: absolute; right: 2px; top: 2px; width: 14px; height: 14px; border-radius: 50%; background: #fff; }
.ui-btn { margin: 0 14px 16px; background: var(--green); color: #fff; text-align: center; font-weight: 700; border-radius: 12px; padding: 10px; font-size: 12px; }
.lock-time { text-align: center; font-size: 58px; font-weight: 300; letter-spacing: -0.02em; margin-top: 18px; line-height: 1; }
.lock-date { text-align: center; font-size: 13px; opacity: 0.8; margin-top: 6px; }
.live {
  margin: auto 12px 22px; background: rgba(12, 18, 15, 0.72); border-radius: 22px; padding: 12px 14px;
  display: flex; align-items: center; gap: 12px; color: #fff; border: 1px solid rgba(255,255,255,0.08);
}
.live-num { width: 46px; height: 46px; border-radius: 50%; background: var(--green); display: grid; place-items: center; font-size: 22px; font-weight: 800; flex: none; box-shadow: 0 0 0 3px rgba(176,141,74,0.8); }
.live-body { flex: 1; min-width: 0; }
.live-body b { display: block; font-size: 13px; }
.live-body span { font-size: 10.5px; opacity: 0.75; }
.live svg { width: 26px; height: 26px; flex: none; }

/* floating cards next to phones */
.float-card {
  position: absolute; background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); padding: 12px 14px; font-size: 0.8rem; color: var(--ink); z-index: 4;
}
.float-live { left: 0; bottom: 64px; display: flex; gap: 10px; align-items: center; max-width: 220px; }
.float-live .live-num { width: 38px; height: 38px; font-size: 17px; color: #fff; }
.float-live b { display: block; font-size: 0.85rem; }
.float-live span { color: var(--muted); font-size: 0.75rem; }
@media (max-width: 899px) { .hero .float-live { display: none; } }

/* ---------- Sections ---------- */
section { scroll-margin-top: 16px; }
.section { padding: 64px 0; }
@media (min-width: 900px) { .section { padding: 96px 0; } }
.section-head { max-width: 640px; margin: 0 0 40px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 14px 0 0; }
.band { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* pillars */
.pillar { display: grid; gap: 40px; align-items: center; padding: 28px 0 44px; }
.pillar + .pillar { border-top: 1px solid var(--line); padding-top: 56px; }
.pillar-visual { display: flex; justify-content: center; position: relative; padding-bottom: 14px; }
@media (min-width: 900px) {
  .pillar { grid-template-columns: 1fr 1fr; gap: 72px; padding: 40px 0 56px; }
  .pillar.flip .pillar-text { order: 2; }
}
.pillar-num {
  display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: #fff; font-weight: 800; margin-bottom: 16px;
}
.pillar-num.gold { background: var(--gold); }
.pillar h3 { font-size: clamp(1.6rem, 3.2vw, 2.1rem); font-weight: 800; }
.pillar h3 small { display: block; font-size: 0.95rem; color: var(--gold-text); font-weight: 700; letter-spacing: 0; margin-bottom: 6px; }
.pillar p { color: var(--muted); font-size: 1.05rem; margin: 14px 0 18px; max-width: 46ch; }
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ticks li { display: flex; gap: 10px; align-items: flex-start; }
.ticks li::before {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: 2px; border-radius: 50%;
  background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-7' fill='none' stroke='%231b4d3e' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 20px no-repeat;
}
.float-photo { right: 0; top: 40px; width: 170px; }
.float-photo .leaflet { background: var(--gold-soft); border-radius: 10px; padding: 10px; font-weight: 800; color: var(--green-deep); font-size: 0.8rem; letter-spacing: 0.02em; line-height: 1.7; }
.float-photo .caption { display: flex; align-items: center; gap: 6px; margin-top: 8px; color: var(--muted); font-size: 0.72rem; }
.float-photo svg { width: 16px; height: 16px; flex: none; }
@media (max-width: 1099px) { .float-photo { display: none; } }

/* feature grid */
.features { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .features { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .features { grid-template-columns: repeat(3, 1fr); } }
.feature { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; display: flex; gap: 14px; align-items: flex-start; }
.feature-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--green); color: #fff; display: grid; place-items: center; flex: none; }
.feature-icon.gold { background: var(--gold); }
.feature-icon svg { width: 20px; height: 20px; }
.feature h3 { font-size: 1.05rem; letter-spacing: -0.01em; margin-bottom: 4px; }
.feature p { margin: 0; color: var(--muted); font-size: 0.93rem; }
.badge-soon { display: inline-block; margin-left: 6px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-text); background: var(--gold-soft); border-radius: 999px; padding: 2px 8px; vertical-align: middle; }

/* pricing */
.plans { display: grid; gap: 16px; }
@media (min-width: 800px) { .plans { grid-template-columns: 1fr 1fr; } }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 28px; display: flex; flex-direction: column; }
.plan.plus { background: var(--green-deep); color: #e8f0ea; border-color: var(--green-deep); }
.plan h3 { font-size: 1.5rem; font-weight: 800; }
.plan.plus h3 { color: #fff; }
.plan-kicker { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 8px; }
.plan.plus .plan-kicker { color: #d9bf86; }
.plan p { margin: 12px 0 18px; color: var(--muted); }
.plan.plus p { color: #c9d8cf; }
.plan .ticks li::before { background-color: var(--green-soft); }
.plan.plus .ticks li::before {
  background: rgba(176,141,74,0.25) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-7' fill='none' stroke='%23e2c88f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 20px no-repeat;
}
.plan-note { margin-top: auto; padding-top: 18px; font-size: 0.85rem; color: var(--muted); }
.plan.plus .plan-note { color: #a9bdb2; }

/* CTA band */
.cta-band { background: var(--green); color: #fff; border-radius: 28px; padding: 40px 28px; display: grid; gap: 20px; align-items: center; }
@media (min-width: 800px) { .cta-band { grid-template-columns: 1fr auto; padding: 48px 56px; } }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.3rem); font-weight: 800; }
.cta-band p { margin: 8px 0 0; color: #cfe0d6; }
.cta-band .btn-store { background: #fff; color: #111; }
.cta-band .btn-store:hover { background: var(--cream); color: #000; }

/* ---------- Footer ---------- */
.site-footer { padding: 48px 0 40px; margin-top: 64px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.92rem; }
.footer-grid { display: grid; gap: 24px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.3fr 1fr; align-items: start; } }
.footer-pledge { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 0; padding: 0; list-style: none; }
.footer-pledge li { background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; font-size: 0.82rem; font-weight: 600; color: var(--green-deep); }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
@media (min-width: 800px) { .footer-links { justify-content: flex-end; } }
.footer-links a { color: var(--muted); }
.footer-bottom { margin-top: 28px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; font-size: 0.85rem; }
.todo-mark { background: #fff3cd; color: #6b5200; border: 1px dashed #c9a227; border-radius: 6px; padding: 1px 6px; font-size: 0.8em; font-weight: 600; }

/* ---------- Privacy / text pages ---------- */
.doc { max-width: 720px; padding: 32px 0 24px; }
.doc h1 { font-size: clamp(2.1rem, 5vw, 3rem); margin-bottom: 12px; }
.doc .updated { color: var(--muted); font-size: 0.9rem; margin: 0 0 32px; }
.doc h2 { font-size: 1.35rem; margin: 36px 0 10px; }
.doc p, .doc li { color: #2d3b34; font-size: 1.02rem; }
.doc ul { padding-left: 1.2em; }
.doc li { margin-bottom: 6px; }
.doc .summary { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; }
.doc .summary ul { margin: 8px 0 0; }
.back { display: inline-block; margin-top: 28px; font-weight: 600; }

/* ---------- Refinements after visual check ---------- */
.pillar .phone { width: clamp(220px, 58vw, 262px); }
.live { gap: 10px; padding: 10px 12px; }
.live-num { width: 40px; height: 40px; font-size: 19px; }
.live-body b { font-size: 12px; white-space: nowrap; }
.live-body span { white-space: nowrap; }
.live svg { width: 22px; height: 22px; }
.lock-hills { position: absolute; left: 0; right: 0; bottom: 0; height: 45%; pointer-events: none; }
.screen.dark > *:not(.lock-hills) { position: relative; }
.screen.dark .island { position: absolute; }
.cta-section { padding: 56px 0 64px; }
@media (min-width: 900px) { .cta-section { padding: 80px 0; } }
.site-footer { margin-top: 0; }
@media (max-width: 599px) { .feature { padding: 16px; } }
@media (min-width: 1100px) {
  .pillar-visual.has-photo { justify-content: flex-start; padding-left: 24px; }
  .float-photo { right: 0; top: 150px; width: 158px; }
}
.live { margin: auto 8px 18px; }
.live-body { overflow: hidden; }
.live-body b, .live-body span { text-overflow: ellipsis; overflow: hidden; }
@media (max-width: 599px) { .live svg { display: none; } }
.toggle-row { font-size: 10.5px; gap: 8px; }

/* ---------- AppertLabs app switcher (top bar) ---------- */
.topbar { background: var(--green-deep); color: #cfe0d6; font-size: 0.8rem; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 34px; }
.topbar-label { font-weight: 600; letter-spacing: 0.02em; opacity: 0.85; white-space: nowrap; }
.app-nav { display: flex; align-items: center; gap: 4px; font-weight: 700; }
.app-nav a { color: #e8f0ea; text-decoration: none; padding: 4px 10px; border-radius: 999px; }
.app-nav a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.app-nav a[aria-current="page"] { background: rgba(176,141,74,0.3); color: #fff; }
.app-nav .sep { opacity: 0.5; }

/* ---------- "Coming soon" store labels (not links, no official badges) ---------- */
.store-soon { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-soon {
  background: var(--card); color: var(--green-deep); border: 1.5px dashed var(--green);
  cursor: default; user-select: none; padding: 10px 16px;
}
.btn-soon small { display: block; font-size: 0.7rem; font-weight: 600; color: var(--gold-text); letter-spacing: 0.01em; }
.btn-soon .store-text { text-align: left; white-space: nowrap; }
.btn-soon svg { width: 20px; height: 20px; flex: none; color: var(--gold-text); }
.btn-soon.btn-sm { padding: 5px 11px; font-size: 0.8rem; gap: 7px; border-radius: 11px; }
.btn-soon.btn-sm small { font-size: 0.62rem; }
.btn-soon.btn-sm svg { width: 16px; height: 16px; }
.cta-band .btn-soon { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.6); }
.cta-band .btn-soon small, .cta-band .btn-soon svg { color: #e2c88f; }
.header-store { display: none; gap: 8px; }
@media (min-width: 1180px) { .header-store { display: inline-flex; } }
@media (min-width: 900px) and (max-width: 1179px) { .site-nav { gap: 22px; } }

/* ---------- "Also from AppertLabs" ---------- */
.also { padding: 0 0 72px; }
.also-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 28px;
  display: grid; gap: 20px; align-items: center;
}
@media (min-width: 800px) { .also-card { grid-template-columns: auto 1fr auto; padding: 32px 40px; gap: 28px; } }
.also-card img { width: 64px; height: 64px; border-radius: 16px; }
.also-card .eyebrow { margin-bottom: 6px; }
.also-card h2 { font-size: 1.6rem; font-weight: 800; }
.also-card p { margin: 8px 0 0; color: var(--muted); max-width: 56ch; }
.footer-apps a { color: var(--muted); }

/* ---------- Streamert page ---------- */
.st-float { right: 0; bottom: 70px; display: flex; gap: 10px; align-items: center; max-width: 230px; }
.st-float .tv { width: 38px; height: 38px; border-radius: 10px; background: var(--green); color: #fff; display: grid; place-items: center; flex: none; }
.st-float .tv svg { width: 20px; height: 20px; }
.st-float b { display: block; font-size: 0.85rem; }
.st-float span { color: var(--muted); font-size: 0.75rem; }
@media (max-width: 899px) { .hero .st-float { display: none; } }

/* ---------- Real app icons (square PNGs from the app repos, iOS-style rounded) ---------- */
.app-icon { border-radius: 22.37%; box-shadow: 0 1px 3px rgba(20,36,28,0.18); background: var(--card); }
.also-card img.app-icon { border-radius: 22.37%; box-shadow: 0 6px 16px rgba(20,36,28,0.16); }

/* ---------- Real screenshots in a phone frame / honest pending placeholders ---------- */
.phone.shot { padding: 9px; }
.phone.shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 38px; display: block; background: var(--green-soft); }
.phone.pending { background: #1a1d1b; }
.pending-screen {
  height: 100%; border-radius: 37px; background: repeating-linear-gradient(135deg, var(--cream) 0 14px, var(--cream-2) 14px 28px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 24px; text-align: center;
  color: var(--green-deep);
}
.pending-screen img { width: 56px; height: 56px; }
.pending-screen b { font-size: 0.95rem; line-height: 1.3; max-width: 16ch; }
.pending-screen.dark { background: repeating-linear-gradient(135deg, #2b2938 0 14px, #26242f 14px 28px); color: #fff; }
.also-card .store-soon { margin-top: 14px; }
.float-live { max-width: 260px; }

/* ---------- Apple Watch frame (placeholder or real screenshot) ---------- */
.watch {
  position: relative; width: clamp(180px, 50vw, 220px); aspect-ratio: 41 / 50; flex: none;
  background: #1a1d1b; border-radius: 30%/25%; padding: 14px;
  box-shadow: var(--shadow), inset 0 0 0 2px #2c302d;
  margin: 70px 18px 70px 0;
}
.watch::before, .watch::after {
  content: ""; position: absolute; left: 18%; right: 18%; height: 70px; background: #2a302c; z-index: -1;
}
.watch::before { top: -62px; border-radius: 18px 18px 6px 6px; }
.watch::after { bottom: -62px; border-radius: 6px 6px 18px 18px; }
.watch-crown { position: absolute; right: -9px; top: 26%; width: 10px; height: 34px; border-radius: 4px; background: #2c302d; }
.watch-screen { height: 100%; border-radius: 26%/21%; overflow: hidden; }
.watch.shot img { width: 100%; height: 100%; object-fit: cover; border-radius: 26%/21%; display: block; }
.watch .pending-screen { padding: 12px; gap: 10px; }
.watch .pending-screen img { width: 44px; height: 44px; }
.watch .pending-screen b { font-size: 0.85rem; max-width: 12ch; }
.pending-screen.dark-green { background: repeating-linear-gradient(135deg, #10251c 0 12px, #15301f 12px 24px); color: #fff; }
.watch .placeholder-tag { bottom: -80px; }
.watch { isolation: isolate; }
.watch::before, .watch::after { height: 64px; }
