:root {
  --bg:#0f1317; --panel:#151b22; --panel2:#10161d;
  --text:#e6eef6; --muted:#92a0af; --primary:#99a1ad;
  --accent:#7db2ff; --danger:#ff6b6b; --line:#22303d; --ok:#38d39f;
}
* { box-sizing:border-box; }
html { scroll-behavior:smooth; max-width:100%; overflow-x:hidden; }
body {
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(125,178,255,.16), transparent 35rem),
    radial-gradient(circle at 90% 20%, rgba(255,107,107,.08), transparent 28rem),
    var(--bg);
  color:var(--text);
  line-height:1.55;
  max-width:100%;
  overflow-x:hidden;
}
img, video, canvas, svg { max-width:100%; height:auto; }
a { color:var(--accent); text-decoration:none; }
a:hover { text-decoration:underline; }
.container { max-width:1120px; margin:0 auto; padding:0 22px; }
.container,
.nav-inner,
.hero-grid > *,
.split > *,
.grid-4 > *,
.grid-3 > *,
.grid-2 > *,
.footer-grid > *,
.trust-strip > *,
.form-grid > *,
.partner-flow > *,
.hero-actions > *,
.flyer-controls-stack,
.qr-assets-output > *,
.nav-cta,
.card,
.hero-card {
  min-width:0;
}

