/* ═══════════════════════════════════════════════════════════════════════
 *  rozur.xyz
 *
 *  The tokens below are copied verbatim from the extension's
 *  src/styles/rozur-tokens.css. Someone who reads the site and then
 *  installs RoZur should not feel they have changed product, so the two
 *  share one palette, one font stack and one set of radii.
 *
 *  The four rules from that file hold here too:
 *    1. No gradients. Depth is surface steps and borders.
 *    2. Colour means something. Green = money, amber = Pro, blue = the
 *       one primary action on the page.
 *    3. One accent.
 *    4. Four radii, four shadows, one font.
 * ═══════════════════════════════════════════════════════════════════════ */

:root {
  --rz-bg:            #191b1d;
  --rz-surface:       #232527;
  --rz-surface-2:     #2d2f31;
  --rz-surface-3:     #393b3d;

  --rz-border-soft:   #232527;
  --rz-border:        #2f3134;
  --rz-border-strong: #4b4e50;

  --rz-text:          #ffffff;
  --rz-text-muted:    #bdbebe;
  --rz-text-dim:      #8b8e91;
  --rz-text-faint:    #6b6e70;

  --rz-accent:        #0079d2;
  --rz-accent-hover:  #0089ea;
  --rz-accent-fg:     #ffffff;

  --rz-green:         #00b06f;
  --rz-red:           #ff5b5b;
  --rz-amber:         #ffb020;
  --rz-blue:          #00a2ff;

  --rz-green-wash:    rgba(0, 176, 111, 0.10);
  --rz-green-edge:    rgba(0, 176, 111, 0.30);
  --rz-amber-wash:    rgba(255, 176, 32, 0.10);
  --rz-amber-edge:    rgba(255, 176, 32, 0.30);
  --rz-blue-wash:     rgba(0, 162, 255, 0.12);
  --rz-blue-edge:     rgba(0, 162, 255, 0.34);
  --rz-white-wash:    rgba(255, 255, 255, 0.06);
  --rz-white-edge:    rgba(255, 255, 255, 0.14);

  --rz-tier-free:     #6b7178;
  --rz-tier-plus:     #00a2ff;
  --rz-tier-pro:      #ffb020;

  --rz-font: "Source Sans 3", "Source Sans Pro", -apple-system,
             BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  --rz-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
             "Liberation Mono", monospace;

  --rz-r-sm:   6px;
  --rz-r:      8px;
  --rz-r-lg:   12px;
  --rz-r-pill: 999px;

  --rz-sh-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --rz-sh:    0 2px 8px rgba(0, 0, 0, 0.45);
  --rz-sh-lg: 0 8px 28px rgba(0, 0, 0, 0.55);

  --rz-fast: 120ms;
  --rz-med:  180ms;
  --rz-ease: cubic-bezier(0.4, 0, 0.2, 1);

  --wrap: 1080px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--rz-bg);
  color: var(--rz-text-muted);
  font-family: var(--rz-font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--rz-text);
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a { color: var(--rz-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--rz-blue);
  outline-offset: 2px;
  border-radius: var(--rz-r-sm);
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--rz-accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--rz-r);
  z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

/* ── Navigation ──────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(25, 27, 29, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rz-border);
}
.nav-in {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--rz-text);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.nav-brand:hover { text-decoration: none; }
.nav-brand img { width: 26px; height: 26px; display: block; }

.nav-ver {
  font-size: 11px;
  font-weight: 600;
  color: var(--rz-text-dim);
  background: var(--rz-white-wash);
  border: 1px solid var(--rz-white-edge);
  border-radius: var(--rz-r-pill);
  padding: 2px 8px;
  letter-spacing: 0;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  color: var(--rz-text-dim);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--rz-fast) var(--rz-ease);
}
.nav-links a:hover { color: var(--rz-text); text-decoration: none; }

.nav-lang {
  display: flex;
  align-items: center;
  gap: 1px;
  background: var(--rz-surface-2);
  border: 1px solid var(--rz-border);
  border-radius: var(--rz-r-sm);
  padding: 2px;
}
.nav-lang a {
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--rz-text-faint);
}
.nav-lang a:hover { color: var(--rz-text); text-decoration: none; }
.nav-lang a[aria-current="true"] {
  background: var(--rz-surface-4, #45484a);
  color: var(--rz-text);
}

@media (max-width: 800px) {
  .nav-links a.hide-sm { display: none; }
}

/* ── Buttons ─────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--rz-r);
  border: 1px solid var(--rz-border-strong);
  background: var(--rz-surface-2);
  color: var(--rz-text);
  cursor: pointer;
  transition: background var(--rz-fast) var(--rz-ease),
              border-color var(--rz-fast) var(--rz-ease);
}
.btn:hover { background: var(--rz-surface-3); text-decoration: none; }

.btn--primary {
  background: var(--rz-accent);
  border-color: var(--rz-accent);
  color: var(--rz-accent-fg);
}
.btn--primary:hover {
  background: var(--rz-accent-hover);
  border-color: var(--rz-accent-hover);
}

.btn--pro {
  background: transparent;
  border-color: var(--rz-amber-edge);
  color: var(--rz-amber);
}
.btn--pro:hover { background: var(--rz-amber-wash); }

.btn--lg { font-size: 15.5px; padding: 13px 26px; }
.btn--block { width: 100%; }

/* ── Hero ─────────────────────────────────────────────────────────────
   Two columns, and the right one carries a real panel from the product.
   A page about numbers that shows none of them asks the reader to take the
   claim on faith; the panel answers "what does it actually look like"
   before anyone has finished the first sentence. */

