:root {
  color-scheme: dark;
  --bg: #090711;
  --bg-soft: #100c1d;
  --panel: #151024;
  --panel-2: #1b1430;
  --text: #f7f3ff;
  --muted: #aaa2bb;
  --line: rgba(198, 176, 255, .16);
  --purple: #a98bff;
  --purple-bright: #c5b1ff;
  --cyan: #76d9d1;
  --mint: #84e3bc;
  --gold: #f3c878;
  --rose: #e99bb5;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 72% 0%, rgba(111, 74, 194, .25), transparent 34rem),
    radial-gradient(circle at 4% 45%, rgba(42, 155, 155, .08), transparent 35rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
p { line-height: 1.65; }

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

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 760;
  font-size: 14px;
  letter-spacing: .24em;
}
.brand img { border-radius: 10px; }

nav { display: flex; gap: clamp(18px, 3vw, 38px); }
nav a, .footer-links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s ease;
}
nav a:hover, nav a:focus-visible, .footer-links a:hover, .footer-links a:focus-visible {
  color: var(--text);
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(34px, 7vw, 94px);
  align-items: center;
  padding-block: 76px 110px;
}

.eyebrow, .kicker {
  margin: 0 0 20px;
  color: var(--purple-bright);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.mint { color: var(--mint); }

h1, h2, h3, p { text-wrap: pretty; }
h1 {
  margin: 0;
  font-size: clamp(56px, 7.4vw, 104px);
  line-height: .91;
  letter-spacing: -.065em;
}
h1 span {
  background: linear-gradient(100deg, var(--purple-bright), var(--cyan));
  background-clip: text;
  color: transparent;
}
.hero-lead {
  max-width: 650px;
  margin: 32px 0 0;
  color: #c5bdd2;
  font-size: clamp(18px, 2vw, 22px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible {
  outline: 3px solid rgba(118, 217, 209, .65);
  outline-offset: 3px;
}
.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #9a76ff, #6650c4);
  box-shadow: 0 18px 48px rgba(107, 73, 200, .28);
}
.button.quiet { background: rgba(255, 255, 255, .035); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}
.trust-row li::before {
  content: "✦";
  margin-right: 8px;
  color: var(--cyan);
}

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12%;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(144, 105, 255, .23), transparent 68%);
  filter: blur(10px);
}
.orbit {
  position: absolute;
  border: 1px solid rgba(191, 163, 255, .19);
  border-radius: 50%;
}
.orbit-one { inset: 8%; }
.orbit-two { inset: 22%; border-color: rgba(109, 221, 213, .15); }
.core {
  width: 48%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 178, 255, .28);
  border-radius: 40%;
  background: linear-gradient(155deg, rgba(34, 25, 60, .94), rgba(14, 10, 26, .96));
  box-shadow: 0 40px 100px rgba(0, 0, 0, .45), inset 0 1px rgba(255, 255, 255, .09);
  text-align: center;
}
.core img { width: 43%; border-radius: 24%; margin-bottom: 16px; }
.core strong { font-size: clamp(18px, 2.3vw, 28px); }
.core span { margin-top: 4px; color: var(--muted); font-size: 13px; }
.thought {
  position: absolute;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(20, 15, 36, .82);
  color: #c9c0d7;
  font-size: clamp(11px, 1.2vw, 14px);
  backdrop-filter: blur(14px);
}
.thought::before { content: "·"; color: var(--cyan); margin-right: 7px; }
.thought-one { top: 12%; left: 7%; }
.thought-two { top: 20%; right: -2%; }
.thought-three { bottom: 18%; left: -2%; }
.thought-four { right: 4%; bottom: 9%; }

.statement {
  padding-block: 96px;
  border-block: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(114, 75, 204, .12), rgba(24, 15, 39, .1));
}
.statement-grid {
  display: grid;
  grid-template-columns: .72fr 1.15fr .8fr;
  gap: 48px;
  align-items: start;
}
.statement h2, .section h2, .final-cta h2, .page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5.4vw, 70px);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.statement p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section { padding-block: 120px; }
.section-heading { max-width: 810px; margin-bottom: 60px; }
.section-heading > p:last-child { color: var(--muted); max-width: 700px; font-size: 18px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
}
.steps article { min-height: 315px; padding: 32px; background: rgba(21, 16, 36, .68); }
.steps article + article { border-left: 1px solid var(--line); }
.step-number { display: block; color: var(--purple); font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.steps h3 { margin: 76px 0 12px; font-size: 28px; letter-spacing: -.03em; }
.steps p, .life-grid p, .plan li { color: var(--muted); }

.life-section { background: var(--bg-soft); border-block: 1px solid var(--line); }
.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr .6fr;
  gap: 80px;
  align-items: end;
}
.split-heading > p { margin: 0; }
.life-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.life-grid article { padding: 30px; background: var(--panel); }
.life-grid span { color: var(--cyan); font-size: 28px; }
.life-grid h3 { margin: 24px 0 8px; font-size: 20px; }
.life-grid p { margin: 0; font-size: 14px; }

