/* Leaflog marketing site. The only stylesheet; no build step, no imports,
   no remote fonts. Tokens mirror Leaflog/Theme/Theme.swift (Nocturne), which
   stays the source of color truth. Mobile first: the base rules are the 390pt
   iPhone layout, 720px adds the two-column feature rows, 1080px adds the
   Dawnline hero and caps the container. */

:root {
  color-scheme: dark;

  /* Surfaces */
  --bg: #0E1411;
  --surface: #1A231D;
  --hairline: rgba(255, 255, 255, 0.07);
  --frame-line: rgba(255, 255, 255, 0.10);

  /* Ink. --ink-3 fails AA against --bg at body sizes: captions and large
     text only. */
  --ink: #E9F0EA;
  --ink-2: #9DAFA3;
  --ink-3: #66766C;

  /* Accents */
  --mint: #57C787;
  --mint-bright: #6FCD96;
  --mint-dim: rgba(87, 199, 135, 0.14);
  --mint-line: rgba(87, 199, 135, 0.35);
  --amber: #D9A94E;

  /* Strain types */
  --type-hybrid: #6FCD96;
  --type-indica: #B49BE8;
  --type-sativa: #E39A6B;

  --font-serif: ui-serif, "New York", Georgia, serif;
  --font-sans: -apple-system, system-ui, "SF Pro Text", "Helvetica Neue", sans-serif;

  --radius: 16px;
  --radius-sm: 12px;
  --gutter: clamp(20px, 6vw, 48px);
  --measure: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--mint);
  text-decoration: none;
}

a:hover {
  color: var(--mint-bright);
}

img,
svg {
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10;
  padding: 12px 18px;
  border-radius: 0 0 var(--radius-sm) 0;
  background: var(--surface);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.skip:focus {
  left: 0;
}

.container {
  width: 100%;
  max-width: var(--measure);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------------------------------------------------------------- type --- */

.serif,
h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.14;
  color: var(--ink);
  margin: 0;
}

p {
  margin: 0;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin: 0;
}

.label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
}

.label-mint {
  color: var(--mint);
}

.label-ink2 {
  color: var(--ink-2);
}

.sub {
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink-2);
  margin: 0;
}

.detail {
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-3);
  margin: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--mint-dim);
  color: var(--mint);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  background: var(--mint);
  color: var(--bg);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.cta:hover {
  background: var(--mint-bright);
  color: var(--bg);
}

.arrow-link {
  font-size: 15px;
  font-weight: 600;
}

.arrow-link svg {
  vertical-align: -1px;
}

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

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

.site-header {
  position: relative;
  z-index: 3;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.brand:hover {
  color: var(--ink);
}

.brand svg {
  display: block;
  width: 26px;
  height: 26px;
}

.brand-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-text {
  display: none;
}

.badge {
  display: inline-flex;
}

.badge img {
  display: block;
  height: 40px;
  width: auto;
}

.badge-lg img {
  height: 56px;
}

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

.phone {
  display: block;
  height: auto;
  border-radius: 24px;
  border: 1px solid var(--frame-line);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.62);
  background: #000;
}

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

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 260px 240px at 20% 0%, rgba(87, 199, 135, 0.22), rgba(87, 199, 135, 0.06) 55%, rgba(87, 199, 135, 0) 100%),
    linear-gradient(180deg, rgba(87, 199, 135, 0) 35%, rgba(87, 199, 135, 0.09) 55%, rgba(87, 199, 135, 0) 90%);
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-lines-wide {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 48px;
}

.hero h1 {
  font-size: 38px;
}

.hero-copy .sub {
  font-size: 17px;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.hero-note {
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
}

.hero-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  padding: 44px 0 40px;
}

.hero-phones .phone {
  width: 150px;
}

.hero-phones .hero-phone-1 {
  width: 180px;
  margin-bottom: 36px;
  order: 2;
}

.hero-phones .hero-phone-2 {
  order: 1;
}

.hero-phones .hero-phone-3 {
  display: none;
}

/* ------------------------------------------------------------ features --- */

.feature {
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* padding-block, not the shorthand: .feature shares its element with
     .container, whose horizontal gutter must survive. */
  padding-block: 48px 40px;
}