.hero {
  padding: 76px 0 68px;
  border-bottom: 1px solid var(--rz-border);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: 56px;
  align-items: center;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 58px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  max-width: 14ch;
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 17.5px;
  max-width: 48ch;
  color: var(--rz-text-muted);
  margin: 0 0 28px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-note {
  margin: 18px 0 0;
  font-size: 13.5px;
  color: var(--rz-text-faint);
}

/* ── The panel ────────────────────────────────────────────────────────
   Built from markup rather than a screenshot: it stays sharp at any
   density, weighs nothing, and the numbers can be corrected in a text
   editor instead of by retaking a capture. */

.panel {
  background: var(--rz-surface);
  border: 1px solid var(--rz-border);
  border-radius: var(--rz-r-lg);
  box-shadow: var(--rz-sh-lg);
  overflow: hidden;
}
.panel-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--rz-border);
  background: var(--rz-surface-2);
}
.panel-title { font-size: 13px; font-weight: 700; color: var(--rz-text); }
.panel-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--rz-green);
}
.panel-live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rz-green);
  animation: pulse 2.4s var(--rz-ease) infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@media (prefers-reduced-motion: reduce) {
  .panel-live::before { animation: none; }
}

.panel-head, .panel-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px 64px 52px;
  gap: 10px;
  align-items: center;
  padding: 10px 16px;
  font-size: 12.5px;
}
.panel-head {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rz-text-faint);
  border-bottom: 1px solid var(--rz-border-soft);
}
.panel-row + .panel-row { border-top: 1px solid var(--rz-border-soft); }
.panel-row:hover { background: var(--rz-surface-2); }

.panel-item { display: flex; align-items: center; gap: 10px; min-width: 0; }
.panel-swatch {
  width: 26px; height: 26px;
  flex: 0 0 26px;
  border-radius: var(--rz-r-sm);
  background: var(--rz-surface-3);
  border: 1px solid var(--rz-border);
}
.panel-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--rz-text);
  font-weight: 600;
}
.panel-abbr {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--rz-text-faint);
}
.panel-num {
  font-variant-numeric: tabular-nums;
  text-align: right;
  color: var(--rz-text-muted);
}
.panel-num.is-value { color: var(--rz-text); font-weight: 700; }
.panel-delta {
  font-variant-numeric: tabular-nums;
  text-align: right;
  font-weight: 700;
  font-size: 12px;
}
.panel-delta.up { color: var(--rz-green); }
.panel-delta.down { color: var(--rz-red); }

.panel-foot {
  padding: 10px 16px;
  border-top: 1px solid var(--rz-border);
  font-size: 11.5px;
  color: var(--rz-text-faint);
  background: var(--rz-surface-2);
}

@media (max-width: 460px) {
  .panel-head, .panel-row { grid-template-columns: minmax(0, 1fr) 58px 46px; }
  .panel-hide-sm { display: none; }
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--rz-green);
  background: var(--rz-green-wash);
  border: 1px solid var(--rz-green-edge);
  border-radius: var(--rz-r-pill);
  padding: 4px 12px;
  margin-bottom: 22px;
}
.tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rz-green);
}

/* ── Stat strip ──────────────────────────────────────────────────── */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--rz-border);
  border-block: 1px solid var(--rz-border);
}
.stat {
  background: var(--rz-bg);
  padding: 26px 24px;
  text-align: center;
}
.stat-n {
  display: block;
  font-size: 27px;
  font-weight: 800;
  color: var(--rz-text);
  letter-spacing: -0.03em;
}
.stat-l {
  display: block;
  font-size: 12.5px;
  color: var(--rz-text-dim);
  margin-top: 3px;
}

