:root {
  color-scheme: dark;
  --black: #050505;
  --white: #f8f8f6;
  --muted: #c2c2c0;
  --line: #3f3f3d;
  --gold: #d9a450;
  --green: #18d83b;
  --green-dark: #0e8e2a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  line-height: 1.42;
}

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.page-shell {
  width: min(calc(100% - 32px), 600px);
  margin: 0 auto;
  padding: max(10px, env(safe-area-inset-top)) max(0px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom));
}

.top-actions, .hero-actions { display: grid; gap: 6px; }
.action-button {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  color: #111;
  cursor: pointer;
  font-size: 12px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.action-button:hover, .action-button:focus-visible { background: #dededb; transform: translateY(-1px); }
.action-button:focus-visible, .whatsapp-button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.hero { padding-top: 10px; text-align: center; }
.hero-image-wrap, .brand-image-wrap { position: relative; overflow: hidden; border-radius: 11px; }
.hero-image-wrap { aspect-ratio: 3 / 1; min-height: 125px; max-height: 220px; }
.hero-image { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.2) brightness(.88); }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6, 20, 41, .5), transparent 50%, rgba(40, 15, 75, .35)); }
.hero-badge {
  position: absolute; z-index: 1; left: 50%; bottom: -25px; transform: translateX(-50%);
  display: grid; place-items: center; width: 58px; height: 58px; border: 3px solid #5319b5; border-radius: 50%; background: radial-gradient(circle, #28105f, #0d051e 70%); box-shadow: 0 0 0 3px #8a48e4;
}
.hero-badge span { color: #f3ba37; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 18px; }
.hero h1 { margin: clamp(27px, 5vw, 34px) 0 8px; font-size: clamp(16px, 3.6vw, 20px); font-weight: 700; }

.divider { height: 1px; margin: 18px 0 clamp(110px, 22vw, 190px); background: var(--line); }
.content { font-size: 12px; }
.brand-image-wrap { aspect-ratio: 1 / 1; max-height: 390px; background: #131815; }
.brand-image { width: 100%; height: 100%; object-fit: cover; filter: brightness(.72) saturate(.75); }
.brand-image-wrap::after { content: ""; position: absolute; inset: 30% 0 0; background: linear-gradient(transparent, #050505); }
.brand-overlay { position: absolute; z-index: 1; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--gold); text-shadow: 0 2px 12px #000; }
.brand-mark { font-family: "Space Grotesk", sans-serif; font-size: clamp(60px, 13vw, 78px); font-weight: 500; line-height: .85; }
.brand-name { margin-top: 17px; font-family: "Space Grotesk", sans-serif; font-size: clamp(20px, 5vw, 28px); letter-spacing: clamp(3px, 1vw, 5px); }
.brand-tagline { margin-top: 10px; color: #9a794d; font-size: clamp(8px, 1.8vw, 9px); letter-spacing: clamp(2px, .7vw, 3px); }

.content p { margin: 14px 0; color: #f0f0ef; overflow-wrap: anywhere; }
.intro-copy { margin-top: 19px !important; }
.content h2, .footer h2 { margin: 19px 0 7px; text-align: center; font-size: clamp(15px, 3.5vw, 17px); line-height: 1.25; }
.content ul { margin: 8px 0 20px; padding-left: 18px; }
.content li { padding: 2px 0; }
.content li strong, .content li span { display: block; }
.content li strong { font-weight: 500; }
.content li span { color: var(--muted); }

.footer { text-align: center; }
.footer .divider { margin: 12px 0 16px; }
.footer p { margin: 0 auto 12px; max-width: 350px; }
.whatsapp-button { display: flex; align-items: center; justify-content: center; gap: 5px; min-height: 44px; border-radius: 7px; background: linear-gradient(#3bef5c, #08bd2e); color: white; font-size: 11px; text-decoration: none; box-shadow: inset 0 1px rgba(255,255,255,.22); }
.whatsapp-button:hover, .whatsapp-button:focus-visible { filter: brightness(1.1); }
.footer small { display: block; margin: 7px 0 12px; font-size: 9px; }

@media (max-width: 360px) {
  .page-shell { width: min(calc(100% - 20px), 600px); }
  .brand-image-wrap { aspect-ratio: 4 / 5; }
  .content ul { padding-left: 16px; }
}

@media (max-width: 420px) {
  .hero-image-wrap { aspect-ratio: auto; height: clamp(125px, 32vw, 140px); }
}

@media (min-width: 560px) {
  .top-actions, .hero-actions { gap: 8px; }
  .hero-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 700px) {
  body { font-size: 14px; }
  .page-shell { padding-top: 16px; }
  .content { font-size: 13px; }
}

@media (min-width: 900px) {
  .page-shell { width: min(calc(100% - 48px), 720px); }
  .top-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-image-wrap { max-height: 240px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
