/*
 * The app's own palette and type, on the web.
 *
 * Tokens come from src/constants/sidecar.ts (light and dark), so the site and
 * the app look like one product. Movement is scroll-driven CSS only: no
 * JavaScript, and nothing moves for a reader who asked for less motion.
 */

:root {
  --ground: #efece7;
  --surface: #ffffff;
  --ink: #1c1b19;
  --ink-2: #5c5852;
  --ink-3: #6f6a63;
  --accent: #d33a3c;
  --accent-link: #b33736;
  --accent-deep: #862726;
  --accent-wash: rgba(211, 58, 60, 0.1);
  --hairline: rgba(0, 0, 0, 0.07);
  --border: rgba(0, 0, 0, 0.1);
  --hero-from: #1a1917;
  --hero-via: #2b211e;
  --hero-to: #5c2420;
  --live: #5ec966;
  --on-night: rgba(255, 255, 255, 0.72);
  --on-night-faint: rgba(255, 255, 255, 0.5);
  --on-night-fill: rgba(255, 255, 255, 0.1);
  --shadow: 0 18px 50px rgba(28, 27, 25, 0.13);
  --sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --page: 1120px;
  --gutter: 20px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ground: #121110;
    --surface: #1f1e1b;
    --ink: #ffffff;
    --ink-2: rgba(255, 255, 255, 0.72);
    --ink-3: rgba(255, 255, 255, 0.56);
    --accent-link: #ff7e76;
    --accent-deep: #f75d59;
    --accent-wash: rgba(216, 70, 45, 0.16);
    --hairline: rgba(255, 255, 255, 0.1);
    --border: rgba(255, 255, 255, 0.16);
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  }
}

* {
  box-sizing: border-box;
}

/*
 * Anchors glide instead of jumping, and stop clear of the sticky top bar.
 * The browser's own curve eases out, so a long jump slows as it arrives.
 */
html {
  scroll-padding-top: 96px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  /*
   * The home page settles on whichever section you stop near, without ever
   * trapping you: "proximity" only pulls when a section is already close, so a
   * long scroll still passes straight through and the neighbours stay in view.
   */
  html.snap {
    scroll-snap-type: y proximity;
  }

  html.snap .main > section,
  html.snap .hero,
  html.snap .stats,
  html.snap .cta-band,
  html.snap .plans-band {
    scroll-snap-align: start;
    scroll-margin-top: 92px;
  }

  /* A section taller than the window is not worth locking to. */
  @media (max-height: 620px) {
    html.snap {
      scroll-snap-type: none;
    }
  }
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* A warm wash behind the top of the page, so it is never a flat colour. */
  background-image: radial-gradient(60rem 30rem at 80% -8rem, var(--accent-wash), transparent 70%);
  background-repeat: no-repeat;
}

a {
  color: var(--accent-link);
  text-underline-offset: 2px;
}

h1,
h2,
h3 {
  letter-spacing: -0.5px;
  line-height: 1.14;
  margin: 0;
}

h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  font-weight: 600;
}

h2 {
  font-size: clamp(25px, 3.4vw, 36px);
  font-weight: 600;
}

h3 {
  font-size: 18.5px;
  font-weight: 600;
}

p {
  margin: 0;
}

/* ---- movement ----------------------------------------------------------- */

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal {
      animation: rise linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 26%;
    }
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(94, 201, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(94, 201, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(94, 201, 102, 0);
  }
}

/* ---- top bar ------------------------------------------------------------ */

.top {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px var(--gutter);
  background: color-mix(in srgb, var(--ground) 86%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: inherit;
  margin-right: auto;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: block;
}

.brand-name {
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.4px;
}

.brand-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* The pill of links sits in the middle of the bar, like the switch in the app. */
.tabs {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  box-shadow: 0 2px 10px rgba(28, 27, 25, 0.05);
}

.tab {
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.16s ease, background 0.16s ease;
}

.tab:hover {
  color: var(--ink);
  background: var(--accent-wash);
}

.tab-on,
.tab-on:hover {
  background: var(--ink);
  color: var(--ground);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 15px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.16s ease, background 0.16s ease;
}

.button:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}

