:root{
  /* Drink.Chat brand: deep night + gold. The legacy --red token is kept as an
     alias (now gold) so every page that references it inherits the new accent. */
  --gold:#E3A81B;
  --gold-soft:#F4C95B;
  --gold-text:#1a1206;
  --dark:#120d1a;
  --dark-2:#1b1326;
  --dark-3:#241a32;
  --red:#E3A81B;
  --red-dark:#C28A12;
  --pink-nav:#0e0a16;
  --pink-card:#1f1626;
  --cream:#F4F1ED;
  --ink:#1d1d1f;
  --muted:#5b5b60;
  --pill:#cfe0ea;
  --maxw:1200px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',system-ui,sans-serif;
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  line-height:1.55;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 24px}

h1,h2,h3{font-family:'Poppins',sans-serif;line-height:1.1;letter-spacing:-.01em}

/* BUTTONS */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'Poppins',sans-serif;font-weight:600;font-size:.95rem;
  border:none;cursor:pointer;border-radius:40px;
  padding:11px 22px;transition:transform .15s ease,box-shadow .15s ease,background .15s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-red{background:var(--gold);color:var(--gold-text);font-weight:700;box-shadow:0 6px 18px rgba(227,168,27,.32)}
.btn-red:hover{background:var(--gold-soft)}
.btn-lg{padding:13px 26px;font-size:1rem}
.btn-pill{background:var(--pill);color:#16384c;font-weight:600;box-shadow:none}
.btn-pill:hover{background:#bcd4e2}
.btn-white{background:#fff;color:var(--ink);text-align:center;line-height:1.25;padding:14px 30px;box-shadow:0 8px 22px rgba(0,0,0,.18)}

/* NAV */
#nav{position:sticky;top:0;z-index:50;background:var(--pink-nav)}
.nav-inner{display:flex;align-items:center;gap:36px;height:62px}
.brand{display:flex;align-items:center;gap:10px;font-family:'Poppins',sans-serif;font-weight:700;font-size:1.35rem;color:var(--red)}
.brand img{border-radius:50%}
.nav-links{display:flex;gap:30px;margin-left:8px}
.nav-links a{font-weight:500;color:var(--red);font-size:.98rem}
.nav-links a:hover{opacity:.7}
.nav-actions{margin-left:auto;display:flex;align-items:center;gap:14px}
/* .nav-toggle (hamburger) + mobile dropdown live in NAV_CSS, inlined per page */

/* HERO */
.hero{position:relative;overflow:hidden;background:var(--cream)}
.hero-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
}
.hero-inner{position:relative;z-index:2;min-height:560px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:30px;padding-top:46px;padding-bottom:46px}
.hero-cta{flex:none}

/* HERO PHONE — WhatsApp mockup */
.hero-phone{flex:none;display:flex;justify-content:center;perspective:1400px}
/* delayed entrance: phone fades/rises in ~3s after page load.
   .hero-reveal is added by JS; without JS the phone is visible by default. */
.hero-phone.hero-delayed{opacity:0;transform:translateY(18px)}
.hero-phone.hero-delayed.hero-reveal{opacity:1;transform:translateY(0);transition:opacity .6s ease,transform .6s ease}
.phone-shell{
  position:relative;
  width:286px;background:#050505;border-radius:46px;
  border:1px solid #2b2b2b;padding:9px;
  box-shadow:0 0 0 2px #000,inset 0 0 3px rgba(255,255,255,.12),0 30px 64px rgba(0,0,0,.38);
  animation:phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
/* side buttons (right edge): volume rocker + power */
.phone-shell::before{content:"";position:absolute;right:-3px;top:104px;width:3px;height:42px;border-radius:0 3px 3px 0;background:#1a1a1a}
.phone-shell::after{content:"";position:absolute;right:-3px;top:158px;width:3px;height:66px;border-radius:0 3px 3px 0;background:#1a1a1a}
.phone-screen{position:relative;background:#0b141a;border-radius:38px;overflow:hidden}
/* hole-punch camera, centered over the status bar */
.phone-cam{position:absolute;top:8px;left:50%;transform:translateX(-50%);width:9px;height:9px;background:#000;border-radius:50%;z-index:6;box-shadow:inset 0 0 0 1px rgba(255,255,255,.14)}
.wa-status-bar{background:#075e54;padding:6px 16px 5px;display:flex;align-items:center;justify-content:space-between;font-size:.58rem;font-weight:600;color:#fff}
.wa-status-icons{display:flex;align-items:center;gap:4px}
.wa-head{background:#075e54;padding:7px 12px 7px 8px;display:flex;align-items:center;gap:8px}
.wa-back{font-size:1.15rem;color:#fff;line-height:1;margin-right:-1px}
.wa-ava{width:34px;height:34px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;flex-shrink:0;overflow:hidden}
.wa-ava img{width:100%;height:100%;object-fit:cover;display:block}
.wa-info{flex:1;min-width:0}
.wa-name{font-size:.82rem;font-weight:700;color:#fff;line-height:1.2}
.wa-stat{font-size:.62rem;color:rgba(255,255,255,.85);display:flex;align-items:center;gap:4px;margin-top:1px}
.wa-online-dot{width:6px;height:6px;border-radius:50%;background:#aef5c8;animation:pulseDot 2s ease-in-out infinite}
@keyframes pulseDot{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(.7)}}
.wa-head-icons{display:flex;gap:16px;color:#fff;font-size:.85rem}
.wa-body{
  padding:10px 8px 6px;display:flex;flex-direction:column;gap:4px;
  min-height:400px;max-height:400px;overflow-y:auto;
  background-color:#e4f3e4;
  background-image:radial-gradient(circle at 1px 1px,rgba(0,80,40,.04) 1px,transparent 0);
  background-size:24px 24px;
  scrollbar-width:none;-ms-overflow-style:none;
}
.wa-body::-webkit-scrollbar{width:0;height:0}
.wa-date-chip{align-self:center;background:rgba(17,27,33,.85);color:#8696a0;font-size:.6rem;font-weight:600;padding:4px 10px;border-radius:100px;margin:2px 0 4px}
.wa-msg{max-width:80%;padding:6px 10px 5px;font-size:.72rem;line-height:1.5;position:relative;word-break:break-word}
/* default (no-JS): all bubbles visible. When JS drives the animation it adds
   .js-on to the container; bubbles stay out of flow (display:none) until shown,
   so the chat grows from the top and the first message is never pushed
   off-screen by an early scroll-to-bottom. */
#hero-chat.js-on .wa-msg{display:none}
#hero-chat.js-on .wa-msg.show{display:block;animation:waMsgIn .3s ease}
@keyframes waMsgIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}
.wa-msg-user{background:#005c4b;border-radius:8px 8px 0 8px;align-self:flex-end;color:#e9edef;margin-right:4px}
.wa-msg-ai{background:#fff;border-radius:0 8px 8px 8px;align-self:flex-start;color:#111b21;margin-left:4px;box-shadow:0 1px 1px rgba(0,0,0,.08)}
.wa-msg-img{padding:4px;max-width:70%}
.wa-msg-img img{width:100%;max-height:200px;object-fit:cover;object-position:top;display:block;border-radius:6px}
.wa-msg-success{background:#0d2318;border:1px solid rgba(37,211,102,.22);border-radius:0 8px 8px 8px;align-self:flex-start;color:#e9edef;margin-left:4px;max-width:88%}
.wa-msg-success .wa-success-header{color:#25D366;font-weight:700;font-size:.72rem;margin-bottom:4px}
.wa-msg-success .wa-success-body{color:#a8c5a0;font-size:.68rem;line-height:1.7}
.wa-msg-success .wa-success-body strong{color:#e9edef}
.wa-msg-success .wa-save{color:#e9edef;font-weight:700}
.wa-msg-success .wa-reward{color:#25D366;font-weight:700}
.wa-typing{display:flex;align-items:center;gap:3px;padding:9px 13px;background:#fff;border-radius:0 8px 8px 8px;align-self:flex-start;width:fit-content;margin-left:4px;box-shadow:0 1px 1px rgba(0,0,0,.08)}
.wa-typing span{width:5px;height:5px;border-radius:50%;background:#8696a0;display:block;animation:waBounce 1.2s ease-in-out infinite}
.wa-typing span:nth-child(2){animation-delay:.2s}
.wa-typing span:nth-child(3){animation-delay:.4s}
@keyframes waBounce{0%,60%,100%{transform:translateY(0);opacity:.4}30%{transform:translateY(-4px);opacity:1}}
.wa-input-bar{background:#f0f2f5;padding:7px 10px;display:flex;align-items:center;gap:8px}
.wa-input-field{flex:1;display:flex;align-items:center;gap:8px;background:#fff;border-radius:22px;padding:8px 12px;font-size:.68rem;color:#8a9aa5;box-shadow:0 1px 1px rgba(0,0,0,.05)}
.wa-input-field svg,.wa-head-icons svg,.wa-send-btn svg{display:block;flex-shrink:0}
.wa-input-field>span{flex:1}
.wa-input-icons{display:flex;align-items:center;gap:10px;color:#8a9aa5;flex-shrink:0;margin-left:auto}
.wa-send-btn{width:34px;height:34px;border-radius:50%;background:#00a884;display:flex;align-items:center;justify-content:center;font-size:.8rem;color:#fff;flex-shrink:0}

/* INSTANT */
.instant{background:var(--cream);padding:70px 0}
.instant-inner{display:flex;align-items:center;gap:40px}
.instant-text{flex:1}
.instant-text h2{font-size:2.1rem;font-weight:600;margin-bottom:22px}
.instant-text p{color:var(--muted);margin-bottom:16px;max-width:430px;font-size:.96rem}
.instant-text .btn{margin-top:8px}
.instant-img{flex:1;display:flex;justify-content:flex-end}
.instant-img img{max-width:480px;width:100%}

/* FEATURES */
.features{background:var(--cream);padding:30px 0 70px}
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.feature-card{
  background:#fff;border-radius:14px;padding:24px;
  box-shadow:0 12px 30px rgba(0,0,0,.06);
  display:flex;flex-direction:column;
}
.feature-img{margin-bottom:22px}
.feature-img img{width:100%;aspect-ratio:16/10;object-fit:cover;
  border-radius:38% 62% 55% 45% / 45% 38% 62% 55%;
  animation:blobMorph 12s ease-in-out infinite}
/* stagger each card so they morph out of sync (organic, melting feel) */
.feature-card:nth-child(2) .feature-img img{animation-duration:15s;animation-delay:-3s}
.feature-card:nth-child(3) .feature-img img{animation-duration:18s;animation-delay:-7s}
/* continuously morphing soft "blob" outline — always rounded, never a plain box */
@keyframes blobMorph{
  0%,100%{border-radius:38% 62% 55% 45% / 45% 38% 62% 55%}
  20%{border-radius:60% 40% 45% 55% / 55% 48% 52% 45%}
  40%{border-radius:50% 50% 62% 38% / 40% 60% 40% 60%}
  60%{border-radius:45% 55% 40% 60% / 62% 42% 58% 38%}
  80%{border-radius:58% 42% 52% 48% / 48% 58% 42% 52%}
}
@media (prefers-reduced-motion: reduce){
  .feature-img img,.how-img img{animation:none}
}
.feature-card h3{font-size:1.4rem;font-weight:600;margin-bottom:14px}
.feature-card p{color:var(--muted);font-size:.9rem;margin-bottom:12px}
.feature-btn{align-self:flex-start;margin-top:auto}

/* DISCOUNT */
.discount{position:relative;min-height:440px;display:flex;align-items:center;justify-content:center;overflow:hidden}
.discount-bg{position:absolute;inset:0;background-size:cover;background-position:center}
.discount-overlay{
  position:relative;z-index:2;text-align:center;color:#fff;
  background:rgba(20,20,20,.35);backdrop-filter:blur(1px);
  border-radius:8px;padding:34px 40px;max-width:760px;margin:0 24px;
}
.discount-overlay h2{font-size:2.3rem;font-weight:600;margin-bottom:16px;text-shadow:0 2px 12px rgba(0,0,0,.4)}
.discount-overlay p{font-size:.95rem;line-height:1.6;text-shadow:0 1px 6px rgba(0,0,0,.5)}

/* HOW IT WORKS */
.how{background:var(--cream);padding:70px 0}
.how-inner{display:flex;align-items:center;gap:54px}
.how-img{flex:1}
.how-img img{width:100%;object-fit:cover;
  border-radius:55% 45% 48% 52% / 52% 55% 45% 48%;
  animation:blobMorph 16s ease-in-out infinite;animation-delay:-5s}
.how-text{flex:1}
.how-text h2{font-size:2.1rem;font-weight:600;margin-bottom:26px}
.how-steps{list-style:none;margin-bottom:26px}
.how-steps li{color:var(--muted);font-size:.95rem;margin-bottom:16px;max-width:430px}
.how-steps strong{color:var(--ink)}

/* CTA */
.cta{background:linear-gradient(105deg,#2a0f08 0%,#5a1410 45%,#3a0d09 100%);color:#fff;padding:70px 0}
.cta-inner{display:flex;align-items:center;justify-content:center;gap:60px;flex-wrap:wrap}
.cta-text{max-width:440px}
.cta-text h2{font-size:1.9rem;font-weight:600;margin-bottom:10px}
.cta-text p{color:rgba(255,255,255,.7);font-size:.95rem}

/* FOOTER */
.site-footer{background:#1a1a1c;color:#cfcfd3;padding:28px 0}
.footer-inner{display:flex;align-items:center;gap:24px;flex-wrap:wrap}
.site-footer .brand{color:#fff;font-size:1.1rem}
.footer-links{display:flex;gap:22px;flex-wrap:wrap;margin-left:8px}
.footer-links a{font-size:.85rem;color:#b5b5bb}
.footer-links a:hover{color:#fff}
.footer-copy{margin-left:auto;font-size:.8rem;color:#7d7d83}

/* RESPONSIVE */
@media (max-width:900px){
  /* nav hamburger + dropdown handled by inlined NAV_CSS (see switcher.mjs) */
  .features-grid{grid-template-columns:1fr;max-width:480px;margin:0 auto}
  .instant-inner,.how-inner{flex-direction:column;text-align:left;align-items:stretch}
  .instant-img{justify-content:center}
  .how-img{order:-1}
  .cta-inner{flex-direction:column;gap:28px;text-align:center}
  .footer-copy{margin-left:0;width:100%}
}
@media (max-width:520px){
  .nav-inner{gap:14px}
  .discount-overlay h2{font-size:1.7rem}
  .phone-shell{width:248px}
}

/* =====================================================================
   DRINK.CHAT — dark / gold landing theme (home page only: body.d-home)
   The B2C drink-sponsor gamification page from the design PDF.
   ===================================================================== */
body.d-home{background:var(--dark);color:#ECE6F2}
.d-home #nav{background:#0c0813;border-bottom:1px solid rgba(227,168,27,.18)}
.d-home .brand{color:#fff;letter-spacing:-.02em}
.d-home .brand b{color:var(--gold)}
.d-home .nav-links a{color:#d8cfe6}
.d-home .nav-links a:hover{color:var(--gold);opacity:1}
.d-home .nav-toggle{color:var(--gold)}

/* Shared dark/gold base for the inner content pages (body.d-doc). Page-specific
   layout lives in each page's inline <style>; this guarantees a dark canvas and
   a nav that matches the home page even before those rules apply. */
body.d-doc{background:var(--dark);color:#E6E1EF}
.d-doc #nav{background:#0c0813;border-bottom:1px solid rgba(227,168,27,.18)}
.d-doc .brand{color:#fff}
.d-doc .brand b{color:var(--gold)}
.d-eyebrow{display:inline-block;font-family:'Poppins',sans-serif;font-weight:600;font-size:.8rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);margin-bottom:14px}
.d-home h1,.d-home h2,.d-home h3{color:#fff}
.gold{color:var(--gold)}

/* gold "check" bullet lists */
.d-list{list-style:none;margin:0;padding:0}
.d-list li{position:relative;padding-left:34px;margin-bottom:14px;color:#d8d0e2;font-size:1.02rem;line-height:1.5}
.d-list li::before{content:"";position:absolute;left:0;top:2px;width:22px;height:22px;border-radius:50%;
  background:radial-gradient(circle at 30% 30%,var(--gold-soft),var(--gold));
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat;
  box-shadow:0 0 0 1px rgba(227,168,27,.35)}

/* shared gold radial-ray backdrop used by several sections */
.d-rays{position:absolute;inset:0;overflow:hidden;pointer-events:none;z-index:0}
.d-rays::before{content:"";position:absolute;top:50%;left:50%;width:160%;height:160%;transform:translate(-50%,-50%);
  background:
    repeating-conic-gradient(from 0deg at 50% 50%,rgba(227,168,27,.08) 0deg,rgba(227,168,27,0) 4deg 14deg);
  -webkit-mask:radial-gradient(circle at 50% 50%,#000 0%,transparent 70%);
  mask:radial-gradient(circle at 50% 50%,#000 0%,transparent 70%)}

/* ---- HERO ---- */
.d-hero{position:relative;overflow:hidden;background:
  radial-gradient(1100px 520px at 80% -10%,rgba(227,168,27,.20),transparent 60%),
  radial-gradient(900px 600px at 0% 110%,rgba(120,60,160,.18),transparent 55%),
  var(--dark)}
.d-hero-inner{position:relative;z-index:2;display:flex;align-items:center;gap:56px;
  min-height:600px;padding:70px 0}
.d-hero-text{flex:1;max-width:560px}
.d-hero-text h1{font-size:3.05rem;font-weight:800;line-height:1.05;margin-bottom:8px}
.d-hero-kicker{display:block;font-size:1.45rem;font-weight:700;color:var(--gold);
  font-family:'Poppins',sans-serif;margin-bottom:18px;letter-spacing:-.01em}
.d-hero-text p{color:#cabfd9;font-size:1.08rem;line-height:1.6;margin:18px 0 30px;max-width:480px}
.d-hero-phone{flex:none}

/* ---- generic dark split section ---- */
.d-split{position:relative;overflow:hidden;padding:84px 0}
.d-split:nth-of-type(even){background:var(--dark-2)}
.d-split-inner{position:relative;z-index:2;display:flex;align-items:center;gap:56px}
.d-split-text{flex:1}
.d-split-text h2{font-size:2.3rem;font-weight:700;margin-bottom:18px}
.d-split-text p{color:#cabfd9;font-size:1.05rem;line-height:1.65;margin-bottom:26px;max-width:480px}
.d-split-media{flex:1;display:flex;justify-content:center;align-items:center;position:relative;z-index:2}

/* drink "glass" emoji medallion + WhatsApp badge collage */
.d-glasses{position:relative;width:340px;height:300px;display:flex;align-items:center;justify-content:center}
.d-glass{position:absolute;display:flex;align-items:center;justify-content:center;
  border-radius:24px;background:linear-gradient(160deg,#2a2036,#160f20);
  border:1px solid rgba(227,168,27,.28);box-shadow:0 24px 60px rgba(0,0,0,.5);font-size:0}
.d-glass span{font-size:88px;line-height:1;filter:drop-shadow(0 6px 10px rgba(0,0,0,.5))}
.d-glass-1{width:190px;height:210px;left:18px;top:30px;transform:rotate(-6deg)}
.d-glass-2{width:140px;height:160px;right:18px;top:96px;transform:rotate(7deg)}
.d-wa-badge{position:absolute;left:50%;bottom:0;transform:translateX(-50%);
  width:74px;height:74px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;
  box-shadow:0 14px 34px rgba(37,211,102,.45);z-index:3}
.d-wa-badge svg{width:44px;height:44px;fill:#fff}

/* "And The Winner is" gold medallion */
.d-medallion{width:300px;height:300px;border-radius:50%;display:flex;align-items:center;justify-content:center;text-align:center;
  background:radial-gradient(circle at 50% 38%,#3a2c12,#0f0a17 72%);
  position:relative;box-shadow:0 0 0 2px rgba(227,168,27,.5),0 30px 70px rgba(0,0,0,.55)}
.d-medallion::before{content:"";position:absolute;inset:14px;border-radius:50%;border:2px dashed rgba(227,168,27,.55)}
.d-medallion span{font-family:'Poppins',sans-serif;font-weight:800;font-size:2.05rem;line-height:1.08;
  color:var(--gold);text-shadow:0 2px 10px rgba(0,0,0,.6);padding:0 30px}
/* "And The Winner is" image badge (replaces the CSS medallion) */
.d-winner-img{width:320px;max-width:100%;height:auto;display:block;filter:drop-shadow(0 22px 54px rgba(0,0,0,.6))}
/* benefits section sits on solid black */
#benefits{background:#000}

/* ---- SAFETY (3 cards) ---- */
.d-safe{position:relative;overflow:hidden;background:var(--dark);padding:84px 0;text-align:center}
.d-safe>.container{position:relative;z-index:2}
.d-safe h2{font-size:2.2rem;font-weight:700;margin-bottom:46px}
.d-safe-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.d-card{background:linear-gradient(165deg,var(--dark-3),#160f20);border:1px solid rgba(227,168,27,.22);
  border-radius:18px;padding:34px 26px;text-align:center;transition:transform .18s ease,border-color .18s ease}
.d-card:hover{transform:translateY(-4px);border-color:rgba(227,168,27,.55)}
.d-card-ico{width:64px;height:64px;margin:0 auto 20px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:30px;background:radial-gradient(circle at 30% 30%,rgba(244,201,91,.25),rgba(227,168,27,.12));
  border:1px solid rgba(227,168,27,.4)}
.d-card p{color:#cabfd9;font-size:1rem;line-height:1.55;margin:0}

/* ---- CONTACT FORM ---- */
.d-contact{position:relative;overflow:hidden;padding:84px 0 96px;background:
  radial-gradient(900px 500px at 100% 0%,rgba(227,168,27,.16),transparent 55%),var(--dark-2)}
.d-contact>.container{position:relative;z-index:2;max-width:760px}
.d-contact h2{font-size:2.15rem;font-weight:700;text-align:center;margin-bottom:38px}
.d-form{display:grid;gap:18px}
.d-field label{display:block;font-size:.9rem;font-weight:600;color:#cabfd9;margin-bottom:7px}
.d-field .req{color:var(--gold)}
.d-input,.d-phone input{width:100%;background:#0f0a17;border:1px solid rgba(227,168,27,.28);border-radius:12px;
  padding:14px 16px;color:#fff;font-family:'Inter',sans-serif;font-size:1rem;transition:border-color .15s,box-shadow .15s}
.d-input:focus,.d-phone input:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(227,168,27,.18)}
.d-input::placeholder,.d-phone input::placeholder{color:#6f6580}
.d-phone{display:flex;gap:10px}
.d-phone .d-cc{flex:none;width:90px;text-align:center;color:var(--gold);font-weight:700;background:#0f0a17;
  border:1px solid rgba(227,168,27,.28);border-radius:12px;padding:14px 0}
.d-form .btn-red{justify-self:center;margin-top:8px;padding:14px 40px;font-size:1.05rem}

@media (max-width:900px){
  .d-hero-inner,.d-split-inner{flex-direction:column;text-align:left;gap:40px}
  .d-hero-text,.d-split-text{max-width:none}
  .d-split:nth-of-type(even) .d-split-media{order:-1}
  .d-safe-grid{grid-template-columns:1fr;max-width:420px;margin:0 auto}
  .d-hero-text h1{font-size:2.4rem}
}
@media (max-width:520px){
  .d-hero-text h1{font-size:2rem}
  .d-medallion{width:240px;height:240px}
  .d-medallion span{font-size:1.6rem}
  .d-glasses{width:280px}
}
