:root {
  color-scheme: dark;
  --night: #090719;
  --night-soft: #110d27;
  --violet: #241143;
  --violet-light: #6c43a8;
  --gold: #d8b56a;
  --gold-light: #f2d89d;
  --ivory: #f7f2e7;
  --muted: #bdb4ce;
  --green: #25d366;
  --line: rgba(216, 181, 106, .22);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 76% 8%, rgba(102, 54, 151, .28), transparent 28rem),
    radial-gradient(circle at 12% 24%, rgba(52, 31, 112, .2), transparent 25rem),
    var(--night);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .35;
  background-image:
    radial-gradient(circle at 10% 20%, #fff 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 35%, #d8b56a 0 1px, transparent 1.5px),
    radial-gradient(circle at 35% 70%, #fff 0 1px, transparent 1.5px);
  background-size: 220px 220px, 310px 310px, 270px 270px;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  color: #171020;
  background: var(--gold-light);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  width: min(calc(100% - 40px), var(--max));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 23px;
  letter-spacing: .27em;
  text-decoration: none;
}
.brand-mark { font-size: 17px; }
nav { display: flex; gap: 34px; }
nav a, .footer-links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s ease;
}
nav a:hover, .footer-links a:hover { color: var(--gold-light); }

.header-cta {
  padding: 10px 17px;
  border: 1px solid rgba(242, 216, 157, .46);
  border-radius: 99px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  width: min(calc(100% - 40px), var(--max));
  min-height: 720px;
  margin: 0 auto;
  padding: 72px 0 88px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 1px; background: var(--gold); }
.hero h1 { max-width: 650px; margin-bottom: 24px; font-size: clamp(52px, 5.4vw, 74px); }
.hero h1 em { display: block; color: var(--gold-light); font-weight: 400; }
.hero-text { max-width: 620px; margin-bottom: 34px; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button {
  min-height: 52px;
  padding: 14px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #07130b;
  background: var(--green);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .2);
}
.button-primary:hover { box-shadow: 0 16px 38px rgba(37, 211, 102, .3); }
.text-link { color: var(--gold-light); font-size: 14px; font-weight: 700; text-underline-offset: 5px; }
.hero-notes {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  color: #8f869f;
  font-size: 12px;
  list-style: none;
}
.hero-notes li::before { margin-right: 7px; color: var(--gold); content: "✦"; }

.hero-visual { position: relative; width: min(100%, 430px); margin: 0 auto; isolation: isolate; }
.hero-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, .48), 0 0 0 1px rgba(242, 216, 157, .3);
  transform: rotate(2deg);
}
.card-glow {
  position: absolute;
  inset: 12% -8%;
  z-index: -1;
  background: rgba(119, 72, 185, .4);
  filter: blur(65px);
  border-radius: 50%;
}
.orbit { position: absolute; z-index: -1; border: 1px solid var(--line); border-radius: 50%; }
.orbit::before, .orbit::after { position: absolute; color: var(--gold); content: "✦"; }
.orbit-one { inset: -28px; }
.orbit-one::before { top: 7%; right: 8%; }
.orbit-one::after { bottom: 10%; left: 1%; }
.orbit-two { inset: 12% -90px; transform: rotate(58deg); }
.orbit-two::before { top: 48%; left: -5px; }
.orbit-two::after { right: 4%; bottom: 20%; }
.floating-note {
  position: absolute;
  z-index: 3;
  padding: 9px 14px;
  border: 1px solid rgba(242, 216, 157, .25);
  color: var(--gold-light);
  background: rgba(15, 10, 34, .85);
  backdrop-filter: blur(12px);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}
.note-top { top: 8%; left: -48px; }
.note-bottom { right: -52px; bottom: 13%; }