.button-quiet {
  background: var(--on-night-fill);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.button-quiet:hover {
  background: rgba(255, 255, 255, 0.18);
}

.band .button-quiet,
.closing .button-quiet {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14.5px;
  border-radius: 12px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

/* ---- layout ------------------------------------------------------------- */

.main {
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-3);
}

.lede {
  font-size: clamp(17px, 2.1vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  margin-top: 16px;
  max-width: 60ch;
}

.section-lede {
  color: var(--ink-2);
  margin-top: 12px;
  max-width: 62ch;
}

.hero {
  position: relative;
  overflow: hidden;
  margin: 26px 0 0;
  padding: clamp(28px, 4.4vw, 56px);
  border-radius: 30px;
  background:
    radial-gradient(40rem 22rem at 78% 12%, rgba(211, 58, 60, 0.4), transparent 62%),
    linear-gradient(135deg, var(--hero-from) 0%, var(--hero-via) 55%, var(--hero-to) 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  box-shadow: var(--shadow);
}

.hero .eyebrow {
  color: var(--on-night-faint);
}

.hero .lede {
  color: var(--on-night);
}

.hero h1 {
  margin-top: 14px;
  max-width: 17ch;
}

.hero-note {
  margin-top: 24px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--on-night-fill);
  color: var(--on-night);
  font-size: 13.5px;
  max-width: 52ch;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.page-head {
  padding: 46px 0 4px;
}

.band {
  padding: 56px 0;
  border-top: 1px solid var(--hairline);
  margin-top: 40px;
}

.band:first-of-type {
  border-top: none;
}

.band-dark {
  border-top: none;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
}

.split-art {
  display: flex;
  justify-content: center;
}

.gallery {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.more {
  margin-top: 28px;
  font-weight: 600;
}

.more a {
  text-decoration: none;
}

.more a:hover {
  text-decoration: underline;
}

/* ---- stat strip --------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  margin-top: 26px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.stat {
  background: var(--surface);
  padding: 22px 20px;
}

.stat-value {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.6px;
}

.stat-label {
  margin-top: 6px;
  color: var(--ink-3);
  font-size: 13.5px;
  line-height: 1.45;
}

/* ---- cards -------------------------------------------------------------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
  gap: 14px;
  margin-top: 30px;
}

/*
 * On a wide screen the grid is twelve columns, so a row always comes out
 * even: three cards of four, two leaders of six, or four narrow ones of three.
 */
@media (min-width: 900px) {
  .cards {
    grid-template-columns: repeat(12, 1fr);
  }

  .cards > * {
    grid-column: span 4;
  }

  .cards > .card-wide {
    grid-column: span 6;
  }

  .cards-tight > * {
    grid-column: span 3;
  }
}

.card {
  padding: 24px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: var(--accent-wash);
  color: var(--accent-deep);
  margin-bottom: 14px;
}

.icon {
  width: 21px;
  height: 21px;
}

.card p {
  margin-top: 10px;
  color: var(--ink-2);
  font-size: 15.5px;
}

.card-wide h3 {
  font-size: 21px;
}

.cards-tight .card {
  padding: 20px;
}

/* ---- who it is for ------------------------------------------------------ */

.audiences {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.audience {
  position: relative;
  padding: 26px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.audience:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

/* The first kind of group leads the grid: wider, and on the dark card. */
.audience-lead {
  background: linear-gradient(135deg, var(--hero-from) 0%, var(--hero-via) 60%, var(--hero-to) 100%);
  border-color: transparent;
  color: #fff;
}

.audience-lead .card-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.audience-lead .audience-tag {
  color: var(--on-night-faint);
}

.audience-lead .audience-body {
  color: var(--on-night);
}

.audience-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 7px;
}

.audience h3 {
  font-size: 19.5px;
  line-height: 1.2;
  max-width: 24ch;
}

.audience-body {
  margin-top: 10px;
  color: var(--ink-2);
  font-size: 15.5px;
}

@media (min-width: 900px) {
  .audiences {
    grid-template-columns: repeat(6, 1fr);
  }

  /* Two rows: a wide leader beside one card, then three across. */
  .audience-lead {
    grid-column: span 4;
  }

  .audience:nth-child(2) {
    grid-column: span 2;
  }

  .audience:nth-child(n + 3) {
    grid-column: span 2;
  }

  .audience-lead h3 {
    font-size: 25px;
    max-width: 20ch;
  }
}

/* A quiet line that keeps a promise honest, under a list or a claim. */
.notice {
  margin-top: 22px;
  padding: 13px 15px;
  border-radius: 14px;
  background: var(--accent-wash);
  color: var(--accent-deep);
  font-size: 14px;
  line-height: 1.5;
  max-width: 62ch;
}

/* ---- steps -------------------------------------------------------------- */

.steps {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  position: relative;
}

.steps li {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--hairline);
}

.steps li:first-child {
  border-top: none;
}

.step-no {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--accent-deep);
  background: var(--accent-wash);
  border-radius: 99px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.step-copy p {
  margin-top: 8px;
  color: var(--ink-2);
  max-width: 68ch;
}

.ticks,
.notes {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 62ch;
}

.ticks li,
.notes li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-2);
}

.ticks li::before,
.notes li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
}

.notes {
  font-size: 14.5px;
  margin-top: 26px;
}

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

.plans-band {
  margin-top: 48px;
  padding: clamp(26px, 4vw, 48px);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--hero-from) 0%, var(--hero-via) 58%, var(--hero-to) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.plans-head h2 {
  max-width: 20ch;
}

.plans-head p {
  margin-top: 12px;
  color: var(--on-night);
  max-width: 58ch;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.plan {
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.plan-featured {
  background: #fff;
  border-color: transparent;
  color: var(--ink);
}

.plan-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--on-night-faint);
  margin-right: auto;
}

.plan-featured .plan-name {
  color: var(--ink-3);
}

.plan-flag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border-radius: 99px;
  padding: 4px 10px;
}

