/* ============================================================
   PlayArc Website — Design System (light theme)

   Token-Werte gespiegelt aus der bestehenden App-UI-Spec, damit
   App und Website konsistent wirken:
   - Akzent Orange #FF5722 / #FF7849
   - Creme-Hintergrund #FAFAF7
   - Fraunces (headlines), DM Sans (body), JetBrains Mono (code)
   ============================================================ */

/* Webfonts werden self-hosted ausgeliefert (DSGVO: kein Drittlandstransfer
   USA, kein Cookie-Banner-Erfordernis nach TTDSG). Subset: latin only —
   reicht für deutsche Texte inkl. Umlauten + alle westeuropäischen
   Sprachen. Quelle: google-webfonts-helper (gwfh.mranftl.com) am 2026-05-29.
   Bei späterem Wechsel auf neuere Font-Version: einfach die Versionsstrings
   in den URLs unten anpassen. */

/* DM Sans — Body-Schrift, 5 Gewichte (300 Light / 400 Regular / 500 / 600 / 700) */
@font-face {
  font-family: "DM Sans";
  src: url("./assets/fonts/dm-sans-v17-latin-300.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("./assets/fonts/dm-sans-v17-latin-regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("./assets/fonts/dm-sans-v17-latin-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("./assets/fonts/dm-sans-v17-latin-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("./assets/fonts/dm-sans-v17-latin-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* Fraunces — Headlines / Display, regular + 500 + 600, plus eine echte Italic
   (Fraunces' Italic-Cut hat einen ganz eigenen Charakter; wir nutzen ihn für
   den Accent im Hero-Titel "Ableton-Setlist"). */
@font-face {
  font-family: "Fraunces";
  src: url("./assets/fonts/fraunces-v38-latin-regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("./assets/fonts/fraunces-v38-latin-italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("./assets/fonts/fraunces-v38-latin-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("./assets/fonts/fraunces-v38-latin-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}

/* JetBrains Mono — Code-/Mono-Schrift für technische Werte (Versionsnummern,
   Tier-Pills, Geräte-IDs im Kundenportal). */
@font-face {
  font-family: "JetBrains Mono";
  src: url("./assets/fonts/jetbrains-mono-v24-latin-regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("./assets/fonts/jetbrains-mono-v24-latin-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("./assets/fonts/jetbrains-mono-v24-latin-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}

:root {
  --bg:         #FAFAF7;
  --fg:         #1A1A1D;
  --muted:      #6B6B72;
  --dim:        #9C9CA3;
  --border:     #E2E2E6;
  --border-sub: #EBEBEE;
  --card:       #FFFFFF;
  --accent:     #FF5722;
  --accent-warm:#FF7849;
  --accent-soft:rgba(255, 87, 34, 0.10);
  --accent-line:rgba(255, 87, 34, 0.45);

  --font-sans:  "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 10px 32px rgba(20, 20, 24, 0.06);
  --shadow-hi:  0 24px 64px rgba(20, 20, 24, 0.10);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-sub);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: inline-flex; align-items: baseline; gap: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -1px;
  color: var(--fg);
}
.brand .brand-arc { color: var(--accent); }
.nav-links {
  display: flex; gap: 28px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--fg);
  font-weight: 500;
  font-size: 14px;
}
.nav-links a:hover { color: var(--accent); text-decoration: none; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease, transform 80ms ease;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
}
.btn-primary:hover {
  background: #E54B1E;
  color: #FFFFFF;
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}
.btn-lg { padding: 14px 24px; font-size: 15px; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, var(--bg) 0%, #FFFFFF 100%);
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 0 0 20px;
}
.hero h1 .accent { color: var(--accent); font-style: italic; font-weight: 400; }
.hero-sub {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 19px;
  color: var(--muted);
  line-height: 1.55;
}
.hero-ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.hero-meta {
  margin-top: 28px;
  font-size: 13px;
  color: var(--dim);
}

/* ============================================================
   SECTIONS
   ============================================================ */

section { padding: 80px 0; }
section.alt { background: #FFFFFF; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 42px;
  letter-spacing: -1px;
  margin: 0 0 14px;
}
.section-head p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   FEATURE GRID
   ============================================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 160ms ease, transform 160ms ease;
}
.feature:hover {
  border-color: var(--accent-line);
  transform: translateY(-2px);
}
.feature h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  margin: 12px 0 8px;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.feature-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 18px;
  font-family: var(--font-serif);
  font-weight: 600;
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing-toggle {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  background: var(--card);
  margin: 0 auto 40px;
}
.pricing-toggle button {
  border: 0; background: transparent;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  cursor: pointer;
  color: var(--muted);
  transition: background 120ms ease, color 120ms ease;
}
.pricing-toggle button.is-active {
  background: var(--accent);
  color: #FFF;
}
.pricing-toggle-wrap { text-align: center; }
.pricing-discount {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.tier {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.tier:hover { box-shadow: var(--shadow); }
.tier-pro {
  border-color: var(--accent-line);
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--accent-soft) 100%);
}
.tier-pro::before {
  content: "Beliebt";
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tier-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 6px;
}
.tier-tagline {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 24px;
}
.tier-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 20px;
}
.tier-price-amount {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 48px;
  letter-spacing: -1px;
  color: var(--fg);
}
.tier-price-period {
  font-size: 14px;
  color: var(--muted);
}
.tier-features {
  list-style: none; padding: 0; margin: 0 0 28px;
  flex: 1;
}
.tier-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--fg);
}
.tier-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.tier-features li.dim {
  color: var(--dim);
}
.tier-features li.dim::before {
  content: "—";
  color: var(--dim);
}
.tier .btn { width: 100%; }

/* System-Anforderungen — unter der Pricing-Tabelle. Pflichtangabe nach
   § 312d BGB / Art. 246a EGBGB bei digitalem Inhalt. Schlicht, gut lesbar,
   nicht versteckt. */
.sys-req {
  margin: 56px auto 0;
  max-width: 720px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.sys-req h3 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin: 0 0 16px;
}
.sys-req ul {
  list-style: none; padding: 0; margin: 0 0 16px;
}
.sys-req li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--fg);
  line-height: 1.45;
}
.sys-req li::before {
  content: "→";
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}
.sys-req-note {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--border-sub);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  border-top: 1px solid var(--border);
  padding: 18px 4px;
}
.faq details:last-child { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  font-size: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  margin-left: 16px;
  transition: transform 200ms ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border-sub);
  padding: 56px 0 32px;
  font-size: 14px;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-grid h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg);
  margin: 0 0 14px;
}
.footer-grid ul {
  list-style: none; padding: 0; margin: 0;
}
.footer-grid li { margin-bottom: 8px; }
.footer-grid a {
  color: var(--muted);
}
.footer-grid a:hover { color: var(--accent); text-decoration: none; }
.footer-tagline {
  max-width: 320px;
  color: var(--muted);
  line-height: 1.55;
}
.footer-bottom {
  border-top: 1px solid var(--border-sub);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px;
  color: var(--dim);
}