.feature h2 {
  font-size: 30px;
}

.feature-shot {
  display: flex;
  justify-content: center;
  padding-top: 12px;
}

.feature-shot .phone {
  width: 200px;
}

/* ------------------------------------------------------------- promise --- */

.promise {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 64px 0 56px;
}

.promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 300px 200px at 50% 0%, rgba(87, 199, 135, 0.16), rgba(87, 199, 135, 0) 100%);
  pointer-events: none;
}

.promise .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.promise h2 {
  font-size: 36px;
}

/* ----------------------------------------------------------- plus card --- */

.plus-teaser {
  padding: 0 0 48px;
}

.plus-teaser-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 24px;
}

.plus-teaser-card h2 {
  font-size: 26px;
}

.plus-teaser-terms {
  font-size: 14px;
  color: var(--ink-2);
}

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

.site-footer {
  border-top: 1px solid var(--hairline);
  margin-top: auto;
  padding: 32px 0 40px;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-note {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 760px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-copy {
  font-size: 12px;
  color: var(--ink-3);
}

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

.page-head {
  position: relative;
  overflow: hidden;
  padding: 48px 0 40px;
}

.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 320px 260px at 25% 0%, rgba(87, 199, 135, 0.14), rgba(87, 199, 135, 0) 100%);
  pointer-events: none;
}

.page-head .container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-head h1 {
  font-size: 38px;
}

.page-head .sub {
  max-width: 640px;
}

/* ----------------------------------------------------------------- plus -- */

.plus-head .container {
  display: grid;
  gap: 32px;
  align-items: start;
}

.plus-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 12px;
}

.plus-point {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: var(--ink);
}

.plus-point svg {
  flex: none;
}

.plan {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--mint-dim);
  border: 1px solid var(--mint-line);
  border-radius: var(--radius);
  padding: 24px;
}

.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.plan-figure {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 30px;
}

.plan-terms {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
}

.plan-note {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-3);
}

.plan .badge {
  justify-content: center;
  margin-top: 6px;
}

.section {
  padding: 48px 0;
}

.section .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.holds {
  display: grid;
  gap: 32px;
  padding-top: 8px;
}

.holds-column {
  display: flex;
  flex-direction: column;
}

.holds-column .label {
  padding-bottom: 14px;
}

.cell {
  padding: 14px 0;
  border-top: 1px solid var(--hairline);
  font-size: 16px;
  line-height: 1.4;
}

.cell-last {
  border-bottom: 1px solid var(--hairline);
}

.cell-ink2 {
  color: var(--ink-2);
}

.cards {
  display: grid;
  gap: 20px;
  padding-top: 8px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 24px;
}

.card h3 {
  font-size: 22px;
}

/* -------------------------------------------------------------- support -- */

.faq {
  display: flex;
  flex-direction: column;
  padding-bottom: 48px;
}

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

.faq details:last-of-type {
  border-bottom: 1px solid var(--hairline);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}

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

.faq summary h2 {
  font-size: 20px;
  line-height: 1.2;
}

.faq summary svg {
  flex: none;
  transition: transform 150ms ease;
}

.faq details[open] summary svg {
  transform: rotate(180deg);
}

.faq p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 760px;
  padding: 0 0 22px;
}

/* -------------------------------------------------------------- privacy -- */

.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0 64px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.doc h1 {
  font-size: 34px;
}

.doc h2 {
  font-size: 24px;
  line-height: 1.2;
  padding-top: 16px;
}

.doc p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}

.doc-updated {
  font-style: italic;
  color: var(--ink-3);
}

.doc strong {
  color: var(--ink);
  font-weight: 600;
}

