:root {
  --purple: #4a22dc;
  --purple-deep: #2a0f92;
  --lime: #bdf205;
  --ink: #17162a;
  --paper: #f7f6fb;
  --line: #dedbea;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }

.site-header { height: 88px; padding: 0 5vw; display: flex; align-items: center; gap: 36px; background: white; border-bottom: 1px solid var(--line); position: relative; z-index: 10; }
.brand { display: inline-flex; align-items: center; gap: 10px; margin-right: auto; }
.brand-logo { display: block; object-position: center; }
.brand-logo-wordmark { width: 188px; height: 58px; object-fit: cover; border-radius: 13px; }
.brand-logo-full { width: min(100%, 330px); aspect-ratio: 1; object-fit: contain; border-radius: 32px; box-shadow: 0 25px 60px rgba(18,0,85,.28); }
.site-header nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 700; }
.site-header nav a:hover { color: var(--purple); }
.header-cta { border: 1px solid var(--ink); padding: 12px 18px; border-radius: 99px; font-size: 12px; font-weight: 800; }
.header-cta:hover { background: var(--ink); color: white; }

.hero { min-height: 660px; padding: 82px 7vw; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 7vw; color: white; position: relative; overflow: hidden; background: linear-gradient(135deg, #552cf0 0%, #3d18c8 60%, #2f0eaa 100%); }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 690px; height: 690px; right: -240px; top: -250px; }
.hero-orbit-two { width: 420px; height: 420px; left: 38%; bottom: -300px; }
.hero-copy, .hero-card { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 26px; display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 20px; height: 7px; display: inline-block; background: var(--lime); transform: skewX(-22deg); }
.hero h1 { max-width: 690px; margin: 0; font-size: clamp(50px, 6.1vw, 88px); line-height: .94; letter-spacing: -.055em; }
.hero-lead { max-width: 620px; margin: 30px 0; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; padding: 0 23px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; font-size: 13px; font-weight: 800; }
.button-primary { background: var(--lime); color: var(--ink); }
.button-primary:hover { background: white; }
.button-ghost { border: 1px solid rgba(255,255,255,.35); }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.number-note { margin: 20px 0 0; font-size: 12px; color: rgba(255,255,255,.62); }
.number-note strong { color: white; }
.hero-card { min-height: 430px; padding: 30px; border: 1px solid rgba(255,255,255,.24); border-radius: 34px; background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.05)); box-shadow: 0 38px 70px rgba(23, 0, 102, .32); backdrop-filter: blur(8px); transform: rotate(2.5deg); display: flex; flex-direction: column; }
.hero-card-top { display: flex; justify-content: space-between; gap: 20px; font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.status-dot { display: flex; align-items: center; gap: 7px; letter-spacing: 0; }
.status-dot::before { content: ""; width: 7px; height: 7px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 4px rgba(189,242,5,.15); }
.hero-card-mark { flex: 1; display: grid; place-items: center; }
.hero-card > p { margin: 0 0 10px; font-weight: 700; }
.signal-bars { height: 36px; display: flex; gap: 5px; align-items: end; }
.signal-bars i { display: block; width: 8px; background: var(--lime); border-radius: 3px; }
.signal-bars i:nth-child(1) { height: 10px; }.signal-bars i:nth-child(2) { height: 17px; }.signal-bars i:nth-child(3) { height: 24px; }.signal-bars i:nth-child(4) { height: 32px; }

.trust-strip { min-height: 124px; padding: 0 7vw; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--lime); }
.trust-strip > div { padding: 28px 30px; display: flex; align-items: center; gap: 20px; border-right: 1px solid rgba(23,22,42,.2); }
.trust-strip > div:first-child { padding-left: 0; }.trust-strip > div:last-child { border: 0; }
.trust-strip span { font-size: 11px; font-weight: 900; opacity: .5; }
.trust-strip p { margin: 0; font-size: 13px; line-height: 1.45; }
.trust-strip strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }

