/* ===================================================================
   Knytr — knytr.app
   Tokens hämtade från docs/master (Knytr_masterdokument) och
   docs/design (Knytr_UI-analys_och_designplan), 14 juli 2026.
   =================================================================== */

:root {
  --bg: #FCFAF7;
  --surface: #FFFFFF;
  --text: #18231F;
  --muted: #66736D;
  --primary: #1F6F64;
  --primary-strong: #17554C;
  --primary-soft: #DDEFEA;
  --accent-warm: #C97B5A;
  --accent-warm-strong: #A85F41;
  --accent-warm-soft: #F3E3DA;
  --ink: #14201C;
  --attention: #E6A23C;
  --danger: #B7443E;
  --info: #356E9E;

  --radius-card: 18px;
  --radius-control: 12px;
  --radius-sheet: 24px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;

  --max-width: 1180px;
  --motion-fast: 170ms;
  --motion-med: 220ms;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Iowan Old Style", serif;
}

@media (prefers-reduced-motion: reduce) {
  :root { --motion-fast: 0ms; --motion-med: 0ms; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.01em; }
h1, h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.008em; }
p { margin: 0; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--motion-fast) var(--ease), background var(--motion-fast) var(--ease), box-shadow var(--motion-fast) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-strong); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(24,35,31,0.16);
}
.btn-ghost:hover { border-color: var(--text); }
.btn-lg { min-height: 52px; padding: 0 26px; font-size: 17px; }
.btn-header { display: none; }
@media (min-width: 860px) { .btn-header { display: inline-flex; } }
.btn[disabled] { opacity: 0.6; cursor: default; }

/* ---------- App-badge CTA (styled like a store badge, honestly points to TestFlight) ---------- */
.btn-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 8px 16px 8px 13px;
  text-decoration: none;
  line-height: 1.15;
  box-shadow: 0 10px 24px -12px rgba(20,32,28,0.45);
  transition: transform var(--motion-fast) var(--ease), box-shadow var(--motion-fast) var(--ease), background var(--motion-fast) var(--ease);
}
.btn-badge:hover { background: #1c2b25; box-shadow: 0 14px 30px -12px rgba(20,32,28,0.5); transform: translateY(-1px); }
.btn-badge:active { transform: translateY(0) scale(0.98); }
.badge-mark { width: 22px; height: 22px; flex-shrink: 0; }
.badge-copy { display: flex; flex-direction: column; }
.badge-copy em { font-style: normal; font-size: 10.5px; letter-spacing: 0.04em; opacity: 0.82; text-transform: uppercase; }
.badge-copy strong { font-size: 16.5px; font-weight: 600; }
.btn-badge-header { padding: 7px 14px 7px 11px; }
.btn-badge-header .badge-mark { width: 19px; height: 19px; }
.btn-badge-header .badge-copy strong { font-size: 14.5px; }
.btn-badge-lg { padding: 11px 22px 11px 17px; border-radius: 14px; }
.btn-badge-lg .badge-mark { width: 26px; height: 26px; }
.btn-badge-lg .badge-copy strong { font-size: 19px; }
.btn-badge-center { margin: 0 auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(252,250,247,0.86);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(24,35,31,0.06);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  margin-right: auto;
}
.brand-mark { display: inline-flex; }
.brand-mark img { display: block; width: 30px; height: 30px; object-fit: contain; }
.brand-word {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand-word.small { font-size: 16px; }
.site-nav {
  display: none;
  gap: 28px;
  font-size: 15px;
  color: var(--muted);
}
.site-nav a { text-decoration: none; }
.site-nav a:hover { color: var(--text); }
@media (min-width: 860px) { .site-nav { display: flex; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 24px 48px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 620px;
  z-index: 0;
  background:
    radial-gradient(38% 55% at 18% 20%, rgba(31,111,100,0.16) 0%, rgba(31,111,100,0) 70%),
    radial-gradient(30% 45% at 88% 10%, rgba(201,123,90,0.14) 0%, rgba(201,123,90,0) 72%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--space-8);
  text-align: center;
}
@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    text-align: left;
    gap: 48px;
  }
}
.eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 40px;
  line-height: 1.12;
  margin-bottom: 20px;
}
@media (min-width: 640px) { .hero h1 { font-size: 52px; } }
.hero-lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 0 var(--space-8);
}
@media (max-width: 899px) { .hero-lede { margin-inline: auto; } }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
@media (max-width: 899px) { .hero-ctas { justify-content: center; } }
.hero-micro {
  font-size: 14px;
  color: var(--muted);
}
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-media-glow {
  position: absolute;
  inset: -10% -10% 10% -10%;
  background: radial-gradient(60% 60% at 50% 30%, var(--primary-soft) 0%, rgba(221,239,234,0) 72%);
  z-index: 0;
}
.device-frame {
  position: relative;
  z-index: 1;
  width: 240px;
  border-radius: 42px;
  background: #14201C;
  padding: 10px;
  box-shadow: 0 30px 60px -24px rgba(24,35,31,0.38), 0 2px 6px rgba(24,35,31,0.08);
}
.device-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
}
.device-frame-hero { width: 268px; }
@media (min-width: 640px) { .device-frame-hero { width: 300px; } }
.device-frame-sm { width: 168px; }