.doc ul {
  margin: 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.doc li {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* ---------------------------------------------------------------- press -- */

.facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fact-list {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.fact {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--hairline);
  font-size: 15px;
  line-height: 1.4;
}

.fact:last-of-type {
  border-bottom: 1px solid var(--hairline);
}

.fact dt {
  color: var(--ink-3);
  margin: 0;
}

.fact dd {
  margin: 0;
}

.boilerplate {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.press-columns {
  display: grid;
  gap: 40px;
  align-items: start;
}

.asset-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.icon-tile {
  width: 160px;
  height: 160px;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid var(--hairline);
}

.icon-tile svg {
  display: block;
  width: 100%;
  height: 100%;
}

.asset-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.press-shots {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.press-shots .phone {
  width: 120px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.62);
}

.palette {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
}

.swatch {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-2);
}

.swatch span[aria-hidden="true"] {
  display: block;
  height: 56px;
  border-radius: 10px;
  border: 1px solid var(--hairline);
}

.swatch-bg span[aria-hidden="true"] {
  background: var(--bg);
}

.swatch-surface span[aria-hidden="true"] {
  background: var(--surface);
}

.swatch-mint span[aria-hidden="true"] {
  background: var(--mint);
}

.swatch-amber span[aria-hidden="true"] {
  background: var(--amber);
}

.swatch-ink span[aria-hidden="true"] {
  background: var(--ink);
}

.swatch-ink2 span[aria-hidden="true"] {
  background: var(--ink-2);
}

/* ------------------------------------------------------------------ 404 -- */

.notfound {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 64px 0 80px;
}

.notfound::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 360px at 50% 0%, rgba(87, 199, 135, 0.14), rgba(87, 199, 135, 0) 100%);
  pointer-events: none;
}

.notfound .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.notfound h1 {
  font-size: 44px;
}

.notfound .sub {
  max-width: 480px;
}

.notfound-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

/* ---------------------------------------------------- 720px and wider --- */

