/* MyDebt Fighter — brand tokens aligned with mobile dashboard */
:root {
  --mdf-bg: #040810;
  --mdf-bg-elevated: #0c1424;
  --mdf-surface: #131f33;
  --mdf-surface-2: #1a2840;
  --mdf-ink: #ffffff;
  --mdf-muted: #b8c5d9;
  --mdf-muted-soft: #8b9bb5;
  --mdf-accent: #27e1c1;
  --mdf-accent-bright: #5eead4;
  --mdf-accent-dim: rgba(39, 225, 193, 0.18);
  --mdf-warm: #fbbf24;
  --mdf-warm-soft: rgba(251, 191, 36, 0.22);
  --mdf-success: #34d399;
  --mdf-border: rgba(255, 255, 255, 0.12);
  --mdf-border-strong: rgba(39, 225, 193, 0.35);
  --mdf-glow: 0 0 48px rgba(39, 225, 193, 0.22);
  --mdf-glow-cyan: 0 0 56px rgba(39, 225, 193, 0.28);
  --mdf-surface-goal: linear-gradient(145deg, #1a4a42 0%, #0f2a24 55%, #0a1a16 100%);
  --mdf-radius-lg: 20px;
  --mdf-radius-xl: 24px;
  --mdf-radius-2xl: 28px;
  --mdf-font: 'Inter', system-ui, -apple-system, sans-serif;
  --mdf-font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
}

/* Base overrides when brand.css is loaded */
body.mdf-site {
  font-family: var(--mdf-font);
  background: var(--mdf-bg);
  color: var(--mdf-ink);
}

.mdf-site .mesh-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 15% 10%, rgba(39, 225, 193, 0.2), transparent 55%),
    radial-gradient(ellipse 50% 35% at 88% 8%, rgba(82, 230, 255, 0.14), transparent 50%),
    radial-gradient(ellipse 40% 30% at 75% 90%, rgba(251, 191, 36, 0.1), transparent 50%),
    linear-gradient(180deg, #03060c 0%, var(--mdf-bg) 45%, #060c18 100%);
  animation: none;
  opacity: 1;
}