.float-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(8px);
  border: 1px solid rgba(24,35,31,0.06);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 16px 32px -18px rgba(24,35,31,0.35);
  white-space: nowrap;
}
.float-chip strong { color: var(--primary-strong); }
.float-chip-icon { font-size: 16px; line-height: 1; }
.float-chip-top { top: 8%; left: -6%; }
.float-chip-bottom { bottom: 10%; right: -8%; }
@media (max-width: 899px) { .float-chip-top { left: 2%; } .float-chip-bottom { right: 0; } }
@media (max-width: 640px) { .float-chip { display: none; } }
.scroll-hint {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 48px auto 0;
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  animation: bob 2.2s ease-in-out infinite;
}
@media (min-width: 900px) { .scroll-hint { display: inline-flex; } }
@media (prefers-reduced-motion: reduce) { .scroll-hint { animation: none; } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- Showcase (real screenshots, five core views) ---------- */
.showcase { padding: 88px 0 96px; }
.section-eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-3);
  text-align: center;
}
.showcase-heading {
  font-size: 32px;
  line-height: 1.18;
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-4);
}
@media (min-width: 640px) { .showcase-heading { font-size: 38px; } }
.showcase-lede {
  color: var(--muted);
  font-size: 17px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-8);
}

.diff-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  max-width: 880px;
  margin: 0 auto var(--space-8);
}
@media (min-width: 760px) { .diff-strip { grid-template-columns: repeat(3, 1fr); } }
.diff-item {
  background: var(--primary-soft);
  border-radius: var(--radius-card);
  padding: var(--space-6);
}
.diff-title { font-weight: 700; font-size: 16px; color: var(--primary-strong); margin-bottom: 6px; }
.diff-body { font-size: 14.5px; color: var(--primary-strong); opacity: 0.85; }

.area-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: 64px;
  padding: 0;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--surface);
  border: 1px solid rgba(24,35,31,0.08);
  border-radius: 999px;
  padding: 10px 18px 10px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}
.area-icon { width: 19px; height: 19px; color: var(--primary); flex-shrink: 0; }

