/*
 * The beta site borrows Jamigo's tokens rather than approximating them: the same warm paper, the same
 * oxblood, brass and sage, the same Plus Jakarta Sans, the same radii. A marketing page in a different
 * palette to the product it is selling teaches people the screenshots are a mock-up.
 */
:root {
  --paper: #f1ede6;
  --paper-raised: #fcfaf7;
  --hairline: #ded8cb;
  --chasm: #e5e0d5;
  --ink: #0b0e14;
  --ink-soft: #444b58;
  --ink-muted: #6e7682;
  --oxblood: #8a1f2d;
  --brass: #c99a3e;
  --brass-text: #8a6512;
  --sage: #3f7a63;
  --radius-card: 20px;
  --radius-button: 16px;
  --radius-chip: 14px;
  --measure: 34rem;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ------------------------------------------------------------------ chrome */

header.top {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.top .wrap { display: flex; align-items: center; gap: 16px; height: 64px; }
.mark { font-weight: 800; font-size: 23px; letter-spacing: -0.5px; }
.beta-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brass-text); border: 1px solid var(--brass); border-radius: 999px; padding: 3px 9px;
}
.top nav { margin-left: auto; display: flex; gap: 8px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 22px; border-radius: var(--radius-button);
  font-weight: 600; font-size: 15px; text-decoration: none; border: 1px solid transparent;
  transition: transform 0.12s ease, opacity 0.12s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--oxblood); color: #fff; }
.btn-ghost { border-color: var(--hairline); color: var(--ink); background: var(--paper-raised); }

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

.hero { padding: 72px 0 40px; }
.hero h1 {
  font-size: clamp(38px, 7vw, 64px); line-height: 1.04; letter-spacing: -0.035em;
  font-weight: 800; margin: 0 0 20px;
}
.hero .lede { font-size: clamp(18px, 2.4vw, 22px); color: var(--ink-soft); max-width: var(--measure); margin: 0 0 14px; }
.hero .loop { max-width: var(--measure); color: var(--ink-muted); margin: 0 0 32px; }
.hero .loop b { color: var(--ink); font-weight: 600; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ------------------------------------------------------------------ phones */

.phones { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin: 48px 0 8px; }
.phone {
  width: 260px; border-radius: 30px; overflow: hidden;
  border: 1px solid var(--hairline); background: var(--paper-raised);
  box-shadow: 0 24px 60px -28px rgba(11, 14, 20, 0.45);
}
.phone img { display: block; width: 100%; height: auto; }
.phone.dark { border-color: #222a37; }

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

section { padding: 64px 0; border-top: 1px solid var(--chasm); }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-muted); margin: 0 0 12px;
}
h2 { font-size: clamp(27px, 4vw, 38px); line-height: 1.12; letter-spacing: -0.028em; font-weight: 800; margin: 0 0 16px; }
h3 { font-size: 20px; line-height: 1.25; letter-spacing: -0.015em; font-weight: 700; margin: 0 0 8px; }
p { max-width: var(--measure); }
.muted { color: var(--ink-muted); }

.steps { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 36px; }
.step {
  background: var(--paper-raised); border: 1px solid var(--hairline);
  border-radius: var(--radius-card); padding: 22px;
}
.step .n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 999px;
  background: var(--ink); color: var(--paper); font-size: 14px; font-weight: 700; margin-bottom: 12px;
}
.step p { font-size: 15.5px; color: var(--ink-soft); margin: 0; }

.feature { display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .feature { grid-template-columns: 1fr 300px; } .feature.flip { grid-template-columns: 300px 1fr; } .feature.flip .shot { order: -1; } }
.feature .shot { justify-self: center; }

.swatches { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; padding: 0; list-style: none; }
.swatches li {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--hairline); border-radius: var(--radius-chip);
  padding: 7px 13px; font-size: 14px; background: var(--paper-raised);
}
.dot { width: 11px; height: 11px; border-radius: 3px; }

.note {
  background: color-mix(in srgb, var(--brass) 12%, var(--paper-raised));
  border: 1px solid color-mix(in srgb, var(--brass) 35%, transparent);
  border-radius: var(--radius-card); padding: 20px 22px; max-width: var(--measure);
}
.note strong { color: var(--brass-text); }

footer { padding: 48px 0 72px; border-top: 1px solid var(--chasm); color: var(--ink-muted); font-size: 14.5px; }
footer a { color: var(--ink-soft); }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