.privacy-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 40%, rgba(59, 179, 162, .14), transparent 35rem),
    #080e13;
}
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.privacy-copy p:not(.eyebrow) { color: #aebcbf; font-size: 18px; }
.text-link { display: inline-flex; gap: 12px; margin-top: 14px; color: var(--mint); text-decoration: none; font-weight: 700; }
.privacy-proof {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(132, 227, 188, .2);
  border-radius: 42px;
  background: rgba(9, 19, 23, .7);
}
.phone-chip {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(132, 227, 188, .1);
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.proof-center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.proof-center img { border-radius: 20px; margin-bottom: 20px; }
.proof-center strong { font-size: 24px; }
.proof-center span { margin-top: 8px; color: #83979b; font-size: 13px; }
.blocked-cloud {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #64767a;
  font-size: 26px;
}
.blocked-cloud i {
  position: absolute;
  width: 56px;
  height: 2px;
  background: #de758b;
  transform: rotate(-45deg);
}
.transparency {
  margin-top: 34px;
  padding: 18px 22px;
  border: 1px solid rgba(132, 227, 188, .15);
  border-radius: 16px;
  color: #8fa0a3;
  font-size: 14px;
}
.transparency strong { color: #cad5d4; }

.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.plan {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel);
}
.plan.featured {
  border-color: rgba(169, 139, 255, .55);
  background:
    radial-gradient(circle at 90% 0%, rgba(145, 102, 255, .22), transparent 18rem),
    var(--panel-2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .25);
}
.plan-label { color: var(--purple-bright); font-size: 11px; font-weight: 800; letter-spacing: .17em; }
.plan h3 { margin: 14px 0 30px; font-size: clamp(26px, 3vw, 38px); line-height: 1.08; letter-spacing: -.035em; }
.plan ul { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.plan li { padding-left: 26px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); }
.plan-note { margin: 28px 0 0; color: #8f86a1; font-size: 13px; }

.founder-section { border-top: 1px solid var(--line); }
.founder-grid { display: grid; grid-template-columns: minmax(230px, .42fr) 1fr; gap: 72px; align-items: start; }
.founder-portrait { margin: 0; }
.founder-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 35%;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}
.founder-portrait figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .02em;
}
.founder-story { max-width: 760px; }
.founder-story p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.founder-story blockquote {
  margin: 34px 0 0;
  padding: 24px 26px;
  border: 1px solid rgba(180, 164, 255, .22);
  border-left: 3px solid var(--purple-bright);
  border-radius: 0 22px 22px 0;
  background: rgba(180, 164, 255, .06);
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(20px, 2.3vw, 27px);
  line-height: 1.42;
}

.final-cta { padding-block: 120px; text-align: center; border-top: 1px solid var(--line); }
.final-cta img { margin: 0 auto 28px; border-radius: 20px; }
.final-cta p { margin: 24px 0 30px; color: var(--muted); font-size: 18px; }

.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  padding-block: 46px 34px;
  border-top: 1px solid var(--line);
}
.footer-top, .footer-links, .footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-top p { color: var(--muted); }
.footer-links { justify-content: flex-start; margin-top: 34px; }
.footer-legal {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: #716a7e;
  font-size: 12px;
}

/* Páginas informativas */
.simple-header { background: rgba(9, 7, 17, .9); }
.page-main { min-height: 70vh; }
.page-hero { padding-block: 90px 58px; border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero p:last-child { max-width: 720px; color: var(--muted); font-size: 18px; }
.document {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
  padding-block: 70px 110px;
}
.document h2 { margin: 56px 0 14px; font-size: 28px; letter-spacing: -.025em; }
.document h3 { margin: 34px 0 10px; font-size: 20px; }
.document p, .document li { color: #b1a9be; line-height: 1.75; }
.document a { color: var(--cyan); }
.document ul, .document ol { display: grid; gap: 8px; padding-left: 22px; }
.notice {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}
.contact-card {
  margin-top: 36px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}
.contact-card strong { display: block; margin-bottom: 8px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 20px 0; cursor: pointer; font-weight: 700; }
.faq details p { margin-top: 0; padding-bottom: 18px; }
.date { color: #766e83; font-size: 13px; }

@media (max-width: 840px) {
  .site-header nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-block: 72px 80px; }
  .hero-visual { width: min(100%, 520px); margin-inline: auto; }
  .statement-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps, .life-grid { grid-template-columns: 1fr; }
  .steps article + article { border-left: 0; border-top: 1px solid var(--line); }
  .steps article { min-height: auto; }
  .steps h3 { margin-top: 42px; }
  .split-heading, .privacy-grid, .founder-grid { grid-template-columns: 1fr; gap: 46px; }
  .founder-portrait { max-width: 360px; }
  .plans { grid-template-columns: 1fr; }
  .life-grid { gap: 1px; }
}

@media (max-width: 560px) {
  .shell, .site-header, .site-footer, .document { width: min(calc(100% - 28px), var(--max)); }
  .site-header { min-height: 72px; }
  .hero { padding-top: 54px; }
  h1 { font-size: clamp(50px, 15vw, 72px); }
  .hero-actions .button { width: 100%; }
  .thought { padding: 7px 10px; }
  .thought-two { right: 0; }
  .thought-three { left: 0; }
  .section { padding-block: 84px; }
  .statement { padding-block: 72px; }
  .section-heading { margin-bottom: 42px; }
  .plan { padding: 28px 24px; }
  .privacy-proof { min-height: 320px; border-radius: 28px; }
  .footer-top, .footer-legal { align-items: flex-start; flex-direction: column; }
  .footer-links { flex-wrap: wrap; }
}

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