:root {
  --blue: #1b52a1;
  --blue-bright: #2b7dff;
  --background: #05070b;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-line: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --radius: 16px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; scrollbar-width: thin; scrollbar-color: #2b7dff #0b0f18; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0b0f18; border-radius: 10px; }
::-webkit-scrollbar-thumb { background: #2b7dff; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #1b52a1; }

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

body {
  margin: 0;
  font-family: "Albert Sans", sans-serif;
  color: var(--text);
  background: var(--background);
  overflow-x: hidden;
  min-height: 100vh;
}

.transcript-page { min-height: calc(100vh - 220px); padding: 124px 20px 72px; }
.transcript-shell { width: min(940px, 100%); margin: 0 auto; }
.transcript-status { min-height: 360px; display: flex; align-items: center; justify-content: center; gap: 18px; text-align: left; }
.transcript-status h1 { margin: 0 0 8px; font-size: clamp(24px, 4vw, 38px); letter-spacing: -0.03em; }
.transcript-status p { max-width: 60ch; margin: 0; color: var(--muted); line-height: 1.65; }
.transcript-status.is-error { padding: 48px 24px; text-align: center; }
.transcript-loader { width: 24px; height: 24px; flex: 0 0 auto; border: 2px solid rgba(255,255,255,.18); border-top-color: var(--blue-bright); border-radius: 50%; animation: transcript-spin .75s linear infinite; }
.transcript-action, .transcript-back { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; margin-top: 20px; padding: 10px 16px; border-radius: 10px; background: #182231; color: #a9caff; font-weight: 700; transition: transform .2s var(--ease), background .2s var(--ease); }
.transcript-action:hover, .transcript-back:hover { transform: translateY(-2px); background: #203047; }
.transcript-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.1); }
.transcript-ticket { margin: 0 0 8px; color: #8bb8ff; font-weight: 700; }
.transcript-header h1 { margin: 0; font-size: clamp(30px, 5vw, 52px); letter-spacing: -0.04em; text-wrap: balance; }
.transcript-channel { margin: 8px 0 0; color: var(--muted); }
.transcript-back { margin: 0; white-space: nowrap; }
.transcript-summary { display: flex; flex-wrap: wrap; gap: 1px; margin: 28px 0 48px; overflow: hidden; border-radius: 14px; background: rgba(255,255,255,.09); }
.transcript-summary > div { flex: 1 1 170px; min-width: 0; padding: 18px; background: #0d1118; }
.transcript-summary dt { margin-bottom: 6px; color: var(--muted); font-size: 12px; font-weight: 600; }
.transcript-summary dd { margin: 0; overflow-wrap: anywhere; font-size: 14px; font-weight: 600; }
.transcript-section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.1); }
.transcript-section-head h2 { margin: 0; font-size: 22px; }
.transcript-section-head span { color: var(--muted); font-size: 13px; }
.transcript-message { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.transcript-message-meta { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.transcript-message-meta strong { color: #8bb8ff; }
.transcript-message-meta time { margin-left: auto; color: var(--muted); font-size: 12px; }
.transcript-bot { padding: 2px 6px; border-radius: 5px; background: var(--blue-bright); font-size: 9px; font-weight: 800; }
.transcript-message-copy { max-width: 72ch; margin: 0; white-space: pre-wrap; overflow-wrap: anywhere; color: rgba(255,255,255,.88); line-height: 1.65; }
.transcript-attachment { display: inline-flex; margin-top: 12px; color: #8bb8ff; font-size: 13px; font-weight: 700; }
.transcript-empty { padding: 48px 0; color: var(--muted); text-align: center; }
@keyframes transcript-spin { to { transform: rotate(360deg); } }
@media (max-width: 640px) {
  .transcript-page { padding: 104px 16px 52px; }
  .transcript-header { align-items: flex-start; flex-direction: column; }
  .transcript-back { width: 100%; }
  .transcript-message-meta { flex-wrap: wrap; }
  .transcript-message-meta time { width: 100%; margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .transcript-loader { animation-duration: 1.5s; }
  .transcript-action, .transcript-back { transition: none; }
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

/* ─── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 9000;
  display: flex; justify-content: center;
  padding: 0 12px;
  transition: top 0.25s var(--ease);
  animation: fadeInDown 0.5s ease forwards;
  pointer-events: none;
}

.nav-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  pointer-events: auto;
}

.nav-inner .nav-links {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(10, 14, 20, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 8px rgba(0,0,0,0.28);
}

.nav-inner .logo {
  justify-self: start;
  padding: 6px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.nav-inner .nav-links { justify-self: center; display: flex; gap: 6px; padding: 10px; }
.nav-inner .nav-login-btn,
.nav-inner .hamburger { justify-self: end; }
.nav-inner > .site-account-host {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  width: max-content;
  max-width: 100%;
}

.logo img { height: 32px; width: auto; }
.logo a img { height: 32px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-links a:hover { color: white; background: rgba(255,255,255,0.07); }

.nav-links a.active {
  color: white;
  background: rgba(43, 125, 255, 0.18);
}

.nav-login-btn {
  background: rgba(10, 14, 20, 0.88);
  border: 1px solid rgba(255,255,255,0.12);
  color: #8bb8ff;
  padding: 9px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.nav-login-btn.lt-account-ready {
  width: auto;
  min-width: 140px;
  height: 46px;
  padding: 5px 14px 5px 5px !important;
  border-radius: 10px !important;
  justify-content: flex-start;
  background: #151b24 !important;
  border-color: rgba(255,255,255,.12) !important;
  backdrop-filter: none !important;
}
.nav-login-btn.lt-account-ready > img { width: 34px !important; height: 34px !important; margin: 0 !important; border-radius: 8px !important; }
.nav-login-btn.lt-account-ready > span { display: inline; }
.lt-account-menu { top: calc(100% + 12px) !important; border-radius: 12px !important; background: #111720 !important; backdrop-filter: none !important; }
.lt-account-row { display: flex !important; align-items: center !important; gap: 11px !important; min-height: 44px; }
.lt-affiliate-menu-icon {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px;
  margin: 0 !important;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.lt-account-row:hover .lt-affiliate-menu-icon { opacity: 1; }

.nav-login-btn:hover {
  background: #182231;
}

/* ─── Hamburger ──────────────────────────────────────────────────────────── */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
}

.hamburger .fi {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
}

.hamburger.open .fi-rr-menu-burger::before { content: "\f4f6"; }

/* ─── Mobile Menu ────────────────────────────────────────────────────────── */
.mobile-menu {
  flex-direction: column;
  gap: 4px;
  margin: 8px 20px 0;
  padding: 12px;
  background: rgba(10,14,20,0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  pointer-events: auto;
}

.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 10px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu a:hover { background: rgba(255,255,255,0.06); color: white; }
.mobile-menu a.active {
  background: rgba(43,125,255,0.15);
  border: 1px solid rgba(43,125,255,0.3);
  color: white;
}

.mobile-login {
  margin-top: 8px;
  background: linear-gradient(135deg, #1b52a1, #2b7dff) !important;
  color: white !important;
  text-align: center;
  font-weight: 600 !important;
  border-radius: 10px;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 78vh; display: flex; align-items: flex-end; justify-content: center; padding: 140px 20px 60px; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.hero-content { width: min(1000px, 100%); text-align: center; }
.hero-panel {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(5,7,11,0.66), rgba(5,7,11,0.42));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 60px rgba(0,0,0,0.25);
  animation: fadeInUp 0.8s ease forwards;
  box-sizing: border-box;
}
.hero-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.hero-button, .buy-button {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 160px; padding: 14px 26px; border-radius: 12px;
  font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.2s var(--ease);
  font-family: "Albert Sans", sans-serif;
  border: 1px solid rgba(43,125,255,0.4);
  background: rgba(43,125,255,0.15);
  color: #5b9bff;
}
.hero-button.primary, .buy-button {
  background: rgba(43,125,255,0.15);
  border: 1px solid rgba(43,125,255,0.4);
  color: #5b9bff;
}
.hero-button, .buy-button { background: #171d26; border-color: #2a3441; color: #f2f5f8; box-shadow: none; }
.hero-button.primary, .buy-button { background: #1b2430; border-color: #334154; color: #fff; box-shadow: none; }
.hero-button:hover, .buy-button:hover { background: #232d3a; transform: translateY(-2px); box-shadow: none; }

/* ─── Sections ───────────────────────────────────────────────────────────── */
.services, .about, .faq { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 110px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.eyebrow { display: inline-block; margin-bottom: 12px; color: var(--blue-bright); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.section-head h2 { margin: 0 0 14px; font-size: clamp(30px,4vw,46px); line-height: 1.06; }

.home-faq { width: min(900px, calc(100% - 40px)); margin: 0 auto; padding: 20px 0 90px; }
.home-faq-shell {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid #334154;
  border-radius: 16px;
  background: #0e141c;
}
.home-faq .section-head p { margin: 0; color: var(--muted); }
.home-faq-list { display: grid; gap: 14px; }
.home-faq-item {
  overflow: hidden;
  border: 1px solid #354254;
  border-radius: 14px;
  background: #161e28;
}
.home-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 18px 20px;
  color: #f7f9fc;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.home-faq-item summary::-webkit-details-marker { display: none; }
.home-faq-item summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #232e3c;
  color: #fff;
  font-size: 19px;
  line-height: 1;
}
.home-faq-item[open] summary { border-bottom: 1px solid #354254; }
.home-faq-item[open] summary::after { content: "−"; }
.home-faq-item summary:hover { background: #1a2430; }
.home-faq-item summary:focus-visible { outline: 2px solid #6da8ff; outline-offset: -3px; }
.home-faq-item p { margin: 0; padding: 18px 20px 20px; color: #b8c1cc; line-height: 1.7; }

/* ─── Pricing Cards ──────────────────────────────────────────────────────── */
.pricing { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.service-card {
  background: #11151c;
  border: 1px solid #1f2a3f;
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: none;
  border-color: #2b3547;
  box-shadow: none;
}
.most-popular::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2b7dff;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 9999px;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer { margin-top: 30px; padding: 60px 20px 28px; background: #030508; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { width: min(1180px,100%); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.7fr 0.7fr; gap: 28px; }
.footer-brand p { margin: 0; color: var(--muted); line-height: 1.7; max-width: 380px; }
.footer-logo { height: 34px; width: auto; margin-bottom: 16px; }
.footer-links h5 { margin: 0 0 14px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.88); }
.footer-links a { display: block; margin: 8px 0; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--blue-bright); }
.copyright { display: none; }

.feature-card,
.step-card,
.service-card-new {
  background: #10161e !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}
.feature-card::before,
.step-card::before,
.service-card-new::before { display: none !important; }
.feature-card:hover,
.step-card:hover,
.service-card-new:hover {
  transform: none !important;
  box-shadow: none !important;
  background: #10161e !important;
}

/* ─── Animations ─────────────────────────────────────────────────────────── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.animate { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE BREAKPOINTS ─────────────────────────────────────────────── */
/* Large desktop and below */
@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
}

/* Tablet */
@media (max-width: 980px) {
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; gap: 24px; }
  .services, .about, .faq { padding: 90px 0; }
  .nav-links { gap: 12px; }
  .nav-links a { padding: 7px 12px; font-size: 13px; }
}

/* Tablet portrait / large phone */
@media (max-width: 760px) {
  .navbar { padding: 0 8px; }
  .nav-inner { grid-template-columns: 1fr auto auto; column-gap: 8px; padding: 0; }
  .nav-inner .logo { justify-self: start; padding: 4px 0; }
  .nav-inner .nav-links { display: none; }
  .nav-inner .hamburger { display: flex; grid-column: 2; grid-row: 1; justify-self: end; align-items:center; justify-content:center; min-width:44px; min-height:44px; }
  .nav-inner > .site-account-host { grid-column: 3; grid-row: 1; justify-self: end; }
  .nav-inner .nav-login-btn {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 46px;
    min-width: 46px;
    height: 46px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    font-size: 0;
  }
  .nav-inner .nav-login-btn i { font-size: 18px; }
  .nav-inner .nav-login-btn > span { display: none !important; }
  .nav-inner .nav-login-btn > img {
    width: 34px !important;
    height: 34px !important;
    margin: 0 !important;
    border-radius: 50% !important;
  }
  .mobile-login { display: none !important; }
  .logo img { height: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand p { max-width: 100%; margin: 0 auto; }
  .footer-logo { margin: 0 auto 16px; }
  .pricing { grid-template-columns: 1fr; gap: 16px; }
  .hero { min-height: 70vh; padding: 120px 16px 50px; }
  .hero-panel { padding: 18px 16px; }
  .hero-panel h1 { font-size: clamp(22px, 6vw, 36px); }
  .hero-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-button, .buy-button { min-width: 0; width: 100%; padding: 13px 20px; }
  .services, .about, .faq { padding: 70px 0; width: calc(100% - 32px); }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: clamp(24px, 6vw, 36px); }
  footer { padding: 48px 16px 24px; }
}

/* Phone */
@media (max-width: 480px) {
  .nav-inner { padding: 0; }
  .logo img { height: 28px; }
  .hero { padding: 100px 12px 40px; min-height: 60vh; }
  .hero-panel { padding: 14px 12px; }
  .services, .about, .faq { padding: 50px 0; width: calc(100% - 24px); }
  .service-card { padding: 24px 20px; }
  .copyright { font-size: 12px; }
  footer { padding: 36px 12px 18px; }
  .mobile-menu { padding: 10px 12px 14px; }
  .mobile-menu a { padding: 12px 14px; font-size: 14px; }
}

/* Very small phones */
@media (max-width: 360px) {
  .nav-inner { padding: 0; }
  .logo img { height: 26px; }
  .hero-panel h1 { font-size: 20px; }
  .section-head h2 { font-size: 22px; }
}

/* Touch device tweaks */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover { transform: none; }
  .nav-login-btn:hover { transform: none; }
  .hero-button:hover, .buy-button:hover { transform: none; }
}

/* ============================================
 * Unified page hero/intro pattern (v19)
 * Provides consistent typography and spacing
 * across about, services, contact, faq, tos
 * ============================================ */
.page-hero { padding: 140px 20px 100px; position: relative; z-index: 1; }
.page-hero-inner { text-align: center; margin: 0 auto 48px; max-width: 760px; }
.page-eyebrow { color: #2b7dff; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 16px; }
.page-title { font-size: clamp(36px, 6vw, 60px); margin: 0 0 18px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.08; color: white; }
.page-title-accent { color: #2b7dff; }
.page-subtitle { color: rgba(255,255,255,0.55); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.6; max-width: 620px; margin: 0 auto; }

@media (max-width: 760px) {
  .page-hero { padding: 110px 16px 70px; }
  .page-hero-inner { margin-bottom: 36px; }
}
@media (max-width: 480px) {
  .page-hero { padding: 90px 14px 50px; }
}

/* ============================================
 * Mobile hardening (v117) - targets the inline-styled
 * fragments (services, overclock, stats, dropdown, modal)
 * that the base queries above didn't fully cover.
 * ============================================ */
@media (max-width: 760px) {
  /* Service + overclock grids: force single column so cards never squish */
  .service-card-new { padding: 24px 20px; }
  /* Stats strip on the homepage: 2x2 instead of a cramped single row */
  .stats-strip { flex-wrap: wrap; gap: 16px; }
  .stats-strip .stat-item { flex: 1 1 40%; min-width: 130px; }
  /* Feature cards / step cards full width */
  .feature-card, .step-card { width: 100%; box-sizing: border-box; }
  /* Account dropdown: keep it on-screen, not overflowing the right edge */
  #userDropdown { right: 0 !important; min-width: 200px !important; max-width: calc(100vw - 32px) !important; }
  /* Booking modal: comfortable padding and full-height scroll on phones */
  #bookingModal .modal { padding: 24px 20px !important; max-height: 92vh !important; border-radius: 18px !important; }
  /* Overclock cards: a touch more breathing room */
  .overclock-card { padding: 22px 18px; }
}

@media (max-width: 480px) {
  /* Single-column everything that was a multi-col grid via inline styles */
  .service-card-new { padding: 22px 18px; }
  /* Stats: stack to single column on very narrow screens */
  .stats-strip .stat-item { flex: 1 1 100%; }
  .stat-number { font-size: 26px; }
  /* Service price sizing */
  .price-tag { font-size: 38px; }
  .service-price, .overclock-price { font-size: 30px; }
  /* Booking modal inputs comfortable to tap */
  #bookingModal .modal input,
  #bookingModal .modal select { font-size: 16px !important; } /* 16px stops iOS zoom-on-focus */
  #bookingModal .modal { padding: 20px 16px !important; }
  /* Account dropdown header text doesn't overflow */
  #userDropdown { min-width: 180px !important; }
  /* Payment-free FAQ items / cards full width */
  .faq-item { padding: 18px 16px; }
  /* Code-view / affiliate stat cards stack */
  .stat-card, .stats-row { width: 100% !important; box-sizing: border-box; }
}

/* Collapse the card grids that use inline repeat(auto-fit, minmax(...)) to a
 * single column on phones. Scoped to grids whose min track is >=200px (the
 * service/overclock/feature card grids) so we don't disturb small UI grids. */
@media (max-width: 600px) {
  div[style*="minmax(260px"],
  div[style*="minmax(280px"],
  div[style*="minmax(320px"],
  div[style*="minmax(200px"],
  div[style*="minmax(380px"] { grid-template-columns: 1fr !important; }
}

/* Prevent inline marketing layouts from overflowing narrow phones or zoomed views. */
html, body { max-width: 100%; overflow-x: hidden; }
img, svg, video { max-width: 100%; height: auto; }
main, section, article, header, footer, nav, div { min-width: 0; }
button, a, input, select, textarea { touch-action: manipulation; }
@media (max-width: 480px) {
  div[style*="minmax(320px"] { grid-template-columns: minmax(0, 1fr) !important; padding-left: 14px !important; padding-right: 14px !important; }
  div[style*="minmax(280px"] { grid-template-columns: minmax(0, 1fr) !important; padding-left: 14px !important; padding-right: 14px !important; }
  div[style*="padding:56px 48px"] { padding: 34px 20px !important; }
}