/* ============================================================
   LEGAL / SIMPLE PROSE PAGES
   ============================================================ */

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  line-height: 1.7;
}
.prose h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 36px;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}
.prose h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  margin: 40px 0 10px;
}
.prose h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin: 28px 0 6px;
}
.prose p { margin: 0 0 14px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 14px; }
.prose .meta {
  display: inline-block;
  font-size: 12px;
  color: var(--dim);
  border-left: 3px solid var(--accent);
  padding-left: 10px;
  margin-bottom: 28px;
}
.prose .todo {
  background: rgba(254, 188, 46, 0.12);
  border: 1px solid rgba(254, 188, 46, 0.4);
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: #997400;
  margin: 12px 0;
}
.prose .todo::before {
  content: "TODO  ";
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 11px;
  margin-right: 4px;
}

/* ============================================================
   ACCOUNT (CUSTOMER PORTAL)
   ============================================================ */

.account-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 120px;
}
.account-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.account-card h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 14px;
}
.account-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.account-field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dim);
}
.account-field input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font: inherit; font-size: 14px;
  color: inherit;
}
.account-field input:focus { outline: none; border-color: var(--accent); }
.account-tier-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
}
.account-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-sub);
  font-size: 14px;
}
.account-row:last-child { border-bottom: 0; }
.account-row-label { color: var(--muted); }
.account-row-value { font-family: var(--font-mono); font-size: 13px; }
.account-error {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255, 87, 34, 0.10);
  border: 1px solid rgba(255, 87, 34, 0.35);
  color: #C73E13;
  font-size: 13px;
}
.account-error[data-level="info"] {
  background: rgba(255, 120, 73, 0.10);
  border-color: var(--accent-line);
  color: var(--accent);
}
.account-error[hidden] { display: none; }
.account-loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.account-devices { list-style: none; padding: 0; margin: 0; }
.account-device {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-sub);
  font-size: 14px;
  align-items: center;
}
.account-device:last-child { border-bottom: 0; }
.account-device-name { font-weight: 500; }
.account-device-meta { font-family: var(--font-mono); font-size: 11px; color: var(--dim); }
.account-device .btn { padding: 6px 10px; font-size: 12px; }

