/* Tasks for Pebble: site styles. White ground, one Cobalt, the six Pebble colours only in shapes. */

:root {
  color-scheme: light;
  --bg: #FFFFFF;
  --bg-alt: #F7F7F5;
  --ink: #1A1B1E;
  --sub: #55585E;
  --rule: #AAAAAA;
  --line: #E2E2DE;
  --brand: #0055AA;
  --on-brand: #FFFFFF;
  --link: #0055AA;
  --focus: #0055AA;
  --paper: #FFFFFF;
  --disc-edge: #D6D6D2;
  --device: #1C1E22;
  --device-hi: #3A3E45;
  --device-lo: #0E0F11;
  --glass: #000000;
  --shadow: 0 30px 60px -30px rgba(0, 0, 0, .45);

  --cobalt: #0055AA;
  --picton: #55AAFF;
  --midnight: #005555;
  --yellow: #FFAA00;
  --orange: #FF5500;
  --red: #AA0000;

  --font: "Roboto Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --num: "Chakra Petch", "DIN Condensed", "Courier New", monospace;
  --wrap: 1120px;
  --gutter: 24px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #000000;
    --bg-alt: #121212;
    --ink: #FFFFFF;
    --sub: #AAAAAA;
    --rule: #555555;
    --line: #262626;
    --link: #55AAFF;
    --focus: #55AAFF;
    --disc-edge: transparent;
    --device: #2A2D33;
    --device-hi: #4A4F58;
    --device-lo: #16181B;
    --shadow: 0 30px 60px -30px rgba(0, 0, 0, .9);
  }
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #000000;
  --bg-alt: #121212;
  --ink: #FFFFFF;
  --sub: #AAAAAA;
  --rule: #555555;
  --line: #262626;
  --link: #55AAFF;
  --focus: #55AAFF;
  --disc-edge: transparent;
  --device: #2A2D33;
  --device-hi: #4A4F58;
  --device-lo: #16181B;
  --shadow: 0 30px 60px -30px rgba(0, 0, 0, .9);
}