.trust-bar {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-bar div { padding: 5px 24px; display: grid; grid-template-columns: 28px 1fr; border-right: 1px solid var(--line); }
.trust-bar div:last-child { border-right: 0; }
.trust-bar span { grid-row: span 2; color: var(--gold); font-size: 18px; }
.trust-bar strong { font-family: Georgia, serif; font-size: 16px; font-weight: 500; }
.trust-bar small { color: #8f869f; font-size: 11px; }

.section { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 118px 0; }
.section-heading { max-width: 680px; margin-bottom: 48px; }
.section-heading.narrow { max-width: 580px; }
.section-heading h2, .manifesto h2, .final-cta h2 { margin-bottom: 18px; font-size: clamp(40px, 5vw, 66px); }
.section-heading > p:last-child { color: var(--muted); font-size: 17px; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.service {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(150deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  border-radius: 18px;
  transition: border-color .2s ease, transform .2s ease;
}
.service:hover { border-color: rgba(216, 181, 106, .4); transform: translateY(-3px); }
.service.featured { background: linear-gradient(150deg, rgba(91,50,139,.34), rgba(255,255,255,.025)); }
.service.package { grid-column: span 2; background: radial-gradient(circle at 85% 5%, rgba(216,181,106,.15), transparent 45%), linear-gradient(145deg, #251345, #100b25); }
.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold-light);
  background: rgba(216,181,106,.07);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 17px;
}
.service .tag { align-self: flex-end; margin: -58px 0 26px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service h3 { margin-bottom: 11px; font-family: Georgia, serif; font-size: 23px; font-weight: 500; line-height: 1.2; }
.service > p:not(.tag) { margin-bottom: 28px; color: var(--muted); font-size: 14px; }
.price { margin-top: auto; display: flex; align-items: baseline; gap: 8px; color: var(--gold-light); }
.price strong { font-family: Georgia, serif; font-size: 24px; font-weight: 500; }
.price span { color: #8f869f; font-size: 11px; }
.section-action { margin-top: 34px; text-align: center; }

.how { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; border-top: 1px solid var(--line); }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { padding: 24px 0; display: grid; grid-template-columns: 62px 1fr; border-bottom: 1px solid var(--line); }
.steps li:first-child { padding-top: 0; }
.steps span { color: var(--gold); font-family: Georgia, serif; font-size: 13px; }
.steps h3 { margin-bottom: 5px; font-family: Georgia, serif; font-size: 21px; font-weight: 500; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; }

.manifesto {
  padding: 84px;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  gap: 70px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 10% 50%, rgba(116,66,173,.35), transparent 31%), var(--night-soft);
  border-radius: 30px;
}
.manifesto-art { position: relative; height: 250px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.manifesto-art::before, .manifesto-art::after { position: absolute; inset: 18%; border: 1px solid var(--line); border-radius: 50%; content: ""; }
.manifesto-art::after { inset: 35%; }
.manifesto-art span { position: absolute; color: var(--gold-light); font-family: Georgia, serif; font-size: 36px; }
.manifesto-art span:first-child { left: 13%; }
.manifesto-art span:nth-child(2) { font-size: 22px; }
.manifesto-art span:last-child { right: 13%; }
.manifesto > div:last-child > p:last-child { max-width: 650px; color: var(--muted); }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { padding: 24px 42px 24px 0; position: relative; cursor: pointer; font-family: Georgia, serif; font-size: 19px; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { position: absolute; right: 7px; color: var(--gold); content: "+"; }
details[open] summary::after { content: "−"; }
details p { max-width: 650px; padding: 0 40px 24px 0; color: var(--muted); font-size: 14px; }

.final-cta {
  padding: 120px 20px 130px;
  text-align: center;
  border-top: 1px solid var(--line);
  background: radial-gradient(circle at 50% 48%, rgba(92, 47, 148, .35), transparent 28rem);
}
.final-stars { margin-bottom: 38px; color: var(--gold); }
.eyebrow.centered { justify-content: center; }
.final-cta > p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); }
.button-large { min-width: 265px; padding: 17px 28px; }
.final-cta small { margin-top: 20px; display: block; color: #827990; }

footer {
  width: min(calc(100% - 40px), var(--max));
  min-height: 120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  color: #827990;
  font-size: 12px;
}
.footer-brand { font-size: 16px; }
.footer-links { display: flex; gap: 20px; }
.copyright { margin: 0; }
.mobile-whatsapp { display: none; }

.legal { width: min(calc(100% - 40px), 780px); min-height: calc(100vh - 206px); margin: 0 auto; padding: 80px 0 120px; }
.legal h1 { margin-bottom: 18px; font-size: clamp(44px, 7vw, 70px); }
.legal h2 { margin: 48px 0 14px; color: var(--gold-light); font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--gold-light); }
.legal .updated { margin-bottom: 44px; color: #857d93; font-size: 13px; }

*:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }

@media (max-width: 960px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr 380px; gap: 35px; }
  .hero h1 { font-size: 58px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .how, .faq { grid-template-columns: 1fr; gap: 30px; }
  .manifesto { padding: 55px; grid-template-columns: .75fr 1.25fr; gap: 45px; }
}

@media (max-width: 720px) {
  body { padding-bottom: 72px; }
  .site-header { width: calc(100vw - 28px); height: 72px; }
  .header-cta { display: none; }
  .hero { width: calc(100vw - 28px); min-height: auto; padding: 64px 0 75px; grid-template-columns: minmax(0, 1fr); gap: 64px; }
  .hero-copy { width: calc(100vw - 28px); min-width: 0; max-width: calc(100vw - 28px); }
  .hero h1 { max-width: 100%; overflow-wrap: anywhere; font-size: clamp(45px, 13vw, 58px); }
  .hero-text { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .text-link { text-align: center; }
  .hero-notes { align-items: flex-start; flex-direction: column; }
  .hero-visual { width: min(68vw, 300px); }
  .note-top { left: -24px; }
  .note-bottom { right: -23px; }
  .orbit-two { inset: 10% -42px; }
  .trust-bar { width: 100%; padding: 15px 14px; grid-template-columns: repeat(2, 1fr); }
  .trust-bar div { padding: 14px 10px; border-bottom: 1px solid var(--line); }
  .trust-bar div:nth-child(2) { border-right: 0; }
  .trust-bar div:nth-child(3), .trust-bar div:nth-child(4) { border-bottom: 0; }
  .section { width: calc(100vw - 28px); padding: 82px 0; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2, .manifesto h2, .final-cta h2 { font-size: 43px; }
  .service-grid { grid-template-columns: 1fr; }
  .service { min-height: 270px; }
  .service.package { grid-column: auto; }
  .how { gap: 25px; }
  .manifesto { padding: 42px 25px; grid-template-columns: 1fr; gap: 40px; border-radius: 22px; }
  .manifesto-art { height: 240px; }
  .faq { gap: 20px; }
  .final-cta { padding: 90px 24px; }
  footer { min-height: 230px; padding: 40px 0; grid-template-columns: 1fr; justify-items: center; gap: 12px; text-align: center; }
  .footer-links { margin: 12px 0; }
  .mobile-whatsapp {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 20;
    min-height: 52px;
    padding: 13px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #07130b;
    background: var(--green);
    border-radius: 99px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .42);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
