:root {
  --bg: #030205;
  --bg-soft: #0b0711;
  --text: #ffffff;
  --muted: #b9afc3;
  --line: rgba(188, 82, 255, 0.24);
  --accent: #9c39ff;
  --accent-2: #ff4fe1;
  --whatsapp: #25d366;
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 74% 8%, rgba(138, 33, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 10% 32%, rgba(101, 19, 204, 0.12), transparent 25rem),
    var(--bg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.site-header, main, footer { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  width: 138px;
}
.brand img { display: block; width: 100%; height: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links > a:not(.button) { color: #bdcbc7; font-size: 14px; }
.nav-links > a:hover { color: var(--text); }
.nav-links > .nav-active { color: var(--text); }
.nav-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--whatsapp);
  background: var(--whatsapp);
  color: #031208;
  font: 600 14px/1 var(--font-display);
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: #49ee82; box-shadow: 0 0 28px rgba(37,211,102,.28); }
.button-small { min-height: 42px; padding-inline: 20px; }

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero h1 {
  margin: 0;
  max-width: 680px;
  font: 600 clamp(58px, 6.8vw, 96px)/.98 var(--font-display);
  letter-spacing: -.065em;
}
.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, #8837ff, #ff55de);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 38px rgba(131, 43, 255, .2);
}
.hero-copy > p {
  max-width: 510px;
  margin: 30px 0 38px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 30px; }
.text-link { color: #c7d4d0; font-size: 14px; }
.text-link span { margin-left: 8px; color: var(--accent-2); }
.hero-brands { margin-top: 48px; }
.hero-brands > span {
  display: block;
  margin-bottom: 16px;
  color: #766d7c;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.hero-brands > div {
  display: grid;
  grid-template-columns: repeat(5, minmax(56px, 1fr));
  align-items: center;
  gap: 18px 22px;
  max-width: 510px;
}
.hero-brands img {
  width: auto;
  max-width: 74px;
  height: 20px;
  filter: invert(1);
  opacity: .62;
}
.hero-brands strong {
  color: white;
  font: 600 16px var(--font-display);
  opacity: .62;
}
.hero-brands .local-brand {
  color: #dba0ff;
  font-size: 10px;
  letter-spacing: .08em;
}

.hero-art { position: relative; height: 540px; display: flex; align-items: center; justify-content: center; }
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 48%, var(--bg) 78%);
  pointer-events: none;
}
.hero-art img {
  width: 116%;
  max-width: none;
  height: auto;
  display: block;
  filter: saturate(1.08) contrast(1.04);
}

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; margin-bottom: 70px; }
.section-heading > p, .process-intro > p { margin: 8px 0 0; color: var(--accent-2); font-size: 12px; text-transform: uppercase; letter-spacing: .18em; }
h2 { margin: 0; font: 600 clamp(40px, 5vw, 67px)/1.08 var(--font-display); letter-spacing: -.05em; }

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 0;
}
.service-item {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border: 1px solid rgba(162, 66, 255, .5);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(32, 13, 47, .64), rgba(7, 4, 10, .8));
  box-shadow: inset 0 0 28px rgba(121, 26, 210, .08), 0 0 24px rgba(108, 23, 199, .08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-item:hover { transform: translateY(-7px); color: var(--accent-2); border-color: var(--accent-2); box-shadow: 0 0 32px rgba(162,57,255,.2); }
.service-item > span { color: var(--accent-2); font: 600 13px var(--font-display); }
.service-item h3, .steps h3 { margin: 0 0 10px; color: var(--text); font: 600 25px var(--font-display); }
.service-item p, .steps p { margin: 0; max-width: 550px; color: var(--muted); line-height: 1.6; }
.service-item i { font-size: 25px; font-style: normal; }

.brand-availability { border-top: 1px solid var(--line); }
.brand-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 60px;
}
.brand-intro > p {
  margin: 8px 0 0;
  color: var(--accent-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.brand-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.brand-tile {
  min-height: 118px;
  padding: 28px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(20, 7, 29, .36);
  transition: background .2s ease, box-shadow .2s ease;
}
.brand-tile:hover {
  background: rgba(72, 16, 104, .34);
  box-shadow: inset 0 0 24px rgba(176, 57, 255, .12);
}
.brand-tile img {
  width: min(100%, 112px);
  max-height: 35px;
  filter: invert(1);
  opacity: .88;
}
.brand-wordmark {
  color: #f4edf8;
  font: 700 18px var(--font-display);
  letter-spacing: -.04em;
}
.brand-wordmark.local {
  color: #d994ff;
  font-size: 15px;
  letter-spacing: .08em;
}
.brand-disclaimer {
  max-width: 780px;
  margin: 24px 0 0;
  color: #746c79;
  font-size: 12px;
  line-height: 1.65;
}

.process {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  border-top: 1px solid var(--line);
}
.process-intro h2 { margin: 18px 0 28px; }
.process-intro > span { color: var(--muted); }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 62px 1fr; gap: 24px; padding: 30px 0 34px; border-bottom: 1px solid var(--line); }
.steps li > span { color: var(--accent-2); font: 600 12px var(--font-display); }

.why-rizen { border-top: 1px solid var(--line); }
.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.reason {
  min-height: 230px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(34, 12, 51, .34), rgba(4, 3, 6, .2));
}
.reason > span {
  display: block;
  margin-bottom: 55px;
  color: var(--accent-2);
  font: 600 12px var(--font-display);
}
.reason h3 { margin: 0 0 12px; font: 600 23px var(--font-display); }
.reason p { margin: 0; max-width: 430px; color: var(--muted); line-height: 1.65; }