/* ── Sections ────────────────────────────────────────────────────── */

.sec { padding: 76px 0; }
.sec + .sec { border-top: 1px solid var(--rz-border); }

.sec-head { max-width: 62ch; margin-bottom: 40px; }
.sec-head h2 {
  font-size: clamp(26px, 3.6vw, 34px);
  margin-bottom: 12px;
}
.sec-head p { margin: 0; font-size: 16.5px; }

.eyebrow {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--rz-text-faint);
  margin-bottom: 12px;
}

/* ── Feature grid ─────────────────────────────────────────────────────
   Twelve identical boxes in a row is what a generator produces. Three
   sizes, with the two things people actually install for taking the space
   they deserve, is what someone deciding produces. */

.grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.card--wide { grid-column: span 3; }
.card--half { grid-column: span 2; }
.card--third { grid-column: span 2; }

@media (max-width: 940px) {
  .grid { grid-template-columns: repeat(4, 1fr); }
  .card--wide { grid-column: span 4; }
  .card--half, .card--third { grid-column: span 2; }
}
@media (max-width: 620px) {
  .grid { grid-template-columns: 1fr; }
  .card--wide, .card--half, .card--third { grid-column: span 1; }
}

/* The two headline cards carry a figure, because the feature is a number. */
.card-figure {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--rz-border-soft);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.card-figure b {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--rz-text);
  font-variant-numeric: tabular-nums;
}
.card-figure span { font-size: 12.5px; color: var(--rz-text-faint); }

.card {
  background: var(--rz-surface);
  border: 1px solid var(--rz-border);
  border-radius: var(--rz-r-lg);
  padding: 22px;
  transition: border-color var(--rz-med) var(--rz-ease);
}
.card:hover { border-color: var(--rz-border-strong); }
.card h3 { font-size: 16.5px; margin-bottom: 8px; }
.card p { margin: 0; font-size: 14.5px; color: var(--rz-text-dim); }

.card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.card-ico {
  width: 32px; height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: var(--rz-r-sm);
  background: var(--rz-surface-2);
  border: 1px solid var(--rz-border);
  color: var(--rz-text-dim);
}
.card-ico svg { width: 17px; height: 17px; }

/* Tier chips. Free is grey, Plus blue, Pro amber — same three steps the
   extension uses, so the mapping is learned once. */
.chip {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2.5px 8px;
  border-radius: var(--rz-r-pill);
  border: 1px solid;
  margin-left: auto;
  white-space: nowrap;
}
.chip--free { color: var(--rz-tier-free); border-color: var(--rz-white-edge); background: var(--rz-white-wash); }
.chip--plus { color: var(--rz-tier-plus); border-color: var(--rz-blue-edge);  background: var(--rz-blue-wash); }
.chip--pro  { color: var(--rz-tier-pro);  border-color: var(--rz-amber-edge); background: var(--rz-amber-wash); }

/* ── Pricing ─────────────────────────────────────────────────────── */

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: start;
}

.plan {
  background: var(--rz-surface);
  border: 1px solid var(--rz-border);
  border-radius: var(--rz-r-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan--featured { border-color: var(--rz-blue-edge); }

.plan-flag {
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rz-accent-fg);
  background: var(--rz-accent);
  border-radius: var(--rz-r-pill);
  padding: 3px 11px;
}

.plan-name { font-size: 15px; font-weight: 700; color: var(--rz-text); }
.plan-price { margin: 12px 0 4px; }
.plan-amt {
  font-size: 38px;
  font-weight: 800;
  color: var(--rz-text);
  letter-spacing: -0.03em;
}
.plan-per { font-size: 15px; color: var(--rz-text-dim); }
.plan-sub { font-size: 13.5px; color: var(--rz-text-dim); margin-bottom: 20px; }

.plan-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 9px;
  flex: 1;
}
.plan-feats li {
  position: relative;
  padding-left: 23px;
  font-size: 14.5px;
  color: var(--rz-text-muted);
}
.plan-feats li::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 8px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--rz-green);
  border-bottom: 2px solid var(--rz-green);
  transform: rotate(42deg);
}
.plan-feats b { color: var(--rz-text); font-weight: 600; }

.plan-note {
  margin: 26px 0 0;
  font-size: 13px;
  color: var(--rz-text-faint);
  text-align: center;
}

/* ── Callout ─────────────────────────────────────────────────────── */

