:root{
  --primary:#D8D093;
  --secondary:#121212;

  --text:#ffffff;
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.58);

  --line:rgba(255,255,255,.10);
  --line2:rgba(255,255,255,.14);

  --surface:rgba(255,255,255,.04);
  --surface2:rgba(255,255,255,.06);

  --radius:16px;
  --radius2:12px;

  --shadow:0 18px 50px rgba(0,0,0,.55);
  --shadowSoft:0 12px 30px rgba(0,0,0,.35);

  --container:1160px;
  --header:860px;

  --gutter:16px;
  --focus:0 0 0 3px rgba(216,208,147,.35);
}

html,body{
  margin:0;
  padding:0;
  width:100%;
  overflow-x:hidden;
  background:var(--secondary);
  color:var(--text);
  font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

*,
*::before,
*::after{
  box-sizing:border-box;
  min-width:0;
}

::selection{ background:rgba(216,208,147,.32); }

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

p,h1,h2,h3,h4,ul,ol{ margin:0; }
ul,ol{ padding:0; }
button,input,textarea{ font:inherit; }

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 var(--gutter);
}

.main{
  width:100%;
  max-width:100%;
}

.skipLink{
  position:absolute;
  left:-9999px;
  top:10px;
  z-index:9999;
  padding:10px 14px;
  border-radius:999px;
  background:var(--primary);
  color:var(--secondary);
  font-weight:900;
}
.skipLink:focus{
  left:16px;
  outline:none;
  box-shadow:var(--focus);
}

/* MEDIA: NEVER CROP, NEVER STRETCH */
.media{
  width:100%;
  max-width:100%;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:linear-gradient(180deg, var(--surface2), var(--surface));
}
.media img{
  width:100%;
  max-width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  object-position:center;
}

/* Cards */
.mediaCard{
  display:block;
  max-width:100%;
  border-radius:calc(var(--radius) + 2px);
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  box-shadow:var(--shadowSoft);
  overflow:hidden;
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.mediaCard:hover{
  transform:translateY(-2px);
  border-color:rgba(216,208,147,.22);
  box-shadow:0 22px 58px rgba(0,0,0,.62);
}
.mediaCard:active{ transform:translateY(0); }
.mediaCardBody{ padding:18px 18px 20px; }
.mediaCardTitle{
  font-weight:950;
  letter-spacing:.2px;
  font-size:16px;
  margin-bottom:6px;
}
.mediaCardText{
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.mediaCardCta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:12px;
  font-weight:950;
  color:var(--primary);
}
.mediaCardCta::after{ content:"→"; opacity:.9; }

/* HEADER (NARROWER) */
.siteHeader{
  position:sticky;
  top:0;
  z-index:120;
  background:rgba(18,18,18,.86);
  backdrop-filter:saturate(1.15) blur(10px);
  border-bottom:1px solid var(--line);
}
.siteHeader .container{
  max-width:var(--header);
}

.headerBar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  max-width:48%;
}
.brandLogo{
  flex:0 0 auto;
  padding:8px;
  border-radius:14px;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.03);
}
.brandLogo img{
  width:auto;
  max-height:42px;
}
.brandText{
  display:flex;
  flex-direction:column;
  gap:2px;
  overflow:hidden;
}
.brandName{
  font-weight:950;
  letter-spacing:.2px;
  line-height:1.05;
  font-size:17px;
  overflow-wrap:anywhere;
  word-break:break-word;
}
.brandTag{
  font-size:12px;
  line-height:1.2;
  color:var(--muted2);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  white-space:nowrap;
  flex:1 1 auto;
  max-width:420px;
  overflow:hidden;
}
.navLink{
  display:inline-flex;
  align-items:center;
  padding:10px 10px;
  border-radius:999px;
  font-weight:950;
  font-size:12px;
  letter-spacing:.2px;
  color:rgba(255,255,255,.86);
  border:1px solid transparent;
  transition:transform .16s ease, background .16s ease, border-color .16s ease;
}
.navLink:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.10);
  transform:translateY(-1px);
}
.navLink:active{ transform:translateY(0); }