@media (min-width: 720px) {
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .nav {
    height: 88px;
  }

  .brand svg {
    width: 30px;
    height: 30px;
  }

  .brand-name {
    font-size: 24px;
  }

  .nav-text {
    display: inline-flex;
  }

  .eyebrow {
    font-size: 13px;
  }

  .sub {
    font-size: 17px;
    line-height: 1.35;
  }

  .detail {
    font-size: 16px;
  }

  .chip {
    padding: 5px 11px;
    font-size: 13px;
  }

  .hero-copy {
    padding-top: 72px;
    gap: 20px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy .sub {
    font-size: 19px;
    max-width: 520px;
  }

  .hero-badge {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }

  .hero-note {
    text-align: left;
  }

  .hero-phones {
    gap: 20px;
    padding: 56px 0 48px;
  }

  .hero-phones .phone {
    width: 190px;
  }

  .hero-phones .hero-phone-1 {
    width: 220px;
    margin-bottom: 44px;
  }

  .feature {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    align-items: center;
    padding-block: 64px;
  }

  .feature-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 480px;
  }

  .feature h2 {
    font-size: 38px;
  }

  .feature-shot {
    padding-top: 0;
  }

  .feature-shot .phone {
    width: 210px;
  }

  /* Alternating sides: the even rows put the phone first. */
  .feature-flip .feature-shot {
    order: -1;
  }

  .promise {
    padding: 100px 0 88px;
  }

  .promise h2 {
    font-size: 44px;
  }

  .promise .sub {
    max-width: 620px;
  }

  .promise .container {
    gap: 22px;
  }

  .plus-teaser {
    padding-bottom: 80px;
  }

  .plus-teaser-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    align-items: center;
    padding: 40px 48px;
  }

  .plus-teaser-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .plus-teaser-card h2 {
    font-size: 32px;
  }

  .plus-teaser-plan {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-self: end;
  }

  .plus-teaser-terms {
    font-size: 15px;
  }

  .site-footer {
    padding: 40px 0 48px;
  }

  .site-footer .container {
    gap: 20px;
  }

  .footer-note {
    font-size: 14px;
  }

  .footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .footer-links {
    flex-direction: row;
    gap: 24px;
  }

  .footer-copy {
    font-size: 13px;
  }

  .page-head {
    padding: 88px 0 56px;
  }

  .page-head h1 {
    font-size: 46px;
  }

  .page-head .container {
    gap: 20px;
  }

  .plus-head .container {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 56px;
  }

  .plus-point {
    font-size: 17px;
  }

  .plan {
    padding: 28px;
  }

  .plan-figure {
    font-size: 36px;
  }

  .section {
    padding: 72px 0;
  }

  .section-split .container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    align-items: start;
  }

  .section-split .section-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .section h2 {
    font-size: 38px;
  }

  .holds {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    padding-top: 0;
  }

  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .card h3 {
    font-size: 24px;
  }

  .card .sub {
    font-size: 16px;
  }

  .faq summary h2 {
    font-size: 24px;
  }

  .faq summary {
    padding: 26px 0;
  }

  .faq p {
    font-size: 17px;
    padding-bottom: 26px;
  }

  .doc {
    padding: 64px 0 88px;
  }

  .doc h1 {
    font-size: 44px;
  }

  .doc h2 {
    font-size: 28px;
  }

  .doc p,
  .doc li {
    font-size: 17px;
  }

  .press-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
  }

  .press-assets {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .fact {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .press-shots .phone {
    width: 150px;
  }

  .palette {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .notfound h1 {
    font-size: 56px;
  }
}

/* --------------------------------------------------- 1080px and wider --- */

@media (min-width: 1080px) {
  .hero {
    min-height: 860px;
  }

  .hero::before {
    background:
      radial-gradient(ellipse 380px 340px at 10% 14%, rgba(87, 199, 135, 0.22), rgba(87, 199, 135, 0.08) 50%, rgba(87, 199, 135, 0) 100%),
      radial-gradient(ellipse 620px 360px at 66% 12%, rgba(87, 199, 135, 0.14), rgba(87, 199, 135, 0.05) 50%, rgba(87, 199, 135, 0) 100%),
      linear-gradient(180deg, rgba(87, 199, 135, 0) 15%, rgba(87, 199, 135, 0.09) 33%, rgba(87, 199, 135, 0) 79%);
  }

  .hero-lines-mobile {
    display: none;
  }

  .hero-lines-wide {
    display: block;
  }

  .hero .container {
    position: relative;
    min-height: 860px;
  }

  .hero-copy {
    max-width: 620px;
    padding-top: 120px;
    gap: 22px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-copy .sub {
    font-size: 21px;
  }

  .hero-badge {
    margin-top: 10px;
  }

  .hero-phones {
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: 0;
    bottom: 0;
    display: block;
    padding: 0;
    pointer-events: none;
  }

  .hero-phones .phone {
    position: absolute;
    width: 19%;
    margin: 0;
    border-radius: 28px;
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.62);
    pointer-events: auto;
  }

  .hero-phones .hero-phone-1 {
    left: 50%;
    bottom: 6%;
    margin-bottom: 0;
  }

  .hero-phones .hero-phone-2 {
    left: 66%;
    bottom: 12%;
  }

  .hero-phones .hero-phone-3 {
    display: block;
    left: 82%;
    bottom: 16%;
  }

  .feature {
    gap: 80px;
  }

  .feature h2 {
    font-size: 44px;
  }

  .feature-copy .sub {
    font-size: 19px;
  }

  .promise h2 {
    font-size: 56px;
  }

  .promise .sub {
    font-size: 19px;
  }

  .page-head h1 {
    font-size: 56px;
  }

  .page-head .sub {
    font-size: 19px;
  }

  .plus-head .container {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 96px;
    padding-top: 8px;
  }

  .plus-head h1 {
    font-size: 64px;
  }

  .plus-head .sub {
    font-size: 22px;
  }

  .section-split .container {
    gap: 96px;
  }

  .section h2 {
    font-size: 44px;
  }

  .section .sub {
    font-size: 19px;
  }

  .doc h1 {
    font-size: 52px;
  }

  .doc h2 {
    font-size: 30px;
  }

  .press-columns {
    gap: 96px;
  }

  /* Five thumbnails across the 764px assets column: 5 x 136 + 4 x 16. */
  .press-shots .phone {
    width: 136px;
  }

  .notfound h1 {
    font-size: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq summary svg {
    transition: none;
  }
}

/* Type-role classes on a heading element win over the element-scoped heading
   sizes set at each breakpoint above (e.g. `.section h2`), whichever
   breakpoint set them: same specificity, later in the sheet. */
h1.label,
h2.label,
h3.label,
h1.eyebrow,
h2.eyebrow,
h3.eyebrow {
  font-size: 12px;
  line-height: 1.4;
}

@media (min-width: 720px) {
  h1.eyebrow,
  h2.eyebrow,
  h3.eyebrow {
    font-size: 13px;
  }
}