.section { padding: 105px 7vw; }
.section-kicker { margin-bottom: 34px; color: var(--purple); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; align-items: end; margin-bottom: 60px; }
.section-heading h2 { margin: 0; font-size: clamp(38px, 4.5vw, 65px); line-height: 1; letter-spacing: -.04em; }
.section-heading p { margin: 0; color: #6c687e; line-height: 1.75; }
.identity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.identity-card { min-height: 265px; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: white; display: flex; flex-direction: column; }
.card-index { color: var(--purple); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.identity-card h3 { margin: auto 0 15px; font-size: 23px; line-height: 1.1; }
.identity-card p { margin: 0; color: #6c687e; font-size: 14px; line-height: 1.65; }
.identity-card-purple { background: var(--purple); color: white; border-color: var(--purple); }.identity-card-purple .card-index, .identity-card-purple p { color: rgba(255,255,255,.76); }
.identity-card-lime { background: var(--lime); border-color: var(--lime); }.identity-card-lime .card-index, .identity-card-lime p { color: var(--ink); }
.services { background: white; }
.service-list { border-top: 1px solid var(--line); }
.service-list article { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.service-list article > span { color: var(--purple); font-size: 12px; font-weight: 900; }
.service-list article div { display: grid; grid-template-columns: .7fr 1fr; align-items: baseline; gap: 30px; }
.service-list h3, .service-list p { margin: 0; }.service-list h3 { font-size: 25px; }.service-list p { color: #6c687e; line-height: 1.6; }

.compliance { background: #eeebf6; }
.policy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
.policy-card { padding: 38px; border: 1px solid #d8d2e8; border-radius: 22px; background: white; }
.policy-title { padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 18px; }
.policy-title span { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 50%; background: #eee9ff; color: var(--purple); font-size: 10px; font-weight: 900; }
.policy-title h3 { margin: 0; font-size: 21px; }
.policy-card > p { margin: 0 0 17px; color: #625e72; font-size: 14px; line-height: 1.72; }
.policy-card > p:last-child { margin-bottom: 0; }
.policy-card strong { color: var(--ink); }
.policy-security { grid-column: 1 / -1; background: var(--purple); color: white; display: grid; grid-template-columns: 1fr .8fr; gap: 45px; }
.policy-security .policy-title { grid-column: 1 / -1; border-color: rgba(255,255,255,.2); }
.policy-security .policy-title span { background: var(--lime); color: var(--ink); }
.policy-security ul { margin: 0; padding: 0; display: grid; gap: 16px; list-style: none; }
.policy-security li { padding-left: 29px; position: relative; color: rgba(255,255,255,.84); line-height: 1.5; }
.policy-security li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--lime); font-weight: 900; }
.security-note { padding: 25px; border-radius: 16px; background: rgba(255,255,255,.1); align-self: center; }
.security-note strong { color: var(--lime); }.security-note p { margin: 9px 0 0; color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.6; }
.policy-update { margin: 24px 0 0; color: #777184; font-size: 11px; }

.contact-banner { margin: 0 4vw 70px; padding: 62px 5vw; border-radius: 30px; background: var(--ink); color: white; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.eyebrow-dark { color: rgba(255,255,255,.7); }
.contact-banner h2 { margin: 0 0 12px; font-size: clamp(36px, 4vw, 57px); letter-spacing: -.04em; }
.contact-banner p { margin: 0; color: rgba(255,255,255,.65); }
.contact-action { min-width: 280px; padding-left: 45px; border-left: 1px solid rgba(255,255,255,.16); display: flex; flex-direction: column; align-items: flex-start; }
.contact-action strong { font-size: 23px; }.contact-action small { margin: 6px 0 20px; color: rgba(255,255,255,.55); }
.contact-action a { color: var(--lime); font-size: 13px; font-weight: 900; }

footer { min-height: 140px; padding: 34px 5vw; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 30px; color: #726e81; font-size: 11px; }
.brand-footer { margin-right: auto; color: var(--ink); }.brand-footer .brand-logo-wordmark { width: 172px; height: 52px; }
.footer-legal p { margin: 4px 0; }.footer-links { display: flex; gap: 18px; font-weight: 800; }.footer-links a:hover { color: var(--purple); }

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 65px; }
  .hero-card { min-height: 350px; transform: none; }
  .trust-strip, .identity-grid { grid-template-columns: 1fr; }
  .trust-strip > div { border-right: 0; border-bottom: 1px solid rgba(23,22,42,.2); padding-left: 0; }
  .section-heading { grid-template-columns: 1fr; align-items: start; }
  .policy-grid { grid-template-columns: 1fr; }.policy-security { grid-column: auto; grid-template-columns: 1fr; }.policy-security .policy-title { grid-column: auto; }
  .contact-banner { grid-template-columns: 1fr; }.contact-action { padding: 25px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
}

@media (max-width: 600px) {
  .site-header { height: 76px; padding: 0 20px; }.header-cta { padding: 10px 13px; }.header-cta { font-size: 0; }.header-cta::after { content: "WhatsApp"; font-size: 11px; }
  .hero, .section { padding-left: 22px; padding-right: 22px; }.hero { min-height: auto; padding-bottom: 55px; }
  .hero h1 { font-size: 50px; }.hero-lead { font-size: 16px; }
  .hero-card { min-height: 390px; }.hero-card-mark .brand-logo-full { width: min(100%, 270px); }
  .trust-strip { padding: 15px 22px; }.trust-strip > div { padding: 20px 0; }
  .section { padding-top: 75px; padding-bottom: 75px; }.section-heading { margin-bottom: 42px; }
  .service-list article { grid-template-columns: 45px 1fr; }.service-list article div { grid-template-columns: 1fr; gap: 8px; }
  .contact-banner { margin: 0 14px 40px; padding: 40px 28px; }
  .policy-card { padding: 27px; }
  footer { padding: 30px 22px; flex-direction: column; align-items: flex-start; gap: 15px; }.brand-footer { margin: 0; }.footer-links { flex-wrap: wrap; }
}
