/* Turbo CleanUp — official site.
   One stylesheet for every page. Colors are tokens on :root so the dark
   variant is a redefinition, not a second set of rules. */
:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #eef2f8;
  --text: #16202e;
  --text-dim: #5a6779;
  --line: #dfe5ee;
  --accent: #2f6bff;
  --accent-soft: #e7eeff;
  --ok: #1f9d64;
  --warn: #b26a00;
  --radius: 16px;
  --maxw: 960px;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0f141c;
    --surface: #161d27;
    --surface-2: #1d2634;
    --text: #e8edf5;
    --text-dim: #9aa7b8;
    --line: #27313f;
    --accent: #6f9bff;
    --accent-soft: #1b2740;
  }
}
:root[data-theme="dark"] {
  --bg: #0f141c;
  --surface: #161d27;
  --surface-2: #1d2634;
  --text: #e8edf5;
  --text-dim: #9aa7b8;
  --line: #27313f;
  --accent: #6f9bff;
  --accent-soft: #1b2740;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }

header.site {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  position: sticky; top: 0; z-index: 10;
}
header.site .wrap {
  display: flex; align-items: center; gap: 16px;
  min-height: 60px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; text-decoration: none; color: var(--text); }
.brand .mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #8f5bff);
  display: inline-block;
}
nav.site { margin-left: auto; display: flex; gap: 18px; flex-wrap: wrap; }
nav.site a { color: var(--text-dim); text-decoration: none; font-size: 15px; }
nav.site a:hover, nav.site a[aria-current="page"] { color: var(--accent); }

.hero { padding: 56px 0 40px; }
.hero h1 { font-size: 40px; line-height: 1.15; margin: 0 0 12px; letter-spacing: -0.02em; }
.hero p.lede { font-size: 18px; color: var(--text-dim); margin: 0 0 24px; max-width: 62ch; }
.badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge {
  font-size: 13px; color: var(--text-dim);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 5px 12px; background: var(--surface);
}

main { padding-bottom: 64px; }
section { margin-top: 44px; }
h2 { font-size: 24px; margin: 0 0 12px; letter-spacing: -0.01em; }
h3 { font-size: 17px; margin: 24px 0 6px; }
p, li { color: var(--text); }
p.muted, li.muted, .muted { color: var(--text-dim); }
a { color: var(--accent); }

.grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px;
}
.card h3 { margin-top: 0; }
.card p { margin: 0; color: var(--text-dim); font-size: 15px; }

table {
  width: 100%; border-collapse: collapse; font-size: 15px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
th, td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--surface-2); font-weight: 600; font-size: 14px; }
tr:last-child td { border-bottom: 0; }
.tablewrap { overflow-x: auto; }

.note {
  background: var(--accent-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px; font-size: 15px;
}
.note strong { color: var(--text); }

footer.site {
  border-top: 1px solid var(--line); background: var(--surface);
  padding: 24px 0; font-size: 14px; color: var(--text-dim);
}
footer.site a { color: var(--text-dim); }
footer.site .row { display: flex; gap: 16px; flex-wrap: wrap; }

.updated { font-size: 14px; color: var(--text-dim); margin-top: -4px; }
ul.tight { padding-left: 20px; }
ul.tight li { margin: 6px 0; }

@media (max-width: 560px) {
  .hero { padding: 36px 0 28px; }
  .hero h1 { font-size: 30px; }
}

/* ---------- imagery ----------
   All artwork here is the app's own: the launcher logo, the in-app
   illustrations, and unretouched screenshots taken on a device. Nothing is
   a mockup, so what the store listing and the review team see matches the
   build. */

.brand img.mark { width: 28px; height: 28px; border-radius: 8px; background: none; }

/* Hero: text on the left, the real home screen on the right. Below 760px the
   phone drops under the text instead of shrinking into a stamp. */
.hero-grid {
  display: grid; gap: 32px; align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}
.hero-art { display: flex; justify-content: center; }
.hero-logo {
  width: 72px; height: 72px; border-radius: 18px; display: block;
  margin-bottom: 18px; box-shadow: 0 10px 24px rgba(47, 107, 255, 0.28);
}

/* A screenshot sits in a drawn bezel so it reads as a phone and not as a
   floating rectangle. The frame is CSS, the pixels inside are untouched. */
.phone {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 18px 40px rgba(16, 28, 51, 0.16);
  max-width: 280px;
}
.phone img { display: block; width: 100%; border-radius: 22px; }

.shots {
  display: grid; gap: 16px;
  /* Five screenshots fit on one desktop row at the 960px content width; below
     that the grid wraps on its own rather than shrinking the phones. */
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.shots { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.shots figure { margin: 0; }
.shots .phone { max-width: 100%; }
.shots figcaption { margin-top: 10px; font-size: 14px; color: var(--text-dim); }
.shots figcaption strong { display: block; color: var(--text); font-weight: 600; }

/* Feature cards carry the app's own icons, so the site and the launcher
   screen name the same features with the same pictures. */
.card .ico { width: 40px; height: 40px; display: block; margin-bottom: 10px; }

.split {
  display: grid; gap: 24px; align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
}
.split img { width: 100%; max-width: 360px; justify-self: center; display: block; }

@media (max-width: 760px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  /* The phone stays BELOW the text on a narrow screen: put it first and the
     visitor scrolls a full screen of screenshot before learning what the app
     is. */
  .hero .phone { max-width: 220px; }
  .split img { max-width: 240px; }
}

/* Store graphics come from the designer at Play's own sizes (1080x1920 for a
   screenshot, 1024x500 for the feature graphic). They already contain a device
   mockup, so they get a plain rounded frame instead of the drawn bezel. */
.store-art {
  display: block; width: 100%; height: auto; max-width: 300px;
  border-radius: 18px; border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(16, 28, 51, 0.16);
}
.hero-art .store-art { max-width: 270px; }
.shots .store-art { max-width: 100%; }
.banner {
  display: block; width: 100%; height: auto; margin-top: 40px;
  border-radius: var(--radius); border: 1px solid var(--line);
}

/* Store button. Sized for a thumb, so it keeps a 44px tap target on a phone. */
.btn-play {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff; text-decoration: none;
  font-weight: 600; font-size: 16px;
  padding: 12px 22px; border-radius: 999px;
  box-shadow: 0 10px 22px rgba(47, 107, 255, 0.28);
}
.btn-play:hover { filter: brightness(1.06); }
.btn-play:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
