/* UpTakes — uptakes.app static site · design system v2 (2026-06-10)
   Research-driven: bold type, whitespace, real social proof, SVG icons,
   single dominant CTA, device-framed product, subtle motion.
   Brand red #d31e25. No framework. System fonts for speed. */

:root {
  --ink: #0d0f14;
  --ink-soft: #424857;
  --muted: #757b89;
  --line: #e9eaee;
  --bg: #ffffff;
  --bg-alt: #f6f7f9;
  --brand: #d31e25;
  --brand-dark: #ab161c;
  --brand-2: #ff5a36;            /* warm energy for gradients */
  --star: #ff9500;
  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1120px;
  --shadow-sm: 0 2px 8px rgba(13,15,20,.06);
  --shadow-md: 0 12px 30px rgba(13,15,20,.10);
  --shadow-lg: 0 30px 70px rgba(13,15,20,.20);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg);
  line-height: 1.6; font-size: 17px; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
html { scroll-padding-top: 92px; } /* anchor jumps (#get etc.) clear the sticky header so both badges land on screen */
h1, h2, h3 { letter-spacing: -0.03em; }

/* ---- scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---- header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 78px; position: relative; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 21px; color: var(--ink); letter-spacing: -0.03em; }
.brand:hover { text-decoration: none; }
.brand img { height: 60px; width: auto; }
.brand .tag { display: block; font-weight: 600; font-size: 14.5px; line-height: 1.12; color: var(--ink-soft); letter-spacing: -0.01em; border-left: 1.5px solid var(--line); padding-left: 12px; }
.brand .tag b { display: block; font-weight: 800; font-size: 17px; color: var(--ink); letter-spacing: -0.02em; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { color: var(--ink-soft); font-weight: 600; font-size: 15px; }
.nav a:hover { color: var(--brand); text-decoration: none; }
.nav .btn { padding: 9px 18px; font-size: 14px; color: #fff; }
.nav .btn:hover { color: #fff; }
.navtoggle { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0; border: 1.5px solid var(--line); border-radius: 11px; background: #fff; color: var(--ink); cursor: pointer; }
.navtoggle svg { width: 24px; height: 24px; }
@media (max-width: 760px) {
  html { scroll-padding-top: 78px; }
  .site-header .wrap { height: 64px; }
  .brand img { height: 44px; }
  .brand .tag { display: none; }
  .navtoggle { display: inline-flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 28px rgba(13,15,20,.12);
    padding: 6px 18px 16px; display: none;
  }
  .site-header.open .nav { display: flex; }
  .nav a { display: block; padding: 15px 4px; font-size: 17px; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 14px; text-align: center; padding: 14px; font-size: 16px; border-bottom: none; }
}

/* ---- perpetual download dock (fixed bottom store CTA, every page) ---- */
.appdock { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: rgba(255,255,255,0.94); -webkit-backdrop-filter: saturate(170%) blur(10px); backdrop-filter: saturate(170%) blur(10px); border-top: 1px solid var(--line); box-shadow: 0 -6px 26px rgba(13,15,20,.10); }
.appdock .wrap { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 9px 24px; }
.appdock-label { font-weight: 700; font-size: 15px; color: var(--ink); }
.appdock-badges { display: flex; align-items: center; gap: 10px; }
.appdock-badges img { height: 42px; width: auto; display: block; }
body { padding-bottom: 74px; }
@media (max-width: 720px) { .appdock-label { display: none; } .appdock .wrap { gap: 12px; padding: 8px 14px; } .appdock-badges img { height: 40px; } body { padding-bottom: 66px; } }