.callout {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  background: var(--rz-surface);
  border: 1px solid var(--rz-border);
  border-radius: var(--rz-r-lg);
  padding: 24px;
}
.callout-body { flex: 1 1 300px; }
.callout h3 { font-size: 17px; margin-bottom: 5px; }
.callout p { margin: 0; font-size: 14.5px; color: var(--rz-text-dim); }
.callout-ico {
  width: 42px; height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: var(--rz-r);
  background: var(--rz-blue-wash);
  border: 1px solid var(--rz-blue-edge);
  color: var(--rz-blue);
}
.callout-ico svg { width: 22px; height: 22px; }

/* ── FAQ ─────────────────────────────────────────────────────────── */

.faq { display: grid; gap: 10px; max-width: 78ch; }
.faq details {
  background: var(--rz-surface);
  border: 1px solid var(--rz-border);
  border-radius: var(--rz-r);
  padding: 15px 18px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--rz-text);
  font-size: 15px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: '';
  width: 6px; height: 6px;
  flex: 0 0 6px;
  border-right: 1.8px solid var(--rz-text-dim);
  border-bottom: 1.8px solid var(--rz-text-dim);
  transform: rotate(-45deg);
  transition: transform var(--rz-med) var(--rz-ease);
}
.faq details[open] summary::before { transform: rotate(45deg); }
.faq p { margin: 12px 0 0 16px; font-size: 14.5px; color: var(--rz-text-dim); }

/* ── Prose (privacy, support, changelog) ─────────────────────────── */

.prose { max-width: 74ch; padding: 60px 0 76px; }
.prose h1 { font-size: clamp(30px, 5vw, 40px); margin-bottom: 10px; }
.prose h2 {
  font-size: 21px;
  margin: 40px 0 12px;
  padding-top: 22px;
  border-top: 1px solid var(--rz-border);
}
.prose h3 { font-size: 16.5px; margin: 26px 0 8px; }
.prose p, .prose li { font-size: 15.5px; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 7px; }
.prose code {
  font-family: var(--rz-mono);
  font-size: 13.5px;
  background: var(--rz-surface-2);
  border: 1px solid var(--rz-border);
  border-radius: var(--rz-r-sm);
  padding: 1px 6px;
}
.prose-meta {
  font-size: 13.5px;
  color: var(--rz-text-faint);
  margin-bottom: 34px;
}

.note {
  background: var(--rz-surface);
  border: 1px solid var(--rz-border);
  border-left: 3px solid var(--rz-blue);
  border-radius: var(--rz-r);
  padding: 15px 18px;
  margin: 22px 0;
}
.note p { margin: 0; font-size: 14.5px; }
.note--warn { border-left-color: var(--rz-amber); }

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14.5px;
}
.table th, .table td {
  text-align: left;
  padding: 11px 14px;
  border-bottom: 1px solid var(--rz-border);
}
.table th {
  color: var(--rz-text);
  font-weight: 600;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.table td { color: var(--rz-text-dim); }

/* ── Changelog ───────────────────────────────────────────────────── */

.release { padding: 24px 0; border-top: 1px solid var(--rz-border); }
.release-top {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.release-v { font-size: 19px; font-weight: 700; color: var(--rz-text); }
.release-d { font-size: 13px; color: var(--rz-text-faint); }
.release ul { margin: 0; padding-left: 20px; }
.release li { font-size: 15px; margin-bottom: 6px; }

.pill {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2.5px 8px;
  border-radius: var(--rz-r-pill);
  border: 1px solid var(--rz-white-edge);
  background: var(--rz-white-wash);
  color: var(--rz-text-dim);
}
.pill--new { color: var(--rz-green); border-color: var(--rz-green-edge); background: var(--rz-green-wash); }

/* ── Footer ──────────────────────────────────────────────────────── */

.foot {
  border-top: 1px solid var(--rz-border);
  padding: 44px 0 52px;
}
.foot-in {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}
.foot-links {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.foot-links a { color: var(--rz-text-dim); font-size: 14px; }
.foot-links a:hover { color: var(--rz-text); text-decoration: none; }
.foot-legal {
  margin: 28px 0 0;
  font-size: 13px;
  color: var(--rz-text-faint);
  max-width: 70ch;
}

/* ── Scroll reveal ───────────────────────────────────────────────────
   Content is visible by default. anim.js adds .rz-pre to hide it and then
   .rz-in to bring it back, so if the script never runs the page is simply
   static rather than empty. */

.rz-pre {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms var(--rz-ease), transform 420ms var(--rz-ease);
}
.rz-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .rz-pre { opacity: 1; transform: none; }
}

/* ── Centred hero for 404 ────────────────────────────────────────── */

.mid {
  min-height: 62vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 0;
}
.mid h1 { font-size: clamp(34px, 6vw, 52px); margin-bottom: 12px; }
.mid p { margin: 0 0 26px; font-size: 16.5px; }