.showcase-rows {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.showcase-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 860px) {
  .showcase-row { grid-template-columns: 0.85fr 1fr; gap: 64px; }
  .showcase-row.is-reverse { grid-template-columns: 1fr 0.85fr; }
  .showcase-row.is-reverse .showcase-media { order: 2; }
  .showcase-row.is-reverse .showcase-copy { order: 1; }
}
.showcase-media { display: flex; justify-content: center; }
.showcase-media .device-frame { width: 232px; }
.showcase-copy { text-align: center; }
@media (min-width: 860px) { .showcase-copy { text-align: left; } }
.feature-kicker {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.showcase-copy h3 {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.showcase-copy p {
  font-size: 17px;
  color: var(--muted);
  max-width: 420px;
}
@media (max-width: 859px) { .showcase-copy p { margin-inline: auto; } }

/* ---------- Så börjar ni (onboarding) ---------- */
.onboard { padding: 8px 0 96px; }
.onboard-heading { font-size: 32px; line-height: 1.18; text-align: center; max-width: 640px; margin: 0 auto var(--space-4); }
@media (min-width: 640px) { .onboard-heading { font-size: 38px; } }
.onboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-8);
}
@media (min-width: 860px) { .onboard-grid { grid-template-columns: repeat(3, 1fr); } }
.onboard-card {
  background: var(--surface);
  border: 1px solid rgba(24,35,31,0.07);
  border-radius: var(--radius-card);
  padding: 28px 24px 30px;
  text-align: center;
}
.onboard-media { display: flex; justify-content: center; margin-bottom: 18px; }
.onboard-media .device-frame { margin: 0; box-shadow: 0 18px 36px -20px rgba(24,35,31,0.35); }
.onboard-media-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-warm-soft);
  color: var(--accent-warm-strong);
  align-items: center; justify-content: center;
}
.onboard-media-icon svg { width: 28px; height: 28px; }
.onboard-step {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.onboard-card h3 { font-size: 18px; margin-bottom: 8px; line-height: 1.25; }
.onboard-card p { color: var(--muted); font-size: 14.5px; }

/* ---------- Familjen Nolet (story) ---------- */
.story {
  background: linear-gradient(165deg, var(--ink) 0%, var(--primary-strong) 78%);
  padding: 88px 0 96px;
  color: #fff;
}
.story-inner { max-width: 760px; }
.section-eyebrow-inverse { color: #9FD9CC; }
.story-heading { color: #fff; font-size: 32px; line-height: 1.18; margin-bottom: var(--space-4); }
@media (min-width: 640px) { .story-heading { font-size: 38px; } }
.story-lede { color: rgba(255,255,255,0.78); font-size: 17px; margin-bottom: var(--space-8); max-width: 560px; }
.story-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 26px;
  border-left: 2px solid rgba(255,255,255,0.18);
}
.story-timeline li { padding-left: 24px; position: relative; }
.story-timeline li::before {
  content: "";
  position: absolute;
  left: -6.5px; top: 4px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #9FD9CC;
  box-shadow: 0 0 0 4px rgba(159,217,204,0.18);
}
.story-day {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9FD9CC;
  margin-bottom: 6px;
}
.story-timeline p { color: rgba(255,255,255,0.88); font-size: 16px; line-height: 1.55; max-width: 620px; }
.story-timeline strong { color: #fff; }

/* ---------- Vad gör Knytr annorlunda ---------- */
.compare { padding: 8px 0 96px; }
.compare-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: var(--space-8);
}
@media (min-width: 760px) { .compare-grid { grid-template-columns: repeat(2, 1fr); } }
.compare-item {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 26px 24px;
  border-top: 3px solid var(--accent-warm);
  box-shadow: 0 18px 40px -30px rgba(24,35,31,0.4);
}
.compare-item h3 { font-size: 17px; margin-bottom: 8px; }
.compare-item p { color: var(--muted); font-size: 15px; }

/* ---------- Så fungerar det ---------- */
.how { padding: 80px 0 96px; background: var(--surface); }
.how-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 860px) { .how-inner { grid-template-columns: 0.8fr 1fr; gap: 56px; } }
.how-art { display: flex; justify-content: center; }
.how-art img { width: 100%; max-width: 440px; height: auto; }
.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-8);
  grid-template-columns: 1fr;
}
.how-steps li { display: flex; gap: 16px; align-items: flex-start; }
.how-num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-weight: 700;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.how-steps h3 { font-size: 17px; margin-bottom: 6px; }
.how-steps p { color: var(--muted); font-size: 15px; }

/* ---------- Trust ---------- */
.trust { padding: 64px 0 96px; }
.trust-inner h2 { font-size: 28px; margin-bottom: 32px; text-align: center; }
.trust-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-item {
  background: var(--surface);
  border: 1px solid rgba(24,35,31,0.06);
  border-radius: var(--radius-card);
  padding: 22px;
}
.trust-item h3 { font-size: 16px; margin-bottom: 8px; }
.trust-item p { color: var(--muted); font-size: 14.5px; }
.trust-note { text-align: center; color: var(--muted); font-size: 13.5px; margin-top: 28px; }