.nav {
  position:sticky; top:0; z-index:20; backdrop-filter:blur(16px);
  background:rgba(15,19,23,.78); border-bottom:1px solid rgba(255,255,255,.06);
}
.nav-inner { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:14px 0; }
.logo { display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:-.02em; color:white; }
.logo-mark { width:34px; height:34px; border-radius:11px; background:linear-gradient(135deg,var(--accent),#b8d8ff); color:#06101b; display:grid; place-items:center; font-weight:900; }
.nav-links { display:flex; align-items:center; gap:18px; font-size:14px; color:var(--muted); }
.nav-links a { color:var(--muted); }
.nav-cta { flex:0 0 auto; white-space:nowrap; }

.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  border:1px solid var(--line); background:#121821; color:var(--text);
  border-radius:16px; padding:11px 16px; font-weight:700; text-decoration:none;
}
.btn:hover { text-decoration:none; transform:translateY(-1px); }
.btn.primary { background:var(--accent); color:#05101b; border-color:#8ec0ff; }
.btn.danger { background:rgba(255,107,107,.12); border-color:rgba(255,107,107,.35); color:#ffd0d0; }

.hero { padding:82px 0 48px; }
.hero-grid { display:grid; grid-template-columns:1.08fr .92fr; gap:38px; align-items:center; }
.eyebrow { display:inline-flex; gap:8px; align-items:center; color:#cfe4ff; background:rgba(125,178,255,.12); border:1px solid rgba(125,178,255,.25); padding:7px 11px; border-radius:999px; font-size:13px; font-weight:700; }
h1 { font-size: clamp(42px, 6vw, 74px); line-height:.96; letter-spacing:-.06em; margin:18px 0 18px; }
h2 { font-size: clamp(30px, 4vw, 46px); line-height:1.04; letter-spacing:-.04em; margin:0 0 14px; }
h3 { font-size:22px; margin:0 0 8px; }
.lead { font-size:20px; color:#cbd6e1; max-width:760px; }

.hero-card, .card {
  background:linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.09); border-radius:28px; padding:24px;
  box-shadow:0 24px 80px rgba(0,0,0,.28);
}
.hero-card img { width:100%; border-radius:22px; display:block; border:1px solid rgba(255,255,255,.08); }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; }

.trust-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin:34px 0 0; }
.trust-item { background:rgba(255,255,255,.045); border:1px solid rgba(255,255,255,.07); border-radius:18px; padding:13px; color:#d7e2ee; font-size:14px; }

.section { padding:54px 0; }
.section-head { max-width:820px; margin-bottom:24px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.mode-card { min-height:210px; display:flex; flex-direction:column; justify-content:space-between; }
.tag { display:inline-flex; align-self:flex-start; border:1px solid var(--line); color:#b6c4d4; background:#0d1319; border-radius:999px; padding:4px 9px; font-size:12px; font-weight:700; }
.card p { color:var(--muted); margin:0; }
.card ul { color:#cbd6e1; padding-left:18px; margin:12px 0 0; }

.split { display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:center; }
.flow { counter-reset:step; display:grid; gap:14px; }
.flow-row { display:grid; grid-template-columns:70px 1fr; gap:18px; align-items:start; background:rgba(255,255,255,.045); border:1px solid rgba(255,255,255,.07); border-radius:22px; padding:18px; }
.num { width:50px; height:50px; border-radius:18px; display:grid; place-items:center; background:var(--accent); color:#06101b; font-weight:900; }
.callout { border-left:4px solid var(--accent); background:rgba(125,178,255,.08); padding:18px; border-radius:14px; color:#dbe9ff; }

.compare { width:100%; border-collapse:collapse; overflow:hidden; border-radius:18px; background:rgba(255,255,255,.035); }
.compare th,.compare td { padding:15px; border-bottom:1px solid var(--line); text-align:left; vertical-align:top; }
.compare th { background:#10161d; color:#cfe4ff; }
.compare td:first-child { color:#ffdddd; }
.compare td:last-child { color:#d7ecff; }

.faq details { background:rgba(255,255,255,.045); border:1px solid rgba(255,255,255,.07); border-radius:18px; padding:16px; margin-bottom:12px; }
.faq summary { cursor:pointer; font-weight:800; color:#eaf3ff; }

.table { width:100%; border-collapse:collapse; overflow:hidden; border-radius:18px; }
.table th,.table td { padding:14px; border-bottom:1px solid var(--line); text-align:left; }
.table th { color:#cfe4ff; background:#10161d; }

input, textarea, select { width:100%; padding:13px 14px; border-radius:14px; border:1px solid var(--line); background:#0e141a; color:var(--text); }
label { display:block; margin:0 0 6px; color:#cbd6e1; font-weight:700; font-size:14px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.notice { background:rgba(255,107,107,.1); border:1px solid rgba(255,107,107,.3); color:#ffd5d5; border-radius:18px; padding:16px; }
.invite-card { max-width:760px; margin:0 auto; }
.invite-title { font-size:clamp(36px,5vw,58px); }
.invite-status { margin-top:14px; }
.btn.disabled { opacity:.55; pointer-events:none; }

.highlight { color: var(--accent); }
.partner-flow { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:20px; }
.partner-flow .step { background:rgba(255,255,255,.045); border:1px solid rgba(255,255,255,.07); border-radius:18px; padding:16px; }
.partner-flow .step strong { display:block; color:#eaf3ff; margin-bottom:6px; }
.roi-box { background:linear-gradient(135deg, rgba(125,178,255,.14), rgba(255,255,255,.04)); border:1px solid rgba(125,178,255,.25); border-radius:24px; padding:22px; }
.qr-card { display:grid; place-items:center; min-height:260px; background:#f5f8fc; border-radius:24px; color:#0f1317; }
.qr-grid { display:grid; grid-template-columns:repeat(7,22px); gap:7px; }
.qr-grid span { width:22px; height:22px; background:#0f1317; display:block; border-radius:3px; }

.footer { border-top:1px solid rgba(255,255,255,.07); padding:34px 0; color:var(--muted); margin-top:48px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:24px; }
.small { font-size:13px; color:var(--muted); }

/* ================================
   Internal Checkout Launcher
================================ */

.internal-checkout-page .section {
  min-height:100vh;
  display:grid;
  align-items:center;
  padding:48px 0;
}

.internal-checkout-grid {
  display:grid;
  grid-template-columns:minmax(0, .92fr) minmax(320px, 1.08fr);
  gap:28px;
  align-items:center;
}

.internal-checkout-logo {
  margin-bottom:28px;
}

.internal-checkout-intro h1 {
  max-width:680px;
  font-size:clamp(40px, 5vw, 64px);
}

.internal-checkout-notes {
  display:grid;
  gap:10px;
  margin-top:26px;
}

.internal-checkout-notes p {
  margin:0;
  padding:12px 14px;
  border:1px solid rgba(125,178,255,.18);
  border-radius:14px;
  background:rgba(125,178,255,.08);
  color:#d7e8ff;
  font-weight:700;
}

.internal-checkout-card {
  border-radius:22px;
}

.internal-checkout-fields {
  margin-top:16px;
}

.internal-checkout-submit {
  width:100%;
  margin-top:18px;
}

.internal-checkout-result {
  margin-top:22px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.09);
}

.internal-checkout-actions {
  margin-top:14px;
}

/* ================================
   MeetSafe Partner Flyer Generator
================================ */

.flyer-generator-grid {
  display:grid;
  grid-template-columns:minmax(320px, .9fr) minmax(360px, 1.1fr);
  gap:24px;
  align-items:start;
}

.flyer-controls-stack {
  display:grid;
  gap:18px;
}

.flyer-generator {
  padding-top:28px;
}

.partner-flyer-page .hero {
  padding:28px 0 8px;
}

.partner-flyer-page .hero h1 {
  max-width:860px;
  font-size:clamp(34px, 4vw, 46px);
  line-height:1;
  margin:12px 0;
}

.partner-flyer-page .hero .lead {
  max-width:860px;
  font-size:17px;
}

.flyer-controls h2 {
  font-size:32px;
}

.qr-assets-card h2 {
  font-size:28px;
}

.qr-assets-helper {
  margin-top:8px !important;
  color:#d7e8ff !important;
  font-weight:800;
}

.qr-assets-output {
  display:grid;
  grid-template-columns:132px minmax(0, 1fr);
  gap:16px;
  align-items:center;
  margin-top:18px;
}

.qr-assets-image-wrap {
  display:grid;
  place-items:center;
  width:132px;
  height:132px;
  padding:10px;
  border-radius:18px;
  background:#fff;
}

.qr-assets-image-wrap img {
  width:100%;
  height:100%;
  object-fit:contain;
}

.qr-assets-link-wrap input {
  overflow:hidden;
  text-overflow:ellipsis;
}

.qr-assets-actions {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.qr-assets-status {
  min-height:20px;
  margin-top:8px !important;
}

.flyer-preview-wrap {
  display:grid;
  justify-items:center;
  align-items:start;
  max-height:calc(100vh - 110px);
  overflow:auto;
  padding:0 8px 18px;
}

.partner-flyer-sheet {
  position:relative;
  container-type:inline-size;
  width:min(100%, 405px, calc((100vh - 240px) * 210 / 297));
  min-width:360px;
  aspect-ratio:210 / 297;
  overflow:hidden;
  color:#eef6ff;
  background:
    radial-gradient(circle at 20% 10%, rgba(125,178,255,.34), transparent 34%),
    linear-gradient(160deg, #060a10 0%, #101926 55%, #071019 100%);
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  padding:6.1cqw;
  box-shadow:0 30px 110px rgba(0,0,0,.42);
}

.flyer-glow {
  position:absolute;
  inset:auto -22% -20% auto;
  width:70%;
  height:40%;
  background:radial-gradient(circle, rgba(125,178,255,.18), transparent 68%);
  pointer-events:none;
}

.flyer-top,
.flyer-qr-row,
.flyer-bottom {
  position:relative;
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
}

.flyer-brand {
  display:flex;
  align-items:center;
  gap:1.8cqw;
  font-size:3.9cqw;
  font-weight:900;
}

.flyer-mark {
  width:7.5cqw;
  height:7.5cqw;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#7db2ff;
  color:#06101b;
}

.flyer-logo-box {
  width:21.1cqw;
  height:13.9cqw;
  display:grid;
  place-items:center;
  padding:1.8cqw;
  color:#9fb1c7;
  font-size:2.1cqw;
  text-align:center;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
}

.flyer-logo-box img {
  display:none;
  width:100%;
  max-height:10.4cqw;
  object-fit:contain;
  border:0;
}

.flyer-partner {
  position:relative;
  display:grid;
  gap:.7cqw;
  margin-top:6.1cqw;
  color:#b8c9de;
}

.flyer-partner strong {
  color:#fff;
  font-size:5cqw;
  line-height:1.05;
}

.partner-flyer-sheet h2 {
  position:relative;
  max-width:78.6cqw;
  margin:6.4cqw 0 2.4cqw;
  font-size:8.2cqw;
  line-height:.96;
  letter-spacing:0;
}

#flyerSupport {
  position:relative;
  max-width:75cqw;
  color:#cbd9e8;
  font-size:3.1cqw;
  margin-bottom:4.4cqw;
}

.flyer-qr-row {
  align-items:center;
  background:rgba(255,255,255,.075);
  border:1px solid rgba(255,255,255,.12);
  border-radius:5cqw;
  padding:3cqw;
}

.flyer-qr-frame {
  flex:0 0 28cqw;
  width:28cqw;
  height:28cqw;
  display:grid;
  place-items:center;
  background:#fff;
  border-radius:3.2cqw;
  padding:2.1cqw;
}

.flyer-qr-frame img {
  width:100%;
  height:100%;
  object-fit:contain;
}

.flyer-cta {
  margin:0 0 1.8cqw;
  color:#fff;
  font-size:4.3cqw;
  line-height:1.1;
  font-weight:900;
}

.flyer-url {
  overflow-wrap:anywhere;
  color:#b9d8ff;
  font-size:2.3cqw;
  margin:0;
}

.flyer-points {
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.8cqw;
  margin-top:3.5cqw;
}

.flyer-points span {
  border:1px solid rgba(125,178,255,.2);
  border-radius:999px;
  padding:1.6cqw 2cqw;
  color:#d9e9fb;
  background:rgba(125,178,255,.08);
  font-size:2.3cqw;
  font-weight:800;
}

.flyer-bottom {
  position:absolute;
  left:6.1cqw;
  right:6.1cqw;
  bottom:5cqw;
  align-items:flex-end;
  color:#98a9ba;
  font-size:2.1cqw;
}

.flyer-bottom p {
  max-width:53.6cqw;
  margin:0;
}

.flyer-bottom strong {
  color:#d9e9fb;
  white-space:nowrap;
}

/* ================================
   MeetSafe Image Lightbox
================================ */

.expandable-image {
  cursor: zoom-in;
}

.hero-card,
.card {
  position: relative;
}

.hero-card:has(img.expandable-image)::after,
.card:has(img.expandable-image)::after {
  content: "Click to expand";
  position: absolute;
  right: 18px;
  bottom: 18px;
  font-size: 12px;
  font-weight: 800;
  color: #dbe9ff;
  background: rgba(15, 19, 23, .78);
  border: 1px solid rgba(125, 178, 255, .35);
  border-radius: 999px;
  padding: 6px 10px;
  pointer-events: none;
  opacity: .9;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.lightbox-frame {
  max-width: min(96vw, 1800px);
  max-height: 90vh;
  overflow: auto;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.14);
  background: #05080c;
  box-shadow: 0 30px 100px rgba(0,0,0,.65);
}

.lightbox-frame img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: none;
  border-radius: 20px;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(15,19,23,.85);
  color: #fff;
  font-size: 32px;
  line-height: 36px;
  cursor: pointer;
  z-index: 100000;
}

.lightbox-caption {
  position: fixed;
  left: 22px;
  bottom: 16px;
  max-width: calc(100vw - 44px);
  color: #cbd6e1;
  font-size: 13px;
  background: rgba(15, 19, 23, .75);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 7px 11px;
}

/* ================================
   MeetSafe Mobile Polish
================================ */

@media (max-width: 1100px) {
  .hero-grid,
  .split,
  .grid-4,
  .grid-3,
  .grid-2,
  .footer-grid,
  .trust-strip,
  .form-grid,
  .partner-flow,
  .flyer-generator-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-card {
    max-width: 720px;
  }

  .footer-grid {
    gap: 22px;
  }

  .mode-card {
    min-height: auto !important;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .nav-links {
    display: none !important;
  }

  .nav-inner {
    gap: 12px;
  }

  .nav-cta {
    display: inline-flex;
    min-height: 40px;
    padding: 9px 12px;
    border-radius: 13px;
    font-size: 14px;
  }

  .hero {
    padding: 58px 0 36px;
  }

  .hero-grid {
    gap: 24px;
  }

  h1 {
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.045em;
    margin: 16px 0;
  }

  h2 {
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .lead {
    font-size: 17px;
    line-height: 1.58;
  }

  .card,
  .hero-card {
    border-radius: 22px;
    padding: 20px;
  }

  .card p {
    font-size: 15px;
    line-height: 1.55;
  }

  .mode-card {
    min-height: auto !important;
    justify-content: flex-start;
    gap: 10px;
  }

  .trust-strip {
    gap: 10px;
    margin-top: 24px;
  }

  .trust-item {
    font-size: 15px;
    line-height: 1.45;
    padding: 12px 14px;
  }

  .btn {
    min-height: 46px;
    padding: 13px 16px;
    font-size: 15px;
  }

  .footer,
  .footer a,
  .small {
    font-size: 14px;
  }
}

@media (max-width: 840px) {
  body {
    font-size: 16px;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-inner {
    padding: 12px 0;
  }

  .nav-links {
    display: none !important;
  }

  .logo {
    font-size: 16px;
  }

  .logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .hero {
    padding: 48px 0 32px;
  }

  .hero-grid,
  .split,
  .grid-4,
  .grid-3,
  .grid-2,
  .footer-grid,
  .trust-strip,
  .form-grid,
  .partner-flow,
  .flyer-generator-grid {
    grid-template-columns: 1fr !important;
  }

  h1 {
    font-size: 41px;
    line-height: 0.98;
    letter-spacing: -0.045em;
    margin-top: 16px;
  }

  h2 {
    font-size: 31px;
    line-height: 1.05;
  }

  h3 {
    font-size: 21px;
  }

  .lead {
    font-size: 18px;
    line-height: 1.6;
  }

  .eyebrow {
    font-size: 13px;
    padding: 6px 10px;
  }

  .tag {
    font-size: 13px;
  }

  .card p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: flex-start;
    gap: 10px;
    margin-top: 22px;
  }

  .btn {
    width: auto;
    min-height: 46px;
    padding: 13px 16px;
    border-radius: 15px;
    text-align: center;
    font-size: 15px;
  }

  .hero-card,
  .card {
    border-radius: 22px;
    padding: 19px;
  }

  .hero-card {
    margin-top: 16px;
  }

  .hero-card img {
    border-radius: 18px;
  }

  .trust-strip {
    gap: 10px;
    margin-top: 24px;
  }

  .trust-item {
    padding: 12px 14px;
    font-size: 16px;
    line-height: 1.45;
  }

  .section {
    padding: 38px 0;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .mode-card {
    min-height: auto !important;
  }

  .flow-row {
    grid-template-columns: 52px 1fr;
    gap: 12px;
    padding: 16px;
  }

  .num {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .compare {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

  .compare th,
  .compare td {
    min-width: 220px;
    padding: 13px;
  }

  .footer {
    margin-top: 30px;
    padding: 28px 0;
    font-size: 14px;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer a,
  .small {
    font-size: 14px;
  }

  .hero-card:has(img.expandable-image)::after,
  .card:has(img.expandable-image)::after {
    content: "Tap to expand";
    right: 14px;
    bottom: 14px;
    font-size: 13px;
  }

  .lightbox-overlay {
    padding: 10px;
    align-items: flex-start;
  }

  .lightbox-frame {
    margin-top: 58px;
    max-width: 98vw;
    max-height: calc(100vh - 95px);
  }

  .lightbox-frame img {
    max-width: 1600px;
    width: 1400px;
  }

  .lightbox-caption {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .nav-cta {
    width: auto;
  }
}

/* Very small phones */
@media (max-width: 420px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  h1 {
    font-size: 38px;
    line-height: 1;
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 18px;
  }

  .card,
  .hero-card {
    padding: 17px;
  }

  .card p {
    font-size: 15.5px;
  }

  .footer,
  .footer a,
  .small {
    font-size: 13.5px;
  }

  .btn {
    font-size: 15px;
    min-height: 46px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 8px 11px;
    font-size: 14px;
  }
}

@media screen and (max-width: 720px) {
  .qr-assets-output {
    grid-template-columns:1fr;
    justify-items:start;
  }

  .qr-assets-actions .btn {
    width:100%;
  }

  .partner-flyer-sheet {
    width:100%;
    min-width:0;
    padding:24px;
  }

  .partner-flyer-sheet h2 {
    font-size:38px;
    margin-top:32px;
  }

  .flyer-qr-row {
    align-items:flex-start;
    flex-direction:column;
  }

  .flyer-bottom {
    left:24px;
    right:24px;
    bottom:22px;
  }
}

@page {
  size:A4 portrait;
  margin:0;
}

@media print {
  html,
  body {
    width:210mm;
    height:297mm;
    margin:0;
    overflow:hidden;
    background:#060a10 !important;
  }

  .no-print,
  .footer,
  .nav,
  .hero {
    display:none !important;
  }

  .section,
  .container,
  .flyer-generator,
  .flyer-generator-grid,
  .flyer-preview-wrap {
    display:block !important;
    width:210mm !important;
    max-width:none !important;
    height:297mm !important;
    margin:0 !important;
    padding:0 !important;
    overflow:hidden !important;
  }

  .partner-flyer-sheet {
    width:210mm !important;
    height:297mm !important;
    aspect-ratio:auto !important;
    border:0 !important;
    border-radius:0 !important;
    box-shadow:none !important;
    padding:16mm !important;
    print-color-adjust:exact;
    -webkit-print-color-adjust:exact;
  }

  .flyer-brand {
    gap:10px;
    font-size:22px;
  }

  .flyer-mark {
    width:42px;
    height:42px;
  }

  .flyer-logo-box {
    width:118px;
    height:78px;
    padding:10px;
    font-size:12px;
  }

  .flyer-logo-box img {
    max-height:58px;
  }

  .flyer-partner {
    gap:4px;
    margin-top:34px;
  }

  .flyer-partner strong {
    font-size:28px;
  }

  .partner-flyer-sheet h2 {
    max-width:440px;
    margin:46px 0 16px;
    font-size:52px;
  }

  #flyerSupport {
    max-width:420px;
    font-size:19px;
    margin-bottom:34px;
  }

  .flyer-qr-row {
    border-radius:28px;
    padding:20px;
  }

  .flyer-qr-frame {
    flex:0 0 176px;
    width:176px;
    height:176px;
    border-radius:18px;
    padding:12px;
  }

  .flyer-cta {
    margin:0 0 10px;
    font-size:24px;
  }

  .flyer-url {
    font-size:13px;
  }

  .flyer-points {
    gap:10px;
    margin-top:26px;
  }

  .flyer-points span {
    padding:9px 11px;
    font-size:13px;
  }

  .flyer-bottom {
    left:16mm;
    right:16mm;
    bottom:14mm;
    font-size:12px;
  }

  .flyer-bottom p {
    max-width:300px;
  }
}

@media screen and (max-width: 1100px) {
  .nav-links {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    max-width: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  .nav-cta {
    display: inline-flex !important;
    visibility: visible !important;
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
  }

  .nav-inner {
    justify-content: space-between !important;
  }
}

@media screen and (max-width: 840px) {
  body {
    font-size: 17px !important;
  }

  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  h1 {
    font-size: 40px !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
  }

  h2 {
    font-size: 31px !important;
    line-height: 1.08 !important;
  }

  h3 {
    font-size: 22px !important;
    line-height: 1.15 !important;
  }

  .lead {
    font-size: 18px !important;
    line-height: 1.62 !important;
  }

  .eyebrow {
    font-size: 13.5px !important;
  }

  .trust-item {
    font-size: 16px !important;
    line-height: 1.45 !important;
    padding: 14px 15px !important;
  }

  .card p {
    font-size: 16px !important;
    line-height: 1.58 !important;
  }

  .tag {
    font-size: 13px !important;
  }

  .btn {
    font-size: 16px !important;
    min-height: 46px !important;
  }

  .nav-cta {
    font-size: 14px !important;
    min-height: 34px !important;
    padding: 9px 12px !important;
  }

  .footer,
  .footer a,
  .footer .small {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
  }

  .hero-card:has(img.expandable-image)::after,
  .card:has(img.expandable-image)::after {
    font-size: 13px !important;
  }

  .internal-checkout-grid,
  .form-grid.internal-checkout-fields {
    grid-template-columns: 1fr !important;
  }

  .internal-checkout-page .section {
    align-items:start;
  }
}

@media screen and (max-width: 420px) {
  h1 {
    font-size: 38px !important;
  }

  .lead {
    font-size: 18px !important;
  }

  .card p,
  .trust-item {
    font-size: 15.8px !important;
  }

  .footer,
  .footer a,
  .footer .small {
    font-size: 14px !important;
  }
}