/* Brand lockup — app shield logo + wordmark */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-logo {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: contain;
  background: #000;
  box-shadow: 0 6px 24px rgba(39, 225, 193, 0.35), 0 0 0 1px rgba(39, 225, 193, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-lockup:hover .brand-logo {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(39, 225, 193, 0.45), 0 0 0 1px rgba(39, 225, 193, 0.4);
}

/* Brand wordmark: myDebt (cyan) + Fighter (white) */
.brand-wordmark {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}

.brand-wordmark .brand-my {
  color: var(--mdf-accent);
}

.brand-wordmark .brand-fighter {
  color: var(--mdf-ink);
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 0;
  background: transparent;
  box-shadow: 0 6px 24px rgba(39, 225, 193, 0.35), 0 0 0 1px rgba(39, 225, 193, 0.25);
}

.brand-mark img,
.brand-mark .brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-mark svg {
  display: none;
}

/* Accent text — single cyan, not rainbow gradient */
.accent-text {
  color: var(--mdf-accent);
}

.grad-text {
  background: linear-gradient(135deg, var(--mdf-accent) 0%, var(--mdf-accent-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: none;
}

/* Buttons */
.mdf-site .btn-primary {
  background: linear-gradient(135deg, var(--mdf-accent), #1ec4a8);
  color: #041218;
  font-weight: 700;
  box-shadow: 0 10px 32px rgba(39, 225, 193, 0.35);
  border-radius: 14px;
}

.mdf-site .btn-primary:hover {
  box-shadow: 0 14px 40px rgba(39, 225, 193, 0.45);
}

.mdf-site .badge {
  background: rgba(39, 225, 193, 0.12);
  color: var(--mdf-accent);
  border: 1px solid var(--mdf-border-strong);
  box-shadow: none;
  font-weight: 600;
}

.mdf-site .glass {
  background: linear-gradient(155deg, rgba(26, 40, 64, 0.92), rgba(12, 20, 36, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--mdf-radius-lg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mdf-site nav {
  background: rgba(6, 11, 20, 0.82);
  border-bottom-color: var(--mdf-border);
}

.mdf-site .scroll-progress {
  background: linear-gradient(90deg, var(--mdf-accent), var(--mdf-accent-bright));
}

/* Section rhythm — marketing site feel */
.mdf-section {
  padding: 5rem 0;
}

.mdf-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mdf-accent);
  margin-bottom: 0.75rem;
}

.mdf-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--mdf-ink);
}

.mdf-section-lead {
  color: var(--mdf-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.mdf-text-muted {
  color: var(--mdf-muted-soft);
}

.mdf-text-accent {
  color: var(--mdf-accent);
}

/* Hero — two-column landing */
.hero-landing {
  padding: 3rem 0 5rem;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-landing {
    padding: 4rem 0 6rem;
  }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-copy {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-copy {
    text-align: left;
  }
}

.hero-copy h1 {
  font-family: var(--mdf-font-display);
  font-size: clamp(1.75rem, 4.2vw, 3.125rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 1rem 0 1.25rem;
}

.hero-copy h1 .grad-text {
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.08em;
}

@media (max-width: 640px) {
  .hero-copy h1 {
    letter-spacing: 0.06em;
    font-size: clamp(1.5rem, 6.5vw, 2rem);
    line-height: 1.25;
  }
}

.hero-copy .hero-lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--mdf-muted);
  max-width: 32rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-copy .hero-lead {
    margin: 0;
  }
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  align-items: stretch;
}

@media (min-width: 640px) {
  .hero-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-cta-row {
    justify-content: flex-start;
  }
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  justify-content: center;
  font-size: 0.8125rem;
  color: var(--mdf-muted-soft);
}

@media (min-width: 1024px) {
  .hero-trust-row {
    justify-content: flex-start;
  }
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-trust-row .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mdf-accent);
  box-shadow: 0 0 8px var(--mdf-accent);
}

/* Phone / dashboard mock */
.device-showcase {
  display: flex;
  justify-content: center;
  position: relative;
}

.device-showcase::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 225, 193, 0.2), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.device-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 320px);
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(160deg, #1e3048, #0e1624);
  border: 1px solid rgba(39, 225, 193, 0.28);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(39, 225, 193, 0.2),
    0 0 64px rgba(39, 225, 193, 0.18);
}

.device-notch {
  width: 100px;
  height: 24px;
  background: #060b14;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
}

.device-screen {
  border-radius: 28px;
  overflow: hidden;
  background: #0a0f18;
  min-height: 520px;
  padding: 14px 12px 16px;
}

/* In-device dashboard UI */
.dash-ui-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 0 2px;
}

.dash-ui-header .dash-brand {
  font-size: 0.95rem;
  font-weight: 800;
}

.dash-ui-header .dash-brand .cyan {
  color: var(--mdf-accent);
}

.dash-ui-header .dash-brand .white {
  color: #fff;
}

.dash-ui-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-ui-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.dash-card {
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-card-progress {
  background: linear-gradient(165deg, #152238 0%, #0d1522 100%);
}

.dash-card-progress .label {
  font-size: 0.7rem;
  color: var(--mdf-muted);
  margin-bottom: 6px;
}

.dash-card-progress .bar-wrap {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 8px;
}

.dash-card-progress .bar-fill {
  height: 100%;
  width: 42%;
  background: linear-gradient(90deg, var(--mdf-accent), #1a9e88);
  border-radius: 99px;
  box-shadow: 0 0 12px rgba(39, 225, 193, 0.5);
}

.dash-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.dash-card-stat {
  background: linear-gradient(165deg, #121c2e 0%, #0c121c 100%);
}

.dash-card-stat .stat-label {
  font-size: 0.65rem;
  color: var(--mdf-muted);
  margin-bottom: 4px;
}

.dash-card-stat .stat-value {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.dash-card-goal {
  background: linear-gradient(145deg, #1a4a42 0%, #0f2a24 55%, #0a1a16 100%);
  border-color: rgba(39, 225, 193, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100px;
}

.dash-ring {
  width: 52px;
  height: 52px;
  position: relative;
  margin-bottom: 6px;
}

.dash-ring svg {
  transform: rotate(-90deg);
}

.dash-ring .pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
}

.dash-card-goal .goal-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.75);
}

.dash-tip {
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(17, 27, 46, 0.9);
  border-left: 3px solid var(--mdf-warm);
  font-size: 0.65rem;
  color: var(--mdf-muted);
  margin-bottom: 10px;
}

.dash-tip strong {
  color: var(--mdf-warm);
  display: block;
  font-size: 0.68rem;
  margin-bottom: 2px;
}

.dash-payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 6px;
  font-size: 0.7rem;
}

.dash-payment .left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-payment .icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--mdf-accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mdf-accent);
  font-size: 14px;
}

.dash-payment .name {
  font-weight: 600;
  color: #fff;
}

.dash-payment .due {
  color: var(--mdf-muted-soft);
  font-size: 0.6rem;
}

.dash-payment .amount {
  font-weight: 700;
  color: #fff;
}

/* Wide dashboard preview (desktop) */
.dashboard-showcase {
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--mdf-radius-2xl);
  background: linear-gradient(165deg, rgba(17, 27, 46, 0.6), rgba(6, 11, 20, 0.9));
  border: 1px solid var(--mdf-border);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.dashboard-showcase-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .dashboard-showcase-grid {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
  }

  .dashboard-showcase-grid .dash-wide {
    grid-column: 1 / -1;
  }
}

.dash-preview-card {
  border-radius: var(--mdf-radius-lg);
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-preview-card--dark {
  background: linear-gradient(155deg, #121c2e, #0a1018);
}

.dash-preview-card--goal {
  background: linear-gradient(145deg, #1a4a42, #0f2a24 60%, #0a1a16);
  border-color: rgba(39, 225, 193, 0.18);
}

.dash-preview-card--warm {
  background: linear-gradient(155deg, #1a2218, #101810);
  border-color: rgba(251, 191, 36, 0.12);
}

/* Footer — professional */
.mdf-footer {
  border-top: 1px solid var(--mdf-border);
  background: rgba(6, 11, 20, 0.95);
  padding: 3.5rem 0 2rem;
}

.mdf-footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .mdf-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.mdf-footer-desc {
  color: var(--mdf-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 22rem;
}

.mdf-footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mdf-muted-soft);
  margin-bottom: 1rem;
}

.mdf-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mdf-footer ul li {
  margin-bottom: 0.5rem;
}

.mdf-footer a {
  color: var(--mdf-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.mdf-footer a:hover {
  color: var(--mdf-accent);
}

.mdf-footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--mdf-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  color: var(--mdf-muted-soft);
  font-size: 0.8125rem;
}

@media (min-width: 640px) {
  .mdf-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Hide decorative noise for client-facing polish */
.mdf-site .particles-container,
.mdf-site .animated-gradient-bg,
.mdf-site .wave-effect {
  display: none !important;
}

.mdf-site .trust-icon,
.mdf-site .feature-icon {
  background: var(--mdf-accent-dim);
  border-color: var(--mdf-border-strong);
  color: var(--mdf-accent);
}

.mdf-site .line-icon {
  color: var(--mdf-accent);
  background: var(--mdf-accent-dim);
  border-color: var(--mdf-border-strong);
}

/* Nav link active underline */
.mdf-site nav a.link-underline span {
  background: linear-gradient(90deg, var(--mdf-accent), var(--mdf-accent-bright)) !important;
}

@media (prefers-reduced-motion: reduce) {
  .mdf-site * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* —— Legal & utility pages —— */
.mdf-legal-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 11, 20, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--mdf-border);
}

.mdf-legal-nav .container {
  max-width: 1200px;
  margin-inline: auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mdf-legal-nav a.mdf-back {
  color: var(--mdf-muted);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.mdf-legal-nav a.mdf-back:hover {
  color: var(--mdf-accent);
}

.mdf-legal-main {
  max-width: 56rem;
  margin-inline: auto;
  padding: 2.5rem 1.25rem 4rem;
}

.mdf-legal-card {
  background: linear-gradient(155deg, rgba(22, 34, 56, 0.85), rgba(11, 18, 32, 0.75));
  border: 1px solid var(--mdf-border);
  border-radius: var(--mdf-radius-lg);
  padding: 2rem;
  backdrop-filter: blur(16px);
}

.mdf-legal-card h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--mdf-ink);
  margin: 0 0 0.5rem;
}

.mdf-legal-card .meta {
  color: var(--mdf-muted);
  font-size: 0.9375rem;
}

.mdf-site .text-cyan-400 {
  color: var(--mdf-accent) !important;
}

.mdf-lang-switcher {
  position: fixed;
  top: 5rem;
  right: 1.25rem;
  z-index: 40;
  background: rgba(6, 11, 20, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--mdf-border);
  border-radius: 12px;
  padding: 6px;
  display: flex;
  gap: 4px;
}

.mdf-lang-switcher button {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--mdf-muted);
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.8125rem;
  transition: all 0.2s;
}

.mdf-lang-switcher button:hover {
  color: var(--mdf-ink);
  background: rgba(255, 255, 255, 0.06);
}

.mdf-lang-switcher button.active {
  background: linear-gradient(135deg, var(--mdf-accent), #1ec4a8);
  color: #041218;
}

.mdf-site .lang-switcher button.active {
  background: linear-gradient(135deg, var(--mdf-accent), #1ec4a8) !important;
  color: #041218 !important;
  border-color: transparent !important;
}

.mdf-site .lang-switcher {
  background: rgba(6, 11, 20, 0.92);
  border-color: var(--mdf-border);
}

.mdf-centered-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.mdf-centered-page .mdf-centered-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 3rem;
}

.mdf-centered-page .mdf-legal-card {
  width: 100%;
  max-width: 42rem;
}

.mdf-centered-page a {
  color: var(--mdf-accent-bright);
  text-decoration: none;
}

.mdf-centered-page a:hover {
  color: var(--mdf-accent);
}

/* —— Reusable dashboard-style components —— */
.mdf-card {
  border-radius: var(--mdf-radius-lg);
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--mdf-border);
  background: linear-gradient(155deg, rgba(22, 34, 56, 0.85), rgba(11, 18, 32, 0.75));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.mdf-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.12);
}

.mdf-card--goal {
  background: var(--mdf-surface-goal);
  border-color: rgba(39, 225, 193, 0.18);
}

.mdf-card--warm {
  background: linear-gradient(155deg, #1a2218, #101810);
  border-color: rgba(251, 191, 36, 0.12);
  border-left: 3px solid var(--mdf-warm);
}

.mdf-icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--mdf-accent-dim);
  border: 1px solid var(--mdf-border-strong);
  color: var(--mdf-accent);
}

.mdf-icon-box--warm {
  background: var(--mdf-warm-soft);
  border-color: rgba(251, 191, 36, 0.25);
  color: var(--mdf-warm);
}

.mdf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--mdf-border);
  color: var(--mdf-muted);
}

.mdf-badge--accent {
  background: var(--mdf-accent-dim);
  border-color: var(--mdf-border-strong);
  color: var(--mdf-accent);
}

.mdf-badge--warm {
  background: var(--mdf-warm-soft);
  border-color: rgba(251, 191, 36, 0.22);
  color: var(--mdf-warm);
}

.mdf-badge--ai {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(167, 139, 250, 0.3);
  color: #c4b5fd;
  margin-bottom: 0.75rem;
}

.device-frame--compact {
  max-width: 280px;
  margin: 0 auto;
}

.line-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  color: var(--mdf-accent);
  background: var(--mdf-accent-dim);
  border: 1px solid var(--mdf-border-strong);
}

.line-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.device-screen--photo {
  min-height: auto;
  padding: 0;
  line-height: 0;
}

.device-screen--photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

.screenshot-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

.screenshot-card {
  border-radius: var(--mdf-radius-xl);
  overflow: hidden;
  border: 1px solid var(--mdf-border);
  background: var(--mdf-surface);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), var(--mdf-glow-cyan);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-card figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: var(--mdf-muted);
  border-top: 1px solid var(--mdf-border);
}

.mdf-check-yes,
.mdf-check-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0 auto;
}

.mdf-check-yes svg {
  color: var(--mdf-accent);
}

.mdf-check-no svg {
  color: var(--mdf-muted-soft);
}