/* ---------- Waitlist ---------- */
.waitlist {
  background: var(--primary-soft);
  padding: 88px 0;
}
.waitlist-inner { max-width: 560px; text-align: center; }
.waitlist-inner h2 { font-size: 30px; margin-bottom: 12px; }
.waitlist-lede { color: var(--primary-strong); font-size: 16px; margin-bottom: 32px; }
.waitlist-divider {
  margin: 32px 0 20px;
  font-size: 13.5px;
  color: var(--primary-strong);
  opacity: 0.75;
  position: relative;
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
}
@media (min-width: 560px) {
  .waitlist-form { flex-direction: row; align-items: flex-start; }
}
.field { flex: 1; text-align: left; width: 100%; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary-strong);
}
.field input {
  width: 100%;
  min-height: 48px;
  border-radius: var(--radius-control);
  border: 1.5px solid rgba(24,35,31,0.14);
  padding: 0 14px;
  font-size: 16px;
  font-family: var(--font);
  background: var(--surface);
  color: var(--text);
}
.field input:focus { border-color: var(--primary); }
.field input[aria-invalid="true"] { border-color: var(--danger); }
.field-error {
  color: var(--danger);
  font-size: 13px;
  margin-top: 6px;
  min-height: 16px;
}
.waitlist-form .btn { width: 100%; }
@media (min-width: 560px) { .waitlist-form .btn { width: auto; } }
.waitlist-success {
  margin-top: 20px;
  font-weight: 600;
  color: var(--primary-strong);
  background: var(--surface);
  border-radius: var(--radius-control);
  padding: 14px 18px;
}
.waitlist-privacy {
  margin-top: 24px;
  font-size: 13px;
  color: var(--primary-strong);
  opacity: 0.85;
}
.waitlist-privacy a { text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq { padding: 88px 0 110px; }
.faq-inner { max-width: 720px; }
.faq h2 { font-size: 28px; margin-bottom: 24px; }
.faq details {
  border-bottom: 1px solid rgba(24,35,31,0.08);
  padding: 16px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--primary);
  font-size: 20px;
  font-weight: 400;
  margin-left: 12px;
}
.faq details[open] summary::after { content: "–"; }
.faq p { color: var(--muted); margin-top: 10px; font-size: 15px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid rgba(24,35,31,0.08); padding: 32px 0 48px; }
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  color: var(--muted);
  font-size: 13.5px;
}
.footer-inner nav a { text-decoration: none; color: var(--muted); }
.footer-inner nav a:hover { color: var(--text); }
.footer-copy { width: 100%; margin-top: 4px; }

/* ---------- Legal / content pages ---------- */
.legal-hero { padding: 64px 24px 32px; }
.legal-hero .section-inner { max-width: 720px; }
.legal-hero h1 { font-size: 34px; line-height: 1.15; margin-bottom: 10px; }
@media (min-width: 640px) { .legal-hero h1 { font-size: 40px; } }
.legal-updated { color: var(--muted); font-size: 14px; }

.legal-content { padding: 0 0 96px; }
.legal-content .section-inner { max-width: 720px; }
.legal-content h2 { font-size: 21px; margin: 40px 0 12px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { color: var(--muted); font-size: 16px; margin-bottom: 14px; line-height: 1.6; }
.legal-content ul { margin: 0 0 14px; padding-left: 20px; color: var(--muted); font-size: 16px; line-height: 1.6; }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--text); }
.legal-content a { color: var(--primary); text-decoration: underline; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 20px;
}
.legal-back:hover { color: var(--text); }

.support-grid { display: grid; gap: 20px; grid-template-columns: 1fr; margin: 32px 0 8px; }
@media (min-width: 760px) { .support-grid { grid-template-columns: repeat(2, 1fr); } }
.support-card { background: var(--surface); border: 1px solid rgba(24,35,31,0.06); border-radius: var(--radius-card); padding: 22px; }
.support-card h3 { font-size: 16px; margin-bottom: 8px; }
.support-card p { color: var(--muted); font-size: 14.5px; margin: 0 0 10px; }
.support-card a { color: var(--primary); font-weight: 600; text-decoration: none; }
.support-card a:hover { text-decoration: underline; }

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------- Small-screen safety ---------- */
@media (max-width: 380px) {
  .device-frame-hero { width: 220px; }
  .showcase-media .device-frame { width: 190px; }
  .hero h1 { font-size: 34px; }
}
@media (max-width: 420px) {
  .btn-badge-lg { padding: 10px 16px 10px 13px; }
  .btn-badge-lg .badge-copy strong { font-size: 16.5px; }
}