.plan-price {
  margin-top: 12px;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -1.4px;
  line-height: 1.05;
}

.plan-price span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--on-night-faint);
  margin-top: 6px;
}

.plan-featured .plan-price span {
  color: var(--ink-3);
}

.plan .button {
  margin-top: 20px;
  width: 100%;
}

.plan-note {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--on-night-faint);
  text-align: center;
}

.plan-featured .plan-note {
  color: var(--ink-3);
}

.plan ul {
  list-style: none;
  margin: 22px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 10px;
}

.plan-featured ul {
  border-top-color: var(--hairline);
}

.plan li {
  padding-left: 24px;
  position: relative;
  color: var(--on-night);
  font-size: 15px;
}

.plan-featured li {
  color: var(--ink-2);
}

/* A tick, drawn with two borders, so the list needs no images. */
.plan li::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 6px;
  width: 6px;
  height: 11px;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}

.plan-featured li::before {
  border-color: var(--accent-link);
}

.plans-band .notes {
  margin-top: 24px;
  color: var(--on-night-faint);
}

.plans-band .notes li {
  color: var(--on-night-faint);
}

.plans-band .notes li::before {
  background: rgba(255, 255, 255, 0.45);
}

.center {
  text-align: center;
}

/* ---- questions ---------------------------------------------------------- */

.faq {
  margin-top: 26px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  overflow: hidden;
}

.faq details {
  border-top: 1px solid var(--hairline);
}

.faq details:first-child {
  border-top: none;
}

.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 500;
  list-style: none;
}

.faq summary:hover {
  color: var(--accent-link);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  float: right;
  color: var(--ink-3);
  font-family: var(--mono);
}

.faq details[open] summary::after {
  content: '–';
}

.faq p {
  padding: 0 20px 20px;
  color: var(--ink-2);
  max-width: 72ch;
}

/* ---- legal -------------------------------------------------------------- */

.doc-list {
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  overflow: hidden;
}

.doc-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-top: 1px solid var(--hairline);
  text-decoration: none;
  color: inherit;
}

.doc-link:first-child {
  border-top: none;
}

.doc-link:hover {
  background: var(--accent-wash);
}

.doc-title {
  display: block;
  font-weight: 600;
}

.doc-summary {
  display: block;
  color: var(--ink-3);
  font-size: 14.5px;
  margin-top: 3px;
}

.doc-chevron {
  margin-left: auto;
  color: var(--ink-3);
  font-size: 20px;
}

.doc {
  max-width: 72ch;
  padding: 36px 0 20px;
}

.doc h2 {
  font-size: 21px;
  margin-top: 36px;
}

.doc p,
.doc li {
  color: var(--ink-2);
  margin-top: 12px;
}