.support {
  width: 100%;
  max-width: none;
  position: relative;
  min-height: 560px;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  background: linear-gradient(125deg, #220737, #5f1195 56%, #180423);
  overflow: hidden;
}
.support-grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(90deg, black, transparent 75%); }
.support-copy { position: relative; z-index: 2; }
.support-copy p { margin: 24px 0 34px; color: rgba(255,255,255,.74); font-size: 18px; }
.button-light { border-color: var(--whatsapp); background: var(--whatsapp); }
.support-symbol { position: absolute; right: 8%; bottom: -25%; color: rgba(10, 1, 18, .3); font: 700 520px/.8 var(--font-display); letter-spacing: -.15em; font-style: italic; }

footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}
footer > p { margin: 0; }
footer > div { justify-self: end; display: flex; gap: 24px; }

.eyebrow {
  margin: 0;
  color: var(--accent-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.pricing-hero {
  padding: 110px 0 80px;
  border-bottom: 1px solid var(--line);
}
.pricing-hero h1 {
  margin: 22px 0 28px;
  max-width: 900px;
  font: 600 clamp(58px, 8vw, 110px)/.94 var(--font-display);
  letter-spacing: -.07em;
}
.pricing-hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, #8837ff, #ff55de);
  -webkit-background-clip: text;
  background-clip: text;
}
.pricing-lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}
.pricing-summary {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pricing-summary span {
  padding: 22px 24px;
  color: #cec4d5;
  font-size: 13px;
  border-right: 1px solid var(--line);
}
.pricing-summary span:last-child { border-right: 0; }
.pricing-summary strong { color: var(--text); }
.pricing-catalog { padding: 100px 0 120px; }
.catalog-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  align-items: end;
  gap: 40px;
  margin-bottom: 44px;
}
.catalog-heading h2 { margin-top: 14px; }
.search-field span {
  display: block;
  margin-bottom: 10px;
  color: #8e8495;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.search-field input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  color: var(--text);
  background: rgba(14, 8, 19, .85);
  font: 14px var(--font-body);
}
.search-field input:focus { border-color: var(--accent-2); }
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}
.filter-button {
  padding: 11px 16px;
  border: 1px solid var(--line);
  color: #bdb2c5;
  background: transparent;
  font: 500 13px var(--font-body);
  cursor: pointer;
}
.filter-button:hover, .filter-button.active {
  color: white;
  border-color: var(--accent);
  background: rgba(131, 42, 211, .22);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.price-card {
  min-height: 360px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(31, 12, 44, .64), rgba(6, 4, 9, .88));
}
.price-card-top { display: flex; justify-content: space-between; gap: 16px; }
.price-category, .price-cycle {
  color: var(--accent-2);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.price-cycle { color: #7f7587; }
.price-card h3 { margin: 30px 0 8px; font: 600 27px var(--font-display); letter-spacing: -.03em; }
.price-option { min-height: 48px; margin: 0 0 24px; color: #d9d0de; line-height: 1.5; }
.price-option span { display: block; color: #857b8c; font-size: 13px; }
.currency-prices { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.currency-prices > div { padding: 18px 10px 18px 0; }
.currency-prices > div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.currency-prices small { display: block; margin-bottom: 8px; color: #766c7d; font-size: 10px; letter-spacing: .15em; }
.currency-prices strong { font: 600 17px var(--font-display); }
.not-listed { color: #716978; font: 500 12px var(--font-body); }
.price-note { margin: 16px 0 0; color: #817789; font-size: 12px; line-height: 1.45; }
.order-link {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: #dfffea;
  font: 600 13px var(--font-display);
}
.order-link span { color: var(--whatsapp); font-size: 17px; }
.empty-state { padding: 60px 0; color: var(--muted); text-align: center; }
.pricing-note {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  padding: 80px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 70px;
  background: linear-gradient(125deg, #220737, #5f1195 56%, #180423);
}
.pricing-note h2 { margin-top: 14px; font-size: clamp(36px, 4vw, 54px); }
.pricing-note > p { color: rgba(255,255,255,.72); line-height: 1.65; }

.reveal { opacity: 1; transform: none; }

@media (max-width: 850px) {
  .site-header, main, footer { width: min(100% - 32px, 680px); }
  .nav-toggle { display: grid; gap: 5px; padding: 12px; border: 0; background: none; }
  .nav-toggle span { display: block; width: 24px; height: 1px; background: white; }
  .nav-links { display: none; position: absolute; z-index: 10; top: 80px; left: 16px; right: 16px; padding: 24px; flex-direction: column; align-items: stretch; background: #0b1a18; border: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .hero { min-height: auto; padding: 72px 0 60px; grid-template-columns: minmax(0, 1fr); }
  .hero-copy { min-width: 0; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 12vw, 60px);
    line-height: 1.02;
    letter-spacing: -.07em;
    overflow-wrap: anywhere;
  }
  .hero-copy > p { margin: 24px 0 30px; font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { text-align: center; padding: 8px; }
  .hero-brands { margin-top: 38px; }
  .hero-brands > div {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    max-width: calc(100vw - 32px);
    gap: 22px;
    padding: 0 0 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(178, 63, 255, .5) transparent;
  }
  .hero-brands img { flex: 0 0 auto; max-width: 64px; height: 17px; }
  .hero-brands strong { flex: 0 0 auto; }
  .hero-art { width: 100%; height: auto; min-height: 300px; margin-top: 30px; overflow: hidden; }
  .hero-art img { width: 112%; max-width: 112%; margin-inline: -6%; }
  .section { padding: 85px 0; }
  .section-heading, .brand-intro, .process { grid-template-columns: 1fr; gap: 40px; }
  .service-list { grid-template-columns: 1fr; }
  .service-item { min-height: 230px; padding: 26px; }
  .brand-wall { grid-template-columns: repeat(2, 1fr); }
  .brand-tile { min-height: 100px; }
  .reason-grid { grid-template-columns: 1fr; }
  .reason { min-height: 210px; }
  .process { border-top: 1px solid var(--line); }
  .support { width: 100%; padding-inline: 24px; min-height: 500px; }
  .support-symbol { font-size: 360px; right: -10%; }
  .pricing-hero { padding: 72px 0 58px; }
  .pricing-hero h1 { font-size: clamp(48px, 15vw, 70px); overflow-wrap: anywhere; }
  .pricing-summary { grid-template-columns: 1fr; }
  .pricing-summary span { border-right: 0; border-bottom: 1px solid var(--line); }
  .pricing-summary span:last-child { border-bottom: 0; }
  .pricing-catalog { padding: 75px 0 90px; }
  .catalog-heading { grid-template-columns: 1fr; align-items: stretch; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 340px; }
  .pricing-note { grid-template-columns: 1fr; gap: 28px; padding-block: 70px; }
  .pricing-note .button { width: 100%; }
  footer { grid-template-columns: 1fr; gap: 20px; padding: 50px 0; }
  footer > div { justify-self: start; }
}

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