.headerActions{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:950;
  letter-spacing:.2px;
  cursor:pointer;
  user-select:none;
  border:2px solid transparent;
  text-align:center;
  line-height:1.1;
  transition:transform .14s ease, box-shadow .14s ease, filter .14s ease, background .14s ease, border-color .14s ease;
  box-shadow:0 10px 0 rgba(0,0,0,.28);
}
.btn:focus{
  outline:none;
  box-shadow:0 10px 0 rgba(0,0,0,.28), var(--focus);
}
.btn--primary{
  color:var(--secondary);
  background:linear-gradient(180deg, rgba(216,208,147,1), rgba(191,184,111,1));
  border-color:rgba(0,0,0,.12);
  box-shadow:0 12px 0 rgba(216,208,147,.24), 0 18px 42px rgba(0,0,0,.38);
}
.btn--primary:hover{
  transform:translateY(-2px);
  filter:saturate(1.04);
  box-shadow:0 14px 0 rgba(216,208,147,.30), 0 22px 54px rgba(0,0,0,.46);
}
.btn--primary:active{
  transform:translateY(0);
  box-shadow:0 10px 0 rgba(216,208,147,.20), 0 16px 36px rgba(0,0,0,.40);
}
.btn--ghost{
  background:rgba(255,255,255,.02);
  color:var(--primary);
  border-color:rgba(216,208,147,.78);
  box-shadow:0 10px 0 rgba(216,208,147,.10);
}
.btn--ghost:hover{
  transform:translateY(-2px);
  background:rgba(216,208,147,.08);
  box-shadow:0 12px 0 rgba(216,208,147,.15);
}
.btn--ghost:active{
  transform:translateY(0);
  box-shadow:0 10px 0 rgba(216,208,147,.10);
}

.burger{
  display:none;
  width:48px;
  height:48px;
  border-radius:14px;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.03);
  box-shadow:0 10px 0 rgba(0,0,0,.24);
  cursor:pointer;
  transition:transform .14s ease, box-shadow .14s ease, background .14s ease, border-color .14s ease;
}
.burger:hover{
  transform:translateY(-2px);
  border-color:rgba(216,208,147,.22);
}
.burger:active{ transform:translateY(0); }
.burger:focus{
  outline:none;
  box-shadow:0 10px 0 rgba(0,0,0,.24), var(--focus);
}
.burgerLines{
  display:inline-flex;
  flex-direction:column;
  gap:5px;
}
.burgerLines span{
  display:block;
  width:22px;
  height:2px;
  border-radius:999px;
  background:rgba(255,255,255,.90);
}

/* MOBILE MENU */
.mobileMenu{
  border-top:1px solid var(--line);
  background:rgba(18,18,18,.92);
  backdrop-filter:saturate(1.15) blur(10px);
}
.mobileMenuInner{
  padding:14px var(--gutter) 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mobileLink{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  font-weight:950;
  letter-spacing:.2px;
}
.mobileLink::after{
  content:"→";
  color:var(--primary);
}
.mobileCtas{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:6px;
}

/* HERO TOP IMAGE: FULL WIDTH, NO CROP, CENTERED */
.heroTopMedia{
  width:100%;
  padding:10px 0 0;
}
.heroTopLink{
  display:block;
  width:100%;
}
.heroWide{
  border-radius:0;
  border-top:none;
  border-left:none;
  border-right:none;
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.02);
}
.heroTopMedia .media{
  border-radius:0;
  border-left:none;
  border-right:none;
}

/* Crucial: avoid any perceived "sticking to left" by centering via flex and not cropping */
.heroTopMedia .media{
  display:flex;
  align-items:center;
  justify-content:center;
}
.heroTopMedia img{
  width:100%;
  height:auto;
  max-height:520px;
  object-fit:contain;
  object-position:center;
}