.doc ul {
  padding-left: 20px;
}

.callout {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--accent-wash);
  color: var(--accent-deep);
  font-weight: 500;
}

.updated {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-3);
}

.draft {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--accent-wash);
  color: var(--accent-deep);
  font-size: 14.5px;
  max-width: 68ch;
}

/* ---- phone mockups ------------------------------------------------------ */

.phone {
  width: 272px;
  flex: none;
  aspect-ratio: 9 / 19;
  border-radius: 38px;
  padding: 9px;
  background: linear-gradient(160deg, #3a3835, #131211);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.36), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #efece7;
  color: #1c1b19;
  padding: 16px 13px;
  font-size: 11px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

/* The dark hero card at the top of the app's home screen. */
.shot-hero {
  border-radius: 18px;
  padding: 13px;
  color: #fff;
  background: linear-gradient(135deg, #1a1917 0%, #2b211e 55%, #5c2420 100%);
}

.shot-fix {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.shot-dot,
.shot-live {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--live);
  flex: none;
}

@media (prefers-reduced-motion: no-preference) {
  .shot-dot,
  .shot-live,
  .pin-pulse {
    animation: pulse 2.6s ease-out infinite;
  }
}

.shot-place {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-top: 8px;
}

.shot-region {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2px;
}

.shot-readout {
  margin-top: 11px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.1);
  padding: 9px 10px;
  display: grid;
  gap: 5px;
  font-family: var(--mono);
  font-size: 9px;
}

.shot-readout div {
  display: flex;
  justify-content: space-between;
}

.shot-readout span:first-child {
  color: rgba(255, 255, 255, 0.6);
}

.shot-rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  display: block !important;
}

.shot-emergency {
  border-radius: 15px;
  background: #d33a3c;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  padding: 13px 10px;
  box-shadow: 0 6px 18px rgba(211, 58, 60, 0.35);
}

.shot-label {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6f6a63;
  margin-top: 2px;
}

.shot-group,
.shot-trip {
  border-radius: 15px;
  background: #fff;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.shot-group-name {
  font-weight: 600;
  font-size: 12px;
}

.shot-group-meta,
.shot-sub {
  color: #6f6a63;
  font-size: 9.5px;
  margin-top: 2px;
}

.shot-group .shot-live {
  margin-left: auto;
}

.shot-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
}

.shot-avatar {
  width: 34px;
  height: 34px;
  border-radius: 99px;
  background: #d33a3c;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shot-name {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.3px;
}

.shot-chips,
.shot-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.chip {
  border-radius: 7px;
  padding: 4px 8px;
  font-size: 9.5px;
  font-weight: 500;
  background: #fff;
  color: #5c5852;
}

.chip-strong {
  background: rgba(211, 58, 60, 0.12);
  color: #862726;
}

.shot-rows {
  background: #fff;
  border-radius: 16px;
  padding: 4px 12px;
}

.shot-rows div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 10px;
}

.shot-rows div:first-child {
  border-top: none;
}

.shot-rows span:first-child {
  color: #6f6a63;
}

.shot-map {
  position: relative;
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #e6e2dc;
}

.shot-map svg {
  width: 100%;
  height: 100%;
}

.shot-contour {
  fill: none;
  stroke: rgba(28, 27, 25, 0.12);
  stroke-width: 1.5;
}

.shot-route {
  fill: none;
  stroke-width: 3.5;
  stroke-linecap: round;
}

.pin {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 99px;
  background: #1f1e1b;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.pin-1 {
  top: 22%;
  left: 62%;
}

.pin-2 {
  top: 44%;
  left: 38%;
}

.pin-3 {
  top: 63%;
  left: 58%;
}

.pin-me {
  position: absolute;
  top: 78%;
  left: 18%;
  width: auto;
  padding: 0 9px;
  gap: 5px;
  background: #d33a3c;
}

.pin-pulse {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #fff;
}

.shot-trip {
  display: block;
}

.shot-trip-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 12px;
}

.shot-trip-body {
  color: #6f6a63;
  font-size: 9.5px;
  margin-top: 3px;
}

/* The mockups keep the light palette: they are pictures of a phone, not the page. */

/* ---- footer ------------------------------------------------------------- */

