:root {
  --background: #05080c;
  --panel: #080d14;
  --panel-light: #101722;
  --gold: #d7a435;
  --gold-light: #ffe08a;
  --text: #f7f4ec;
  --muted: #c6c3bb;
  --border: rgba(227, 177, 67, 0.78);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 50% 18%, rgba(215, 164, 53, 0.12), transparent 28rem),
    linear-gradient(180deg, #080b10 0%, #030507 100%);
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.deal-card {
  position: relative;
  width: min(100%, 620px);
  overflow: hidden;
  padding: 28px 34px 24px;
  text-align: center;
  border: 2px solid var(--border);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.035), transparent 30%),
    linear-gradient(180deg, #0c121b 0%, #070b10 100%);
  box-shadow:
    0 0 0 5px rgba(215, 164, 53, 0.07),
    0 24px 70px rgba(0,0,0,0.58),
    inset 0 0 30px rgba(215, 164, 53, 0.05);
}

.deal-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(255, 218, 129, 0.34);
  border-radius: 25px;
}

.card-glow {
  position: absolute;
  left: 50%;
  top: -130px;
  width: 390px;
  height: 390px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(214, 164, 54, 0.1);
  filter: blur(55px);
}

.logo {
  position: relative;
  display: block;
  width: clamp(150px, 35vw, 230px);
  height: auto;
  margin: 0 auto 10px;
  border-radius: 50%;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.55));
}

.eyebrow {
  position: relative;
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

h1 {
  position: relative;
  margin: 0;
  font-size: clamp(2.1rem, 8vw, 4.25rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(0,0,0,0.7);
}

h1 span {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
}

.intro {
  position: relative;
  max-width: 490px;
  margin: 24px auto 20px;
  color: #ece8dd;
  font-size: clamp(1rem, 2.8vw, 1.18rem);
  font-weight: 650;
  line-height: 1.45;
}

.cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 14px 22px;
  color: #17120a;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid #ffe27d;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #fff09a 0%, #e9b92e 52%, #c89017 100%);
  box-shadow:
    0 0 26px rgba(244, 190, 48, 0.34),
    inset 0 2px 0 rgba(255,255,255,0.55);
  font-size: clamp(1rem, 3.5vw, 1.4rem);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: 0.025em;
  transition: transform 160ms ease, filter 160ms ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px) scale(1.012);
  filter: brightness(1.06);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    flex-shrink: 0;

    box-shadow:
        inset 0 0 0 3px rgba(255,255,255,.9),
        0 6px 18px rgba(0,0,0,.35);
}

.whatsapp-icon img{
    width:28px;
    height:28px;
    display:block;
}

.benefits {
  position: relative;
  width: min(100%, 465px);
  margin: 24px auto 18px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.benefits li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 4px;
  font-size: clamp(0.98rem, 3vw, 1.16rem);
  font-weight: 850;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.benefits li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 50px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215,164,53,0.9), transparent);
}

.benefits li span {
  width: 36px;
  text-align: center;
  font-size: 1.45rem;
}

.disclosure {
  position: relative;
  margin: 17px 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.legal-links {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 9px;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  color: white;
}

.domain {
  position: relative;
  width: min(100%, 340px);
  margin: 18px auto 0;
  padding: 8px 16px;
  color: var(--gold-light);
  border-top: 1px solid rgba(215,164,53,0.5);
  font-weight: 750;
  letter-spacing: 0.04em;
}

.legal-page {
  width: min(100%, 900px);
  margin: 32px auto;
  padding: 32px;
  border: 1px solid rgba(215,164,53,0.55);
  border-radius: 24px;
  background: #0b1119;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.legal-page h1,
.legal-page h2 {
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.15;
}

.legal-page h1 {
  color: var(--gold-light);
  font-size: clamp(2rem, 6vw, 3.25rem);
}

.legal-page h2 {
  margin-top: 30px;
  color: var(--gold);
  font-size: 1.35rem;
}

.legal-page p,
.legal-page li {
  color: #e8e5dc;
  line-height: 1.65;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--gold-light);
  font-weight: 800;
}

@media (max-width: 520px) {
  .page-shell {
    padding: 10px;
  }

  .deal-card {
    padding: 22px 18px 20px;
    border-radius: 25px;
  }

  .deal-card::before {
    inset: 7px;
    border-radius: 19px;
  }

  .logo {
    width: 155px;
  }

  .intro {
    margin-top: 20px;
  }

  .legal-page {
    margin: 14px;
    padding: 24px 20px;
  }
}

.cta-text{
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}