/* ---------------------------------------------------------------- base */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 18px/1.5 var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
h1, h2, h3 { font-weight: 700; line-height: 1.02; letter-spacing: -.01em; text-wrap: balance; }
p { text-wrap: pretty; }
a { color: var(--link); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 2px; }
.on-colour :focus-visible, .band :focus-visible { outline-color: #FFFFFF; }
.band.ink-dark :focus-visible { outline-color: #000000; }
.num { font-family: var(--num); font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: 0; }
.caps { font-weight: 700; font-size: 13px; line-height: 1; letter-spacing: .14em; text-transform: uppercase; }
.sub { color: var(--sub); }
.wrap { width: 100%; max-width: calc(var(--wrap) + 2 * var(--gutter)); margin: 0 auto; padding: 0 var(--gutter); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--brand); color: #fff; padding: 10px 14px; font-weight: 700; }
.skip:focus { top: 12px; }

@media (max-width: 720px) { :root { --gutter: 16px; } body { font-size: 17px; } }

/* ---------------------------------------------------------------- header */

.top { position: relative; z-index: 5; }
.top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand b { font-size: 24px; line-height: 1; letter-spacing: -.01em; }
.brand small { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; opacity: .8; margin-left: 2px; }
.nav { display: flex; gap: 22px; }
.nav a { color: inherit; text-decoration: none; font-weight: 700; font-size: 16px; }
.nav a:hover { text-decoration: underline; }
.top.on-colour { background: var(--cobalt); color: #fff; }
@media (max-width: 760px) { .nav { display: none; } }

/* ---------------------------------------------------------------- paper discs + icons */

.disc {
  --size: 56px;
  --ring: transparent;
  width: var(--size); height: var(--size); flex: none;
  border-radius: 50%;
  background: var(--paper);
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 var(--rw, 3px) var(--ring);
}
.disc.edge { box-shadow: inset 0 0 0 1.5px var(--disc-edge); }
.disc canvas, .disc img { display: block; width: 72%; height: 72%; }
.disc .still { width: 72%; height: 72%; }

/* ---------------------------------------------------------------- segment rows (the Flights row) */

.seg { display: flex; gap: 3px; align-items: center; }
.seg i { display: block; width: 14px; height: 14px; box-shadow: inset 0 0 0 1.5px var(--rule); border-radius: 2px; }
.seg i.on { box-shadow: none; background: var(--c, var(--cobalt)); }
.seg.small i { width: 10px; height: 7px; border-radius: 1.5px; box-shadow: inset 0 0 0 1px var(--rule); }
.seg.small i.on { box-shadow: none; }
.band .seg i { box-shadow: inset 0 0 0 1.5px currentColor; opacity: .55; }
.band .seg i.on { background: currentColor; opacity: 1; box-shadow: none; }

.donebox {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 14px; border: 2px solid var(--ink);
}
.donebox .caps { font-size: 12px; }
.donebox .num { font-size: 26px; line-height: 1; min-width: 2.6em; text-align: right; }

/* ---------------------------------------------------------------- buttons */

.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 22px;
  border-radius: 27px; border: 2px solid transparent;
  font: 700 19px/1 var(--font); text-decoration: none; cursor: pointer;
  transition: transform .15s ease;
}
.btn:active { transform: scale(.97); }
.btn svg { width: 22px; height: 22px; flex: none; }
.btn.primary { background: var(--brand); color: #fff; }
.btn.secondary { background: transparent; color: var(--link); border-color: currentColor; }
.btn[aria-disabled="true"] { cursor: default; background: transparent; color: var(--sub); border: 2px dashed var(--rule); }
.btn[aria-disabled="true"]:active { transform: none; }
.btn .soon { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
/* on the Cobalt band */
.band .btn.primary { background: #fff; color: var(--cobalt); }
.band .btn.secondary { color: #fff; }
.band .btn[aria-disabled="true"] { color: #fff; border-color: rgba(255, 255, 255, .75); background: transparent; }
.from-watch { font-size: 16px; }
.from-watch b { font-weight: 700; }

/* ---------------------------------------------------------------- hero */

.hero { position: relative; }
.hero .band { background: var(--cobalt); color: #fff; padding: 36px 0 120px; }
.hero .band .wrap { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 40px; align-items: start; }
.wordmark { display: flex; align-items: center; gap: 22px; }
.wordmark .disc { --size: 104px; }
.wordmark h1 { font-size: clamp(76px, 11vw, 136px); line-height: .82; letter-spacing: -.025em; }
.wordmark h1 span { display: block; font-size: 17px; letter-spacing: .3em; line-height: 1; margin-top: 12px; text-transform: uppercase; }
.promise { font-size: clamp(30px, 4vw, 46px); line-height: 1.02; margin-top: 34px; max-width: 14em; }
.hero .lede { margin-top: 14px; font-size: 20px; max-width: 30em; opacity: .92; }
.hero .actions { margin-top: 28px; }
.hero .from-watch { margin-top: 20px; max-width: 34em; opacity: .92; }
.hero .from-watch a { color: #fff; }
.hero-devices { position: relative; min-height: 560px; }
.hero-devices .phone { position: absolute; right: 150px; top: 0; }
.hero-devices .pebble { position: absolute; right: 0; top: 250px; }
.hero-strip { background: var(--bg); padding: 26px 0 8px; }
.hero-strip .wrap { display: flex; flex-wrap: wrap; gap: 14px 34px; align-items: center; }
.hero-strip .point { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 18px; }

@media (max-width: 960px) {
  .hero .band { padding-bottom: 0; }
  .hero .band .wrap { grid-template-columns: 1fr; gap: 28px; }
  .hero-devices { min-height: 0; display: flex; justify-content: center; align-items: flex-end; gap: 0; margin-bottom: -150px; }
  .hero-devices .phone, .hero-devices .pebble { position: relative; right: auto; top: auto; }
  .hero-devices .pebble { margin-left: -60px; margin-bottom: -20px; }
  .hero-devices { margin-bottom: -110px; }
  .hero-strip { padding-top: 150px; }
}
@media (max-width: 520px) {
  .hero .band { padding-top: 20px; }
  .wordmark { gap: 16px; }
  .wordmark .disc { --size: 76px; }
  .wordmark h1 span { font-size: 14px; letter-spacing: .26em; margin-top: 8px; }
  .promise { margin-top: 24px; }
  .hero .lede { font-size: 18px; }
  .hero .actions { flex-direction: column; align-items: stretch; }
  .hero .btn { width: 100%; }
}
/* iPhone arriving from the watch's QR code: the App Store button is the next tap */
.is-iphone.store-ready .hero .actions .btn.store { order: -1; min-height: 60px; font-size: 21px; }

/* ---------------------------------------------------------------- devices */

/* iPhone: drawn frame around a simulator screenshot (1206 x 2622) */
.phone {
  --w: 270px;
  width: var(--w);
  padding: calc(var(--w) * .035);
  border-radius: calc(var(--w) * .16);
  background: linear-gradient(145deg, var(--device-hi), var(--device) 30%, var(--device-lo));
  box-shadow: var(--shadow), inset 0 0 0 1.5px rgba(255, 255, 255, .08);
  flex: none;
}
.phone .screen { position: relative; border-radius: calc(var(--w) * .13); overflow: hidden; background: #000; aspect-ratio: 1206 / 2622; }
.phone .screen img { width: 100%; height: 100%; object-fit: cover; }
.phone .screen::after { content: ""; position: absolute; left: 50%; top: 2.2%; width: 31%; height: 3.4%; transform: translateX(-50%); background: #000; border-radius: 99px; }

/* Pebble watches: drawn cases around emulator screenshots, pixel-exact */
.pebble { --s: 1; flex: none; position: relative; isolation: isolate; }
.pebble .screen { display: block; image-rendering: pixelated; image-rendering: crisp-edges; }
.pebble .strap {
  position: absolute; left: 50%; transform: translateX(-50%); z-index: -1;
  background: linear-gradient(90deg, #15161a, #2b2d33 50%, #15161a);
  -webkit-mask-image: linear-gradient(transparent, #000 22%, #000 78%, transparent);
  mask-image: linear-gradient(transparent, #000 22%, #000 78%, transparent);
}
.pebble .btn-l, .pebble .btn-r { position: absolute; width: 7px; border-radius: 3px; background: var(--device-hi); }

/* Pebble Time 2: 200 x 228 colour screen */
.pebble.time2 .case {
  position: relative;
  padding: calc(34px * var(--s)) calc(22px * var(--s)) calc(40px * var(--s));
  border-radius: calc(26px * var(--s));
  background: linear-gradient(160deg, #3a3d43, #202227 40%, #121316);
  box-shadow: var(--shadow), inset 0 0 0 2px rgba(255, 255, 255, .08);
}
.pebble.time2 .screen { width: calc(200px * var(--s)); height: calc(228px * var(--s)); border-radius: calc(3px * var(--s)); }
.pebble.time2 .strap { width: 62%; top: calc(-44px * var(--s)); bottom: calc(-44px * var(--s)); }
.pebble.time2 .btn-l { left: -5px; top: 30%; height: 44px; }
.pebble.time2 .btn-r { right: -5px; height: 36px; }
.pebble.time2 .btn-r.u { top: 18%; } .pebble.time2 .btn-r.m { top: 42%; } .pebble.time2 .btn-r.d { top: 66%; }

/* Pebble Round 2: 260 x 260 round colour screen */
.pebble.round2 .case {
  position: relative; border-radius: 50%;
  padding: calc(24px * var(--s));
  background: radial-gradient(circle at 35% 30%, #5b5f67, #25272c 55%, #111215);
  box-shadow: var(--shadow), inset 0 0 0 2px rgba(255, 255, 255, .1);
}
.pebble.round2 .screen { width: calc(260px * var(--s)); height: calc(260px * var(--s)); border-radius: 50%; background: #fff; }
.pebble.round2 .strap { width: 46%; top: calc(-40px * var(--s)); bottom: calc(-40px * var(--s)); }
.pebble.round2 .btn-l { left: -4px; top: 44%; height: 34px; }
.pebble.round2 .btn-r { right: -4px; height: 30px; }
.pebble.round2 .btn-r.u { top: 24%; } .pebble.round2 .btn-r.m { top: 44%; } .pebble.round2 .btn-r.d { top: 64%; }

/* Pebble 2 Duo: 144 x 168 black-and-white screen */
.pebble.duo .case {
  position: relative;
  padding: calc(30px * var(--s)) calc(16px * var(--s)) calc(36px * var(--s));
  border-radius: calc(18px * var(--s));
  background: linear-gradient(160deg, #34363b, #1d1e21 45%, #0f1012);
  box-shadow: var(--shadow), inset 0 0 0 2px rgba(255, 255, 255, .07);
}
.pebble.duo .screen { width: calc(144px * var(--s)); height: calc(168px * var(--s)); }
.pebble.duo .strap { width: 70%; top: calc(-36px * var(--s)); bottom: calc(-36px * var(--s)); }
.pebble.duo .btn-l { left: -5px; top: 30%; height: 34px; }
.pebble.duo .btn-r { right: -5px; height: 28px; }
.pebble.duo .btn-r.u { top: 18%; } .pebble.duo .btn-r.m { top: 42%; } .pebble.duo .btn-r.d { top: 66%; }

.s1 { --s: 1; } .s15 { --s: 1.5; } .s2 { --s: 2; }
.sw { --s: 1; }
@media (min-width: 1180px) { .sw { --s: 1.5; } .pebble.round2.sw { --s: 1; } }
@media (max-width: 720px) { .pebble.s2 { --s: 1.5; } .pebble.s15 { --s: 1; } }

/* ---------------------------------------------------------------- sections */

.section { padding: 110px 0; position: relative; }
.section.alt { background: var(--bg-alt); }
.section + .section:not(.alt):not(.band-section) { border-top: 2px dotted var(--rule); }
.kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.kicker .num { font-size: 20px; line-height: 1; }
.section h2 { font-size: clamp(40px, 6vw, 72px); max-width: 13em; }
.section .intro { margin-top: 18px; font-size: 21px; max-width: 34em; color: var(--sub); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; margin-top: 56px; }
.split.top { align-items: start; }
@media (max-width: 900px) {
  .section { padding: 76px 0; }
  .split { grid-template-columns: minmax(0, 1fr); gap: 40px; margin-top: 40px; }
}

/* rows separated by dotted rules, like the watch's list */
.rows { list-style: none; padding: 0; margin: 0; }
.rows li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 2px dotted var(--rule); }
.rows li:first-child { border-top: 2px dotted var(--rule); }
.rows .key { flex: none; min-width: 7.2em; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; padding-top: 3px; }
.rows b { font-weight: 700; }
.rows p { margin-top: 2px; color: var(--sub); }
@media (max-width: 520px) { .rows li { flex-direction: column; gap: 4px; } }

/* ---------------------------------------------------------------- 01 say it */

.say { display: grid; gap: 18px; }
.quote {
  display: flex; gap: 16px; align-items: center;
  font-size: clamp(24px, 3vw, 32px); font-weight: 700; line-height: 1.15;
}
.quote .disc { --size: 64px; --ring: var(--cobalt); }
.quote q { quotes: "\201C" "\201D"; }
.arrow-rule { height: 0; border-top: 2px dotted var(--rule); margin: 6px 0 6px 80px; position: relative; }

/* mock list, drawn like the list screen */
.mock { background: var(--bg); color: var(--ink); max-width: 460px; width: 100%; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.section.alt .mock { background: var(--bg); }
.mock .mband { position: relative; background: var(--picton); color: #000; padding: 26px 22px 30px; }
.mock .mband h3 { font-size: 32px; max-width: 9em; }
.mock .mband p { font-size: 17px; margin-top: 4px; }
.mock .mband .disc { position: absolute; right: 20px; bottom: -40px; --size: 84px; box-shadow: 0 0 0 5px var(--bg), inset 0 0 0 3px var(--picton); }
.mock .mprog { display: flex; align-items: center; gap: 12px; padding: 22px 22px 6px; max-width: 330px; }
.mock .mprog .seg { flex: 1; gap: 2px; }
.mock .mprog .seg i { flex: 1; width: auto; height: 12px; }
.mock .mprog .num { font-size: 20px; }
.mock h4 { margin: 18px 22px 2px; color: var(--sub); }
.mock ul { list-style: none; margin: 0; padding: 0 22px 20px; }
.mock li { display: flex; align-items: center; gap: 14px; min-height: 42px; border-bottom: 2px dotted var(--line); font-weight: 700; font-size: 18px; }
.mock li:last-child { border-bottom: 0; }
.mock .cb { width: 18px; height: 18px; flex: none; border-radius: 5px; box-shadow: inset 0 0 0 2px var(--ink); }
.mock li.done { color: var(--sub); text-decoration: line-through; text-decoration-thickness: 2px; }
.mock li.done .cb { background: var(--ink); opacity: .6; box-shadow: none; }
.reveal-rows li { opacity: 0; transform: translateY(8px); transition: opacity .35s ease, transform .45s cubic-bezier(.2, .9, .3, 1.2); }
.reveal-rows.in li { opacity: 1; transform: none; }
.no-js .reveal-rows li { opacity: 1; transform: none; }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; margin-top: 80px; list-style: none; padding: 0; counter-reset: step; }
.steps li { display: grid; gap: 22px; justify-items: center; text-align: center; }
.steps .caption { max-width: 17em; }
.steps .caption b { display: block; font-size: 22px; line-height: 1.1; margin-bottom: 4px; }
.steps .caption .num { display: block; font-size: 15px; color: var(--sub); margin-bottom: 8px; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 56px; }
  .steps li { grid-template-columns: auto minmax(0, 1fr); text-align: left; justify-items: start; align-items: center; gap: 22px; }
}
@media (max-width: 440px) {
  .steps li { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

/* ---------------------------------------------------------------- 02 check off */

.check-devices { display: flex; align-items: flex-end; justify-content: center; gap: 36px; flex-wrap: wrap; padding: 50px 0; }

/* ---------------------------------------------------------------- 03 sync */

.sync-pair { display: flex; align-items: center; justify-content: center; gap: 0; padding: 40px 0; }
.sync-pair .link { display: flex; align-items: center; flex: 0 1 120px; min-width: 70px; position: relative; }
.sync-pair .link::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; border-top: 3px dotted var(--rule); }
.sync-pair .link .disc { --size: 68px; margin: 0 auto; position: relative; --ring: var(--cobalt); }
@media (max-width: 520px) {
  .sync-pair .phone { --w: 200px; }
  .sync-pair .link { flex-basis: 56px; min-width: 40px; }
  .sync-pair .link .disc { --size: 48px; --rw: 2px; }
}

/* ---------------------------------------------------------------- 04 watches */

.watches { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; margin-top: 64px; list-style: none; padding: 0; }
.watches li { display: grid; grid-template-rows: 420px auto; justify-items: center; gap: 30px; }
.watches .stage { display: grid; place-items: center; align-self: center; }
.watches .spec { width: 100%; max-width: 300px; border-top: 2px dotted var(--rule); padding-top: 16px; }
.watches h3 { font-size: 30px; }
.watches dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; margin-top: 12px; }
.watches dt { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--sub); padding-top: 3px; }
.watches dd .num { font-size: 18px; }
@media (max-width: 960px) {
  .watches { grid-template-columns: 1fr; gap: 64px; }
  .watches li { grid-template-rows: auto auto; }
}

/* ---------------------------------------------------------------- 05 the look */

.iconset { display: grid; grid-template-columns: repeat(9, minmax(0, 1fr)); gap: 12px; list-style: none; padding: 0; margin: 56px 0 0; }
.iconset li { display: grid; justify-items: center; gap: 10px; }
.iconset .disc { --size: min(88px, 100%); aspect-ratio: 1; height: auto; --rw: 4px; }
.iconset span { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--sub); }
@media (max-width: 760px) { .iconset { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px 12px; } .iconset .disc { --size: 76px; } }
.palette { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 4px; margin-top: 56px; list-style: none; padding: 0; }
.palette li { display: grid; gap: 10px; }
.palette i { display: block; height: 64px; background: var(--c); border-radius: 2px; }
.palette span { font-size: 15px; font-weight: 700; line-height: 1.15; }
.palette .num { display: block; font-size: 13px; color: var(--sub); font-weight: 600; }
@media (max-width: 620px) { .palette { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 20px; } }
.look-devices { display: flex; justify-content: center; align-items: center; gap: 36px; flex-wrap: wrap; margin-top: 72px; }
.look-devices .phone { --w: 240px; }

/* ---------------------------------------------------------------- 06 pricing */

.band-section { padding: 0; }
.band-section .band { background: var(--midnight); color: #fff; padding: 96px 0; }
.band-section h2 { color: #fff; }
.band-section .intro { color: rgba(255, 255, 255, .88); }
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 56px; list-style: none; padding: 0; border-top: 2px dotted rgba(255, 255, 255, .6); }
.plans li { padding: 26px 26px 26px 0; display: grid; gap: 12px; align-content: start; }
.plans li + li { border-left: 2px dotted rgba(255, 255, 255, .6); padding-left: 26px; }
.plans h3 { font-size: 30px; }
.plans .seg i { width: 12px; height: 12px; }
.plans p { color: rgba(255, 255, 255, .9); }
.included { margin-top: 56px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; list-style: none; padding: 0; }
.included li { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 2px dotted rgba(255, 255, 255, .45); }
.included svg { width: 20px; height: 20px; flex: none; margin-top: 4px; }
.band-section .fine { margin-top: 28px; font-size: 16px; color: rgba(255, 255, 255, .85); max-width: 46em; }
.band-section a { color: #fff; }
@media (max-width: 820px) {
  .band-section .band { padding: 72px 0; }
  .plans { grid-template-columns: 1fr; }
  .plans li, .plans li + li { padding: 22px 0; border-left: 0; border-bottom: 2px dotted rgba(255, 255, 255, .6); }
  .included { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- FAQ */

.faq { margin-top: 48px; max-width: 820px; border-top: 2px dotted var(--rule); }
.faq details { border-bottom: 2px dotted var(--rule); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 0; font-size: 22px; font-weight: 700; line-height: 1.2;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--brand); position: relative; }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; left: 50%; top: 50%; background: #fff; border-radius: 1px; transform: translate(-50%, -50%); }
.faq summary .pm::before { width: 14px; height: 3px; }
.faq summary .pm::after { width: 3px; height: 14px; transition: transform .2s ease; }
.faq details[open] summary .pm::after { transform: translate(-50%, -50%) scaleY(0); }
.faq .answer { padding: 0 0 24px; max-width: 44em; color: var(--sub); display: grid; gap: 12px; }
.faq .answer b, .faq .answer strong { color: var(--ink); }
.faq .answer ol { padding-left: 1.3em; display: grid; gap: 6px; }

/* ---------------------------------------------------------------- final CTA + footer */

.cta { text-align: left; }
.cta .wrap { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: center; }
.cta h2 { font-size: clamp(38px, 5vw, 60px); }
@media (max-width: 820px) { .cta .wrap { grid-template-columns: 1fr; } .cta .actions { flex-direction: column; align-items: stretch; } }

.foot { background: var(--bg-alt); padding: 56px 0 40px; font-size: 16px; }
.foot .wrap { display: grid; gap: 28px; }
.foot .row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; align-items: center; }
.foot nav ul { display: flex; flex-wrap: wrap; gap: 8px 24px; list-style: none; padding: 0; margin: 0; }
.foot nav a { font-weight: 700; color: var(--ink); }
.foot .legal { color: var(--sub); max-width: 58em; border-top: 2px dotted var(--rule); padding-top: 22px; }
.foot .seg { margin-top: 2px; }

/* ---------------------------------------------------------------- document pages (privacy, terms, support) */

.doc-head { background: var(--cobalt); color: #fff; padding: 56px 0 70px; }
.doc-head h1 { font-size: clamp(48px, 7vw, 84px); }
.doc-head p { margin-top: 14px; font-size: 20px; max-width: 36em; opacity: .92; }
.doc-head .disc { --size: 84px; margin-bottom: 26px; }
.doc { padding: 56px 0 96px; }
.doc .wrap { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 56px; align-items: start; }
.toc { position: sticky; top: 24px; font-size: 16px; }
.toc ol { list-style: none; padding: 0; margin: 12px 0 0; border-top: 2px dotted var(--rule); }
.toc li { border-bottom: 2px dotted var(--rule); }
.toc a { display: flex; gap: 10px; padding: 9px 0; color: var(--ink); text-decoration: none; font-weight: 700; line-height: 1.2; }
.toc a .num { color: var(--sub); min-width: 1.6em; }
.toc a:hover { color: var(--link); }
.prose { max-width: 720px; }
.prose > * + * { margin-top: 16px; }
.prose h2 { font-size: 34px; margin-top: 56px; padding-top: 22px; border-top: 2px dotted var(--rule); display: flex; gap: 14px; align-items: baseline; scroll-margin-top: 20px; }
.prose h2:first-child { margin-top: 0; }
.prose h2 .num { font-size: 20px; color: var(--sub); }
.prose h3 { font-size: 23px; margin-top: 30px; }
.prose ul, .prose ol { padding-left: 1.3em; display: grid; gap: 8px; }
.prose li::marker { color: var(--sub); }
.prose .note { border-left: 6px solid var(--cobalt); padding: 6px 0 6px 18px; }
.prose table { width: 100%; border-collapse: collapse; font-size: 16px; }
.prose th, .prose td { text-align: left; vertical-align: top; padding: 12px 12px 12px 0; border-bottom: 2px dotted var(--rule); }
.prose th { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--sub); }
.table-scroll { overflow-x: auto; }
.prose .meta { color: var(--sub); }
.prose code, .code { font-family: var(--num); font-weight: 700; letter-spacing: .08em; }
@media (max-width: 900px) {
  .doc .wrap { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .toc { position: static; }
}
@media (max-width: 560px) {
  .prose table, .prose thead, .prose tbody, .prose tr, .prose th, .prose td { display: block; }
  .prose thead { display: none; }
  .prose tr { border-bottom: 2px dotted var(--rule); padding: 10px 0; }
  .prose td { border: 0; padding: 2px 0; }
  .prose td:first-child { font-weight: 700; }
}

/* 404 */
.lost { padding: 96px 0 120px; text-align: center; }
.lost .disc { --size: 120px; margin: 0 auto 30px; --ring: var(--cobalt); }
.lost h1 { font-size: clamp(44px, 7vw, 72px); }
.lost p { margin: 14px auto 0; max-width: 28em; color: var(--sub); font-size: 20px; }
.lost .actions { justify-content: center; margin-top: 30px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal-rows li { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------- additions */

.points { display: flex; flex-wrap: wrap; gap: 14px 34px; list-style: none; padding: 0; margin: 0; }
.hero-strip { min-height: 0; }
@media (min-width: 961px) {
  .hero .band { padding-bottom: 56px; }
  .hero-devices { margin-bottom: -230px; }
  .hero-strip { min-height: 250px; padding-top: 34px; }
  .hero-strip .wrap { padding-right: calc(45% + var(--gutter)); }
  .points { flex-direction: column; gap: 14px; }
}
@media (max-width: 520px) {
  .hero-devices .phone { --w: 180px; }
  .hero-devices .pebble { --s: 1; margin-left: -64px; }
}
@media (max-width: 400px) {
  .hero-devices .phone { --w: 160px; }
  .hero-devices .pebble { --s: .84; margin-left: -60px; }
}

.mock h4 { font-size: 12px; }

.board { width: 100%; border-collapse: collapse; font-size: 17px; }
.board th { text-align: left; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--sub); padding: 0 12px 10px 0; border-bottom: 3px solid var(--ink); }
.board td { padding: 14px 12px 14px 0; border-bottom: 2px dotted var(--rule); vertical-align: top; line-height: 1.25; }
.board td:nth-child(2) { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; padding-top: 16px; }
.board td.num { font-size: 18px; }
.board td:nth-child(3) { font-weight: 700; }
.board .status { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; padding-top: 2px; }
.board .seg.small { display: inline-flex; gap: 2px; }
@media (max-width: 560px) {
  .board thead { display: none; }
  .board, .board tbody, .board tr { display: block; }
  .board tr { display: grid; grid-template-columns: auto 1fr; gap: 2px 14px; padding: 12px 0; border-bottom: 2px dotted var(--rule); }
  .board td { border: 0; padding: 0; }
  .board td:nth-child(2) { padding-top: 4px; }
  .board td:nth-child(3) { grid-column: 1 / -1; }
  .board td:nth-child(4) { grid-column: 1 / -1; }
}

.appicons { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 28px; margin-top: 64px; padding-top: 28px; border-top: 2px dotted var(--rule); }
.appicons p { font-size: 19px; }
.appicons ul { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; padding: 0; margin: 0; }
.appicons img { width: 60px; height: 60px; border-radius: 14px; box-shadow: 0 0 0 1px var(--line); }
@media (max-width: 420px) { .appicons img { width: 40px; height: 40px; border-radius: 10px; } .appicons ul { gap: 8px; } }

.pebble .strap { display: none; }
.say-phone { display: flex; justify-content: center; margin-top: 48px; }
.say-phone .phone { --w: 240px; }
@media (max-width: 900px) { .say-phone { display: none; } }
.mock .mprog { max-width: calc(100% - 120px); }
.mock .mprog .seg i { min-width: 0; }
.cta .band { background: var(--cobalt); }
.cta .intro { color: rgba(255, 255, 255, .9); }
.foot .row { padding-bottom: 22px; border-bottom: 2px dotted var(--rule); }
.foot .legal { border-top: 0; padding-top: 0; }
.check-devices { flex-direction: column; align-items: center; }
html { background: var(--bg); }
.prose .rows { padding-left: 0; display: block; }
.prose .rows li { flex-direction: column; gap: 4px; }
.prose .rows li::marker { content: none; }
.prose .rows .key { min-width: 0; }
#say { padding-top: 64px; }
@media (max-width: 960px) { #say { padding-top: 40px; } }