/* ============================================================
   MOBILE RESPONSIVENESS
   ------------------------------------------------------------
   Bestehende breakpoints behalten (900px für pricing-grid,
   800px für footer-grid). Hier zusätzlich zwei Cascading
   Phone-Stages: 720px (tablet/large phone) + 480px (phone).
   Ziele:
   - Hero/Section-Typografie skaliert herunter (Fraunces 64→44→32)
   - Section paddings kompakter
   - Nav-Links kollabieren auf wichtige Items + CTA
   - Hero-CTAs stacken voll-breit
   - Footer-Grid kollabiert weiter auf 1 Spalte
   - Account-Devices stacken statt 3-Spalten-Grid
   ============================================================ */

@media (max-width: 720px) {
  .container { padding: 0 20px; }

  /* HEADER / NAV */
  .nav { padding: 12px 0; }
  .brand { font-size: 22px; }
  .nav-links { gap: 18px; font-size: 13px; }
  .nav-links a { font-size: 13px; }

  /* HERO */
  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 44px; line-height: 1.08; letter-spacing: -1px; }
  .hero-sub { font-size: 17px; }
  .hero-eyebrow { font-size: 11px; }

  /* SECTIONS */
  section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 32px; }
  .section-head p { font-size: 16px; }

  /* TIER cards */
  .tier { padding: 26px 22px; }
  .tier-price-amount { font-size: 42px; }

  /* PROSE legal pages */
  .prose { padding: 56px 20px 96px; }
  .prose h1 { font-size: 30px; }
  .prose h2 { font-size: 22px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* HEADER / NAV: Anker-Links verstecken, nur Logo + CTA bleiben.
     Auf so kleinen Screens scrollt der User eh — die Anker sind
     immer noch via In-Page-Klick erreichbar wenn er das CTA-Menü
     gedrückt hat (aber ohne dedizierten Burger ist diese Lösung
     ehrlicher als ein klobiges Hamburger-Icon). */
  .nav-links { gap: 8px; }
  .nav-links li:not(:last-child) { display: none; }
  .nav-links li:last-child .btn { padding: 8px 14px; font-size: 13px; }
  .brand { font-size: 20px; }

  /* HERO */
  .hero { padding: 48px 0 44px; }
  .hero h1 { font-size: 32px; line-height: 1.1; letter-spacing: -0.5px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-eyebrow { font-size: 10px; padding: 5px 11px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { width: 100%; padding: 14px 18px; }

  /* SECTIONS */
  section { padding: 48px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: 26px; letter-spacing: -0.4px; }
  .section-head p { font-size: 15px; }
  .section-eyebrow { font-size: 11px; }

  /* TIER cards */
  .tier { padding: 22px 18px; }
  .tier-name { font-size: 20px; }
  .tier-price-amount { font-size: 36px; }
  .tier-features li { font-size: 13px; }

  /* FOOTER kollabiert weiter auf 1 Spalte */
  .footer-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .footer-tagline { max-width: none; }

  /* PROSE legal pages */
  .prose { padding: 44px 16px 80px; }
  .prose h1 { font-size: 26px; }
  .prose h2 { font-size: 19px; }
  .prose h3 { font-size: 13px; }

  /* ACCOUNT (Customer Portal) */
  .account-shell { padding: 40px 16px 80px; }
  .account-card { padding: 22px 20px; }
  .account-card h2 { font-size: 19px; }
  .account-device {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }
  .account-device .btn { justify-self: start; }
}