/* HERO */
.hero{
  padding:42px 0 40px;
  position:relative;
}
.hero::before{
  content:"";
  position:absolute;
  inset:-40px 0 auto 0;
  height:250px;
  background:
    radial-gradient(62% 70% at 20% 10%, rgba(216,208,147,.22), transparent 55%),
    radial-gradient(62% 70% at 80% 0%, rgba(216,208,147,.12), transparent 55%);
  pointer-events:none;
}
.heroGrid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:26px;
  align-items:start;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(216,208,147,.22);
  background:rgba(216,208,147,.08);
  color:rgba(255,255,255,.86);
  font-weight:950;
  letter-spacing:.25px;
  font-size:12px;
  margin-bottom:14px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.heroTitle{
  font-size:42px;
  line-height:1.12;
  font-weight:950;
  letter-spacing:-.3px;
  margin-bottom:14px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.brandInline{ color:var(--primary); }
.heroAccent{ color:var(--primary); }

.heroLead{
  color:var(--muted);
  line-height:1.68;
  font-size:15px;
  max-width:66ch;
  margin-bottom:18px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.heroCtas{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.trustRow{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.trustItem{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px 14px 12px;
}
.trustKicker{
  display:block;
  color:rgba(255,255,255,.92);
  font-weight:950;
  font-size:13px;
  margin-bottom:6px;
}
.trustText{
  display:block;
  color:var(--muted2);
  line-height:1.45;
  font-size:12px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}

.heroMedia .mediaCard .media{
  border-radius:0;
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
}
.heroMedia .mediaCard .media img{
  max-height:420px;
  object-fit:contain;
}
.heroMedia .mediaCard{
  border-color:rgba(216,208,147,.18);
}

/* SECTIONS */
.section{ padding:54px 0; }
.sectionHead{ margin-bottom:18px; }
.sectionTitle{
  font-size:30px;
  line-height:1.15;
  font-weight:950;
  letter-spacing:-.2px;
  margin-bottom:10px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.sectionLead{
  color:var(--muted);
  line-height:1.68;
  font-size:15px;
  max-width:84ch;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.sectionCtas{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

/* BENEFITS */
.benefitGrid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}
.benefitCard{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 12px 32px rgba(0,0,0,.34);
}
.benefitTitle{
  font-weight:950;
  font-size:16px;
  margin-bottom:8px;
  letter-spacing:.1px;
}
.benefitText{
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}

/* PROMOS */
.promoGrid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
  align-items:start;
}
.promoBadge{
  margin:14px 0 14px;
  padding:14px 14px;
  border-radius:var(--radius);
  border:1px solid rgba(216,208,147,.22);
  background:linear-gradient(180deg, rgba(216,208,147,.14), rgba(216,208,147,.06));
}
.promoBadgeKicker{
  display:block;
  font-weight:950;
  font-size:12px;
  letter-spacing:.35px;
  color:rgba(255,255,255,.90);
  margin-bottom:8px;
}
.promoBadgeText{
  display:block;
  font-weight:950;
  font-size:16px;
  line-height:1.28;
  color:var(--primary);
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.promoBullets{
  display:grid;
  grid-template-columns:repeat(1,minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}
.promoBullet{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:var(--radius2);
  padding:14px;
}
.promoTitle{
  font-weight:950;
  margin-bottom:6px;
  font-size:15px;
}
.promoText{
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.finePrint{
  margin-top:16px;
  color:rgba(255,255,255,.60);
  line-height:1.6;
  font-size:12px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}

/* STEPS */
.steps{
  list-style:none;
  counter-reset:step;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:10px;
}
.step{
  counter-increment:step;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
}
.stepTitle{
  font-weight:950;
  font-size:15px;
  margin-bottom:8px;
}
.stepTitle::before{
  content:counter(step) ". ";
  color:var(--primary);
}
.stepText{
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.noteBlock{
  margin-top:16px;
  padding:14px 14px;
  border-radius:var(--radius);
  border:1px dashed rgba(216,208,147,.28);
  background:rgba(216,208,147,.06);
  color:rgba(255,255,255,.86);
  line-height:1.68;
  font-size:14px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}

/* SPLIT SECTIONS */
.splitGrid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
  align-items:start;
}
.splitGrid.reverse{ direction:rtl; }
.splitGrid.reverse > *{ direction:ltr; }

.splitCopy p{
  color:var(--muted);
  line-height:1.68;
  font-size:15px;
  margin-top:10px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.featureList{
  margin-top:12px;
  padding-left:18px;
}
.featureList li{
  margin:8px 0;
  color:rgba(255,255,255,.80);
  line-height:1.5;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}

/* SUPPORT */
.supportGrid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:14px;
}
.supportCard{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 12px 32px rgba(0,0,0,.34);
}
.supportTitle{
  font-weight:950;
  font-size:16px;
  margin-bottom:8px;
}
.supportText{
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}

/* FAQ */
.faqGrid{ margin-top:10px; }
.faqItem{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  margin-bottom:12px;
  overflow:hidden;
}
.faqQ{
  cursor:pointer;
  padding:14px 16px;
  font-weight:950;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.faqQ::-webkit-details-marker{ display:none; }
.faqQ::after{
  content:"+";
  color:var(--primary);
  font-size:18px;
  line-height:1;
}
details[open] .faqQ::after{ content:"–"; }

.faqA{ padding:0 16px 14px; }
.faqA p{
  color:var(--muted);
  line-height:1.68;
  font-size:14px;
  margin-top:10px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.inlineLink{
  color:var(--primary);
  font-weight:950;
  text-decoration:underline;
  text-underline-offset:3px;
}

/* FINAL CTA */
.finalCta{
  background:linear-gradient(135deg, rgba(216,208,147,1), rgba(191,184,111,1));
  color:var(--secondary);
  border-top:1px solid rgba(0,0,0,.10);
  border-bottom:1px solid rgba(0,0,0,.10);
}
.finalCtaInner{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
  align-items:center;
}
.finalCtaTitle{
  font-weight:950;
  letter-spacing:-.2px;
  line-height:1.12;
  font-size:30px;
  margin-bottom:10px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.finalCtaAccent{ color:rgba(18,18,18,.98); }
.finalCtaText{
  color:rgba(18,18,18,.86);
  line-height:1.68;
  font-size:15px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.finalCtaButtons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}
.finalCta .btn--primary{
  background:linear-gradient(180deg, rgba(18,18,18,1), rgba(22,22,22,1));
  color:var(--primary);
  border-color:rgba(0,0,0,.18);
  box-shadow:0 12px 0 rgba(18,18,18,.28), 0 18px 40px rgba(0,0,0,.30);
}
.finalCta .btn--primary:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 0 rgba(18,18,18,.34), 0 22px 52px rgba(0,0,0,.34);
}
.finalCta .btn--primary:active{ transform:translateY(0); }
.finalCta .btn--ghost{
  background:rgba(255,255,255,.16);
  border-color:rgba(18,18,18,.22);
  color:rgba(18,18,18,.92);
  box-shadow:0 10px 0 rgba(18,18,18,.14);
}
.finalCta .btn--ghost:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.22);
}
.finalCta .btn--ghost:active{ transform:translateY(0); }

.miniBadges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}
.miniBadge{
  padding:8px 10px;
  border-radius:999px;
  background:rgba(18,18,18,.12);
  border:1px solid rgba(18,18,18,.18);
  font-weight:950;
  font-size:12px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}

/* FOOTER */
.siteFooter{
  background:#0d0d0d;
  border-top:1px solid var(--line);
  padding:44px 0;
}
.footerGrid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  align-items:start;
}
.footerText{
  margin-top:12px;
  color:rgba(255,255,255,.68);
  line-height:1.68;
  font-size:13px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.footerCtas{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}
.footerLinks{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footerLink{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  font-weight:950;
  color:rgba(255,255,255,.86);
  transition:transform .14s ease, border-color .14s ease, background .14s ease;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.footerLink:hover{
  transform:translateY(-2px);
  border-color:rgba(216,208,147,.22);
  background:rgba(216,208,147,.06);
}
.footerLink:active{ transform:translateY(0); }

.copyright{
  margin-top:12px;
  color:rgba(255,255,255,.46);
  font-size:12px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}

/* ICON BUTTON */
.iconBtn{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.90);
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 0 rgba(0,0,0,.24);
  transition:transform .14s ease, box-shadow .14s ease, background .14s ease, border-color .14s ease;
}
.iconBtn:hover{
  transform:translateY(-2px);
  border-color:rgba(216,208,147,.22);
}
.iconBtn:active{ transform:translateY(0); }
.iconBtn:focus{
  outline:none;
  box-shadow:0 10px 0 rgba(0,0,0,.24), var(--focus);
}

/* CATFISH */
.catfish{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:220;
  padding:12px;
  padding-bottom:calc(12px + env(safe-area-inset-bottom));
  pointer-events:none;
}
.catfishInner{
  pointer-events:auto;
  width:min(var(--container), calc(100% - 24px));
  max-width:calc(100% - 24px);
  margin:0 auto;
  background:rgba(18,18,18,.92);
  backdrop-filter:saturate(1.15) blur(10px);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.catfishText{
  margin:0;
  font-weight:950;
  color:var(--primary);
  line-height:1.25;
  font-size:13px;
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.catfishActions{
  display:flex;
  align-items:center;
  gap:8px;
  flex:0 0 auto;
}
.catfishActions .btn{
  min-height:44px;
  padding:10px 14px;
  border-radius:14px;
  width:auto;
  white-space:nowrap;
}

/* EXIT MODAL */
.exitModal{
  position:fixed;
  inset:0;
  z-index:260;
}
.exitOverlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(2px);
}
.exitDialog{
  position:relative;
  width:min(520px, calc(100% - 28px));
  margin:10vh auto;
  background:rgba(18,18,18,.94);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  box-shadow:0 22px 60px rgba(0,0,0,.62);
  padding:18px;
}
.exitTitle{
  font-weight:950;
  font-size:18px;
  margin:6px 0 10px;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.exitText{
  font-weight:950;
  color:var(--primary);
  line-height:1.25;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.exitActions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}
.exitClose{ float:right; }

/* TABLE SAFETY */
table{
  width:100%;
  border-collapse:collapse;
  table-layout:fixed;
}
th,td{
  padding:10px;
  border:1px solid var(--line);
  vertical-align:top;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}

/* RESPONSIVE */
@media (max-width: 1040px){
  .siteHeader .container{ max-width:860px; }
  .nav{
    justify-content:flex-start;
    max-width:420px;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:thin;
    padding:0 4px;
    mask-image:linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }
  .nav::-webkit-scrollbar{ height:6px; }
  .nav::-webkit-scrollbar-thumb{ background:rgba(255,255,255,.16); border-radius:999px; }
}

@media (max-width: 900px){
  .siteHeader .container{ max-width:var(--container); }
  .brand{ max-width:60%; }

  .heroGrid{ grid-template-columns:1fr; gap:18px; }
  .trustRow{ grid-template-columns:1fr; }

  .promoGrid,
  .splitGrid,
  .finalCtaInner{
    grid-template-columns:1fr;
    gap:16px;
  }
  .benefitGrid,
  .supportGrid,
  .footerGrid{
    grid-template-columns:1fr;
    gap:12px;
  }
  .steps{ grid-template-columns:1fr; }

  .heroTopMedia img{
    max-height:420px;
    object-fit:contain;
  }
}

@media (max-width: 720px){
  .nav{ display:none; }
  .burger{ display:inline-flex; align-items:center; justify-content:center; }
  .headerActions .btn{ display:none; }
  .mobileCtas{ grid-template-columns:1fr; }

  .heroTitle{ font-size:36px; }
  .sectionTitle{ font-size:26px; }

  .heroCtas,
  .sectionCtas,
  .finalCtaButtons,
  .footerCtas{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
  }
  .btn{ width:100%; }

  .catfishInner{
    align-items:stretch;
    flex-direction:column;
    gap:10px;
  }
  .catfishActions{
    width:100%;
    justify-content:space-between;
  }
  .catfishActions .btn{ width:100%; white-space:normal; }

  .heroTopMedia img{
    max-height:320px;
    object-fit:contain;
  }
}

@media (max-width: 420px){
  .heroTitle{ font-size:32px; }
  .brandName{ font-size:16px; }
  .brandLogo{ padding:7px; }
  .brandLogo img{ max-height:40px; }

  .heroTopMedia img{
    max-height:280px;
    object-fit:contain;
  }
}
.cratosroyalbet-betting{
  padding: 54px 0;
  color: var(--text, #fff);
}

.cratosroyalbet-betting__head{
  margin-bottom: 1.75rem;
}

.cratosroyalbet-betting__title{
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 950;
  letter-spacing: -.2px;
  line-height: 1.18;
  margin: 0 0 14px;
  color: var(--text, #fff);
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.cratosroyalbet-betting__lead{
  background: linear-gradient(180deg, rgba(216,208,147,.10), rgba(216,208,147,.04));
  border: 1px solid rgba(216,208,147,.22);
  border-left: 3px solid var(--primary, #D8D093);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 0;
  color: var(--muted, rgba(255,255,255,.72));
  line-height: 1.7;
  font-size: 15px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cratosroyalbet-betting__lead strong{
  color: var(--primary, #D8D093);
  font-weight: 950;
}

.cratosroyalbet-betting__block{
  margin: 1.6rem 0;
  padding: 18px 18px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--line, rgba(255,255,255,.10));
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,.34);
}

.cratosroyalbet-betting__h3{
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 950;
  color: var(--text, #fff);
  margin: 0 0 .85rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--line, rgba(255,255,255,.10));
  letter-spacing: -.1px;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cratosroyalbet-betting__h4{
  font-size: 15px;
  font-weight: 950;
  color: var(--primary, #D8D093);
  margin: 1.1rem 0 .45rem;
  letter-spacing: .1px;
}

.cratosroyalbet-betting__block p{
  margin: .55rem 0 .85rem;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted, rgba(255,255,255,.72));
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.cratosroyalbet-betting__block p strong{
  color: var(--text, #fff);
}

.cratosroyalbet-betting__list{
  list-style: none;
  margin: .5rem 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.cratosroyalbet-betting__list li{
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted, rgba(255,255,255,.72));
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cratosroyalbet-betting__list li::before{
  content: "▸";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--primary, #D8D093);
  font-weight: 700;
}

.cratosroyalbet-betting__list li strong{
  color: var(--text, #fff);
  font-weight: 950;
}

.cratosroyalbet-betting__steps{
  margin: .5rem 0 1rem;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  list-style: decimal;
}

.cratosroyalbet-betting__steps li{
  font-size: 14px;
  line-height: 1.7;
  padding-left: 6px;
  color: var(--muted, rgba(255,255,255,.72));
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cratosroyalbet-betting__steps li::marker{
  color: var(--primary, #D8D093);
  font-weight: 950;
}

.cratosroyalbet-betting__steps li strong{
  color: var(--text, #fff);
}

.cratosroyalbet-betting__cta{
  background: linear-gradient(135deg, rgba(216,208,147,.14), rgba(216,208,147,.04));
  border-color: rgba(216,208,147,.32);
}

.cratosroyalbet-betting__cta .cratosroyalbet-betting__h3{
  border-bottom-color: rgba(216,208,147,.30);
}

.cratosroyalbet-betting__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: .75rem;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 950;
  letter-spacing: .2px;
  color: var(--secondary, #121212);
  background: linear-gradient(180deg, rgba(216,208,147,1), rgba(191,184,111,1));
  border: 2px solid rgba(0,0,0,.12);
  text-decoration: none;
  box-shadow: 0 12px 0 rgba(216,208,147,.24), 0 18px 42px rgba(0,0,0,.38);
  transition: transform .14s ease, box-shadow .14s ease, filter .14s ease;
}

.cratosroyalbet-betting__btn:hover{
  transform: translateY(-2px);
  filter: saturate(1.04);
  box-shadow: 0 14px 0 rgba(216,208,147,.30), 0 22px 54px rgba(0,0,0,.46);
}

.cratosroyalbet-betting__btn:active{
  transform: translateY(0);
  box-shadow: 0 10px 0 rgba(216,208,147,.20), 0 16px 36px rgba(0,0,0,.40);
}

@media (min-width: 720px){
  .cratosroyalbet-betting__block{
    padding: 22px 24px 24px;
  }
  .cratosroyalbet-betting__block p,
  .cratosroyalbet-betting__list li,
  .cratosroyalbet-betting__steps li{
    font-size: 14.5px;
  }
}

@media (min-width: 1024px){
  .cratosroyalbet-betting{
    padding: 64px 0;
  }
  .cratosroyalbet-betting__block p,
  .cratosroyalbet-betting__list li,
  .cratosroyalbet-betting__steps li{
    font-size: 15px;
  }
  .cratosroyalbet-betting__h4{
    font-size: 16px;
  }
}

@media (max-width: 720px){
  .cratosroyalbet-betting__btn{
    width: 100%;
  }
}