.foot {
  margin-top: 70px;
  padding: 46px var(--gutter) 40px;
  border-top: 1px solid var(--hairline);
  background: var(--surface);
}

.foot-cols {
  max-width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 26px;
}

.foot-cols a {
  display: block;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 15px;
  padding: 3px 0;
}

.foot-cols a:hover {
  color: var(--accent-link);
}

.foot-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}

.foot-note {
  color: var(--ink-3);
  font-size: 14.5px;
  max-width: 34ch;
}

.foot-legal {
  max-width: var(--page);
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  color: var(--ink-3);
  font-size: 13px;
}

/* ---- narrow screens ----------------------------------------------------- */

@media (max-width: 960px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-art,
  .split-art {
    order: -1;
  }

  .phone {
    width: 240px;
  }
}

@media (max-width: 760px) {
  .top {
    flex-wrap: wrap;
    gap: 10px;
  }

  .brand-tag {
    display: none;
  }

  .tabs {
    position: static;
    transform: none;
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: space-between;
  }

  .tab {
    padding: 7px 12px;
  }

  .hero {
    border-radius: 24px;
  }
}

/* A real screenshot fills the screen area; the bezel stays the same. */
.phone-photo {
  padding: 0;
}

.phone-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- calls to action ---------------------------------------------------- */

.cta-band {
  margin-top: 44px;
  padding: clamp(26px, 4vw, 40px);
  border-radius: 26px;
  background: linear-gradient(135deg, var(--hero-from) 0%, var(--hero-via) 60%, var(--hero-to) 100%);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  max-width: 22ch;
}

.cta-band p {
  margin-top: 10px;
  color: var(--on-night);
  max-width: 54ch;
}

.cta-band .actions {
  margin-top: 0;
}

/* ---- quotes ------------------------------------------------------------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.quote {
  margin: 0;
  padding: 24px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--hairline);
}

.quote blockquote {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.55;
}

.quote blockquote::before {
  content: '“';
  font-size: 34px;
  line-height: 0;
  color: var(--accent);
  margin-right: 2px;
  vertical-align: -6px;
}

.quote figcaption {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quote-name {
  font-weight: 600;
  font-size: 14.5px;
}

.quote-place {
  color: var(--ink-3);
  font-size: 13px;
}

/* A placeholder quote is visibly unfinished, so it cannot be published by accident. */
.quote-draft {
  border-style: dashed;
  border-color: var(--border);
  background: transparent;
  color: var(--ink-3);
}

/* ---- articles ----------------------------------------------------------- */

.article-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.article-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}

.article-card h3 {
  max-width: 26ch;
}

.article-more {
  margin-top: 16px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--accent-link);
}

/* ---- more phone screens ------------------------------------------------- */

.shot-members {
  display: flex;
  gap: 5px;
}

.shot-face {
  width: 28px;
  height: 28px;
  border-radius: 99px;
  background: #1f1e1b;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shot-face-more {
  background: #fff;
  color: #6f6a63;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.shot-files {
  background: #fff;
  border-radius: 16px;
  padding: 4px 12px;
}

.shot-files div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 10px;
}

.shot-files div:first-child {
  border-top: none;
}

.shot-file-kind {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 0.6px;
  color: #862726;
  background: rgba(211, 58, 60, 0.12);
  border-radius: 5px;
  padding: 3px 5px;
}

.shot-invite {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 16px;
  padding: 11px 12px;
}

/* A QR stands in as a pattern: it is a picture of one, not a working code. */
.shot-qr {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, #1c1b19 25%, transparent 25% 50%, #1c1b19 50% 62%, transparent 62%),
    linear-gradient(180deg, #1c1b19 20%, transparent 20% 44%, #1c1b19 44% 56%, transparent 56% 78%, #1c1b19 78%);
  background-size: 8px 8px, 8px 8px;
  background-color: #fff;
  border: 2px solid #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

/* The split section, with the picture on the left instead. */
@media (min-width: 961px) {
  .split-flip {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.foot-mark {
  display: block;
  border-radius: 11px;
  margin-bottom: 12px;
}

.contact-action {
  margin-top: 14px;
  font-weight: 600;
  font-size: 14.5px;
}

.contact-action a {
  text-decoration: none;
}

.contact-action a:hover {
  text-decoration: underline;
}