/* ---- buttons ---- */
.btn {
  display: inline-block; background: var(--brand); color: #fff; font-weight: 700;
  padding: 14px 26px; border-radius: 999px; font-size: 16px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 6px 18px rgba(211,30,37,.28);
}
.btn:hover { background: var(--brand-dark); text-decoration: none; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(211,30,37,.34); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { background: var(--bg-alt); }

/* ---- store badges ---- */
.badges { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.badges img { height: 54px; width: auto; transition: transform .15s ease, opacity .15s ease; }
.badges a:hover img { transform: translateY(-2px); opacity: .92; }
/* store-button tap feedback: instant press + loading spinner until the store opens */
.badges a, .appdock-badges a { position: relative; display: inline-block; -webkit-tap-highlight-color: transparent; transition: transform .12s ease, opacity .12s ease; }
.badges a:active, .appdock-badges a:active { transform: scale(.93); opacity: .7; }
.badges a.is-opening, .appdock-badges a.is-opening { opacity: .45; }
.badges a.is-opening::after, .appdock-badges a.is-opening::after { content: ""; position: absolute; top: 50%; left: 50%; width: 22px; height: 22px; margin: -11px 0 0 -11px; border: 2.5px solid rgba(255,255,255,.55); border-top-color: #fff; border-radius: 50%; animation: ctaspin .6s linear infinite; }
@keyframes ctaspin { to { transform: rotate(360deg); } }

/* ---- rating chip ---- */
.rating-chip { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); border-radius: 999px; padding: 8px 16px; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.rating-chip .stars { color: var(--star); letter-spacing: 1px; font-size: 15px; }
.rating-chip strong { color: var(--ink); }

/* ---- hero ---- */
.hero { position: relative; padding: 72px 0 56px; text-align: center; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 50% -8%, rgba(255,90,54,.16), transparent 60%),
    radial-gradient(45% 40% at 85% 8%, rgba(211,30,37,.12), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
}
.hero .rating-chip { margin: 0 auto 22px; }
.hero h1 {
  font-size: clamp(36px, 6.2vw, 66px); line-height: 1.04; margin: 0 auto 22px;
  font-weight: 850; max-width: 16ch;
}
.hero h1 .accent { background: linear-gradient(110deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lede { font-size: clamp(17px, 2.1vw, 21px); color: var(--ink-soft); max-width: 58ch; margin: 0 auto 30px; }
.hero .badges { justify-content: center; }
.patent-line { margin-top: 22px; font-size: 13.5px; color: var(--muted); }

/* ---- device / video frame ---- */
.showcase { margin: 52px auto 0; max-width: 940px; padding: 0 6px; }
.video-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #000; aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,.5);
}
.video-frame::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); box-shadow: inset 0 0 0 1px rgba(13,15,20,.06); pointer-events: none; }
.video-frame iframe, .video-frame video { width: 100%; height: 100%; border: 0; display: block; }

/* ---- hero reel (vertical video, clean modern card — no phone chrome) ---- */
.reel { position: relative; width: min(330px, 80vw); margin: 54px auto 0; }
.reel::before {  /* soft brand glow behind the card */
  content: ""; position: absolute; inset: -10% -22% -14%; z-index: -1;
  background: radial-gradient(52% 46% at 50% 42%, rgba(255,90,54,.30), rgba(211,30,37,.16) 45%, transparent 72%);
  filter: blur(26px);
}
.reel-screen {
  position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 9 / 16;
  background: #000; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.65);
}
.reel-screen::after { content: ""; position: absolute; inset: 0; border-radius: 28px; box-shadow: inset 0 0 0 1px rgba(13,15,20,.08); pointer-events: none; }
.reel-screen video { width: 100%; height: 100%; object-fit: cover; display: block; }
.unmute {
  position: absolute; bottom: 14px; right: 14px; z-index: 4;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(13,15,20,.55); color: #fff; border: 0; cursor: pointer;
  font: 600 13px/1 var(--font); padding: 9px 13px; border-radius: 999px;
  backdrop-filter: blur(8px); transition: background .15s ease;
}
.unmute:hover { background: rgba(13,15,20,.8); }
.unmute svg { width: 16px; height: 16px; }

/* ---- trust band ---- */
.trustband { background: var(--ink); color: #fff; }
.trustband .wrap { display: flex; flex-wrap: wrap; gap: 18px 40px; justify-content: center; align-items: center; padding: 22px 24px; }
.trustband .item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: #e7e9ee; }
.trustband .item svg { width: 20px; height: 20px; color: var(--brand-2); flex: none; }
.trustband .item .big { font-weight: 800; color: #fff; }

/* ---- sections ---- */
section { padding: 76px 0; }
section.alt { background: var(--bg-alt); }
.section-head { max-width: 64ch; margin: 0 auto 48px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin: 0 0 14px; font-weight: 820; }
.section-head p { font-size: 19px; color: var(--ink-soft); margin: 0; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 13px; font-weight: 800; color: var(--brand); margin: 0 0 12px; }

/* ---- feature grid ---- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 880px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px; background: linear-gradient(135deg, rgba(211,30,37,.10), rgba(255,90,54,.12)); }
.feature .ic svg { width: 24px; height: 24px; color: var(--brand); }
.feature h3 { margin: 0 0 9px; font-size: 19px; }
.feature p { margin: 0; color: var(--ink-soft); font-size: 16px; }

/* ---- steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 22px; } }
.step { position: relative; padding-left: 62px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: 19px; box-shadow: 0 6px 16px rgba(211,30,37,.3);
}
.step h3 { margin: 6px 0 7px; font-size: 19px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 16px; }

/* ---- pricing ---- */
.pricecard {
  max-width: 560px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 44px 36px; text-align: center;
}
.pricecard .trial { display: inline-block; background: rgba(211,30,37,.08); color: var(--brand); font-weight: 800; font-size: 14px; letter-spacing: .04em; padding: 7px 16px; border-radius: 999px; margin-bottom: 18px; }
.pricecard .price { font-size: clamp(30px, 4.4vw, 44px); font-weight: 850; margin: 0 0 6px; }
.pricecard .price .small { color: var(--muted); font-size: 18px; font-weight: 600; }
.pricecard p { color: var(--ink-soft); max-width: 46ch; margin: 12px auto 26px; }
.pricecard .badges { justify-content: center; }

/* ---- reviews ---- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .reviews { grid-template-columns: 1fr; } }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.review .stars { color: var(--star); letter-spacing: 2px; margin-bottom: 12px; font-size: 17px; }
.review p { margin: 0 0 16px; font-size: 16px; }
.review .who { font-weight: 700; font-size: 14px; color: var(--muted); }

/* ---- faq ---- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 4px 0; }
details.faq-item > summary { cursor: pointer; font-weight: 700; font-size: 18px; list-style: none; padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after { content: "+"; color: var(--brand); font-weight: 800; font-size: 24px; line-height: 1; flex: none; }
details.faq-item[open] > summary::after { content: "\2013"; }
details.faq-item > p { margin: 0 0 22px; color: var(--ink-soft); }

/* ---- prose (privacy / about / terms) ---- */
.prose { max-width: 780px; margin: 0 auto; }
.prose h1 { font-size: clamp(30px, 4.4vw, 44px); margin: 0 0 8px; }
.prose h2 { font-size: 23px; margin: 40px 0 10px; }
.prose h3 { font-size: 18px; margin: 26px 0 8px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 22px; }
.prose .updated { color: var(--muted); font-size: 15px; margin-bottom: 28px; }

/* ---- CTA ---- */
.cta { position: relative; color: #fff; text-align: center; overflow: hidden; background: var(--ink); }
.cta::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(60% 80% at 50% 0%, rgba(255,90,54,.28), transparent 60%), radial-gradient(50% 60% at 80% 100%, rgba(211,30,37,.30), transparent 60%); }
.cta .wrap { position: relative; z-index: 1; }
.cta h2 { color: #fff; font-size: clamp(28px, 4.2vw, 44px); margin: 0 0 16px; font-weight: 850; }
.cta p { color: #c9ccd3; max-width: 52ch; margin: 0 auto 28px; font-size: 19px; }
.cta .badges { justify-content: center; }

/* ---- footer ---- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding: 54px 0 38px; }
.site-footer .cols { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.site-footer .about { max-width: 40ch; }
.site-footer .about p { color: var(--muted); font-size: 15px; margin: 12px 0 0; }
.site-footer nav { display: flex; gap: 26px; flex-wrap: wrap; }
.site-footer nav a { color: var(--ink-soft); font-weight: 600; font-size: 15px; }
.site-footer .legal { margin-top: 34px; color: var(--muted); font-size: 14px; border-top: 1px solid var(--line); padding-top: 22px; }
.site-footer .legal a { color: var(--muted); }
