
:root {
  --bg: #04030a;
  --bg-2: #080610;
  --panel: rgba(10, 9, 18, .76);
  --panel-strong: rgba(12, 10, 22, .88);
  --text: #f6f0ea;
  --muted: #b7b0c5;
  --purple: #bb6bff;
  --purple-2: #7a38de;
  --scarlet: #ef3657;
  --scarlet-2: #b31632;
  --glow-purple: rgba(187, 107, 255, .42);
  --glow-red: rgba(239, 54, 87, .35);
  --line: rgba(199, 124, 255, .18);
  --line-red: rgba(239, 54, 87, .20);
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --radius: 14px;
  --radius-lg: 24px;
  --max: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(132, 55, 211, .14), transparent 28%),
    radial-gradient(circle at 85% 16%, rgba(239, 54, 87, .16), transparent 24%),
    radial-gradient(circle at 40% 65%, rgba(101, 43, 168, .08), transparent 26%),
    linear-gradient(180deg, #06040c, #03030a 40%, #05040a 100%);
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.6) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(187,107,255,.42) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(239,54,87,.24) 0 1px, transparent 1.45px);
  background-size: 110px 110px, 170px 170px, 230px 230px;
  background-position: 0 0, 34px 56px, 120px 70px;
  opacity: .42;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,.65) 55%, rgba(0,0,0,.2) 90%, transparent 100%);
  z-index: -3;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(187,107,255,.05) 18.2% 18.45%, transparent 18.65% 100%),
    linear-gradient(145deg, transparent 0 62%, rgba(239,54,87,.06) 62.2% 62.5%, transparent 62.7% 100%),
    linear-gradient(28deg, transparent 0 80%, rgba(187,107,255,.05) 80.1% 80.4%, transparent 80.7% 100%);
  opacity: .7;
  z-index: -2;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .30em;
  color: #c588ff;
  font-size: .72rem;
  font-weight: 700;
}
.eyebrow::before,
.eyebrow::after {
  content: '✦';
  color: var(--purple);
  font-size: .75rem;
  opacity: .9;
}
.display {
  font-family: var(--serif);
  line-height: 1.05;
  font-weight: 400;
  margin: .35rem 0 1rem;
  letter-spacing: .01em;
}
.display.xl { font-size: clamp(3.4rem, 8vw, 7.2rem); letter-spacing: .16em; }
.display.lg { font-size: clamp(2.7rem, 5vw, 5.1rem); }
.display.md { font-size: clamp(2rem, 4vw, 3.2rem); }
.muted { color: var(--muted); }
.scarlet-word { color: var(--scarlet); }
.purple-word { color: var(--purple); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 3, 10, .72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.18rem;
  letter-spacing: .32em;
}
.brand-mark {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 9px rgba(187, 107, 255, .7));
}
.nav-links { display: flex; gap: 30px; align-items: center; font-size: .94rem; color: #e8deeb; }
.nav-links a {
  position: relative;
  padding: 24px 0 22px;
  transition: color .2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
  background: linear-gradient(90deg, var(--purple), var(--scarlet));
  box-shadow: 0 0 20px rgba(187, 107, 255, .4);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 10px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,3,10,.88) 0%, rgba(4,3,10,.76) 38%, rgba(4,3,10,.64) 60%, rgba(4,3,10,.78) 100%);
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(174,77,255,.16), transparent 22%),
    radial-gradient(circle at 80% 18%, rgba(239,54,87,.16), transparent 22%),
    linear-gradient(125deg, transparent 28%, rgba(187,107,255,.05) 28.1% 28.3%, transparent 28.5% 100%),
    linear-gradient(158deg, transparent 69%, rgba(239,54,87,.07) 69.2% 69.45%, transparent 69.7% 100%);
  z-index: -1;
}
.hero-bg,
.image-panel::before,
.visual-panel::before,
.story::before,
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .24;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
  padding: 96px 0 86px;
  position: relative;
}
.hero-copy {
  position: relative;
  max-width: 670px;
  padding: 26px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(10,8,18,.52), rgba(10,8,18,.28));
  backdrop-filter: blur(6px);
  border: 1px solid rgba(199,124,255,.11);
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
}
.hero-copy p { font-size: 1.12rem; max-width: 42rem; }
.hero-art {
  position: relative;
  min-height: 470px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(199,124,255,.14);
  background:
    linear-gradient(145deg, rgba(10, 8, 18, .65), rgba(11, 8, 16, .24)),
    radial-gradient(circle at 30% 30%, rgba(174,77,255,.18), transparent 24%),
    radial-gradient(circle at 70% 35%, rgba(239,54,87,.15), transparent 24%),
    rgba(10,8,18,.48);
  box-shadow: var(--shadow);
}
.hero-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(155deg, rgba(8,7,14,.20), rgba(7,7,13,.56)),
    url('assets/images/ref-home.png') center/cover no-repeat;
  opacity: .88;
}
.hero-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(205,153,255,.95) 0 2px, rgba(186,108,255,.45) 4px 15px, transparent 17px),
    repeating-radial-gradient(circle at 50% 40%, transparent 0 40px, rgba(190,108,255,.10) 41px 42px, transparent 43px 68px),
    linear-gradient(115deg, transparent 0 44%, rgba(199,124,255,.08) 44.1% 44.3%, transparent 44.5% 100%),
    linear-gradient(152deg, transparent 0 66%, rgba(239,54,87,.09) 66.1% 66.4%, transparent 66.7% 100%);
}
.page-home .hero-bg { background-image: url('assets/images/ref-home.png'); }
.page-software .hero-bg { background-image: url('assets/images/ref-software.png'); }
.page-historias .hero-bg { background-image: url('assets/images/ref-historias.png'); }
.page-about .hero-bg,
.page-contact .hero-bg { background-image: url('assets/images/ref-about.png'); }
.hero.hero-with-ref > .hero-bg { position: absolute; inset: 0; z-index: -2; opacity: .26; background-size: cover; background-position: center top; filter: saturate(1.15); }

.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  gap: 10px;
  border-radius: 7px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .77rem;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn.primary {
  color: white;
  background: linear-gradient(90deg, var(--scarlet-2), var(--scarlet));
  border: 1px solid transparent;
  box-shadow: 0 15px 40px rgba(239, 54, 87, .25);
}
.btn.secondary {
  color: #ddb3ff;
  background: linear-gradient(180deg, rgba(105, 43, 160, .15), rgba(18, 13, 29, .36));
  border: 1px solid rgba(187,107,255,.34);
}
.btn:hover { transform: translateY(-2px); }
.btn.primary:hover { box-shadow: 0 18px 42px rgba(239, 54, 87, .33); }
.btn.secondary:hover { border-color: rgba(239,54,87,.34); box-shadow: 0 14px 36px rgba(187,107,255,.18); }

.section {
  position: relative;
  padding: 84px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(90%, 1140px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(187,107,255,.28), rgba(239,54,87,.2), transparent);
}
.section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}
.section-head p { color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card,
.story,
.feature,
.contact-panel,
.product-detail,
.image-panel,
.visual-panel,
.quote-panel,
.pricing-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(199,124,255,.14);
  background: linear-gradient(180deg, rgba(12,10,22,.86), rgba(8,7,14,.93));
  box-shadow: var(--shadow);
}
.card {
  min-height: 355px;
  padding: 28px;
}
.card::before { background-image: url('assets/images/ref-software.png'); }
.card::after,
.story::after,
.visual-panel::after,
.image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(187,107,255,.18), transparent 18%),
    radial-gradient(circle at 82% 16%, rgba(239,54,87,.16), transparent 18%),
    linear-gradient(130deg, transparent 0 34%, rgba(187,107,255,.08) 34.1% 34.25%, transparent 34.5% 100%),
    linear-gradient(155deg, transparent 0 70%, rgba(239,54,87,.08) 70.2% 70.4%, transparent 70.6% 100%);
  pointer-events: none;
}
.card.merin::before { background-image: url('assets/images/ref-software.png'); opacity: .28; }
.card-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--purple);
  border: 1px solid rgba(199,124,255,.42);
  box-shadow: inset 0 0 30px rgba(187,107,255,.12), 0 0 20px rgba(187,107,255,.15);
  font-family: var(--serif);
  font-size: 1.72rem;
}
.card.merin .card-icon {
  color: var(--scarlet);
  border-color: rgba(239,54,87,.38);
  box-shadow: inset 0 0 30px rgba(239,54,87,.08), 0 0 20px rgba(239,54,87,.12);
}
.card h3 {
  font-family: var(--serif);
  letter-spacing: .18em;
  font-weight: 400;
  font-size: 1.7rem;
  margin: 40px 0 8px;
}
.card p { color: var(--muted); max-width: 24rem; }
.card-link,
.inline-link {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .75rem;
  font-weight: 700;
  color: #d085ff;
  margin-top: 22px;
}
.card.merin .card-link,
.inline-link.red { color: var(--scarlet); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}
.image-panel,
.visual-panel {
  min-height: 350px;
}
.visual-panel::before { background-image: url('assets/images/ref-historias.png'); }
.image-panel.home::before { background-image: url('assets/images/ref-home.png'); opacity: .30; }
.image-panel.software::before { background-image: url('assets/images/ref-software.png'); opacity: .30; }
.image-panel.stories::before,
.story::before { background-image: url('assets/images/ref-historias.png'); opacity: .28; }
.image-panel.about::before,
.image-panel.contact::before { background-image: url('assets/images/ref-about.png'); opacity: .30; }
.image-panel .panel-copy,
.quote-panel {
  position: relative;
  z-index: 1;
}
.image-panel .panel-copy {
  padding: 28px;
  width: min(100%, 440px);
}
.quote-panel {
  padding: 30px;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: #efe5eb;
}
.quote-panel small {
  display: block;
  margin-top: 16px;
  color: #cfb1d3;
  font-size: .92rem;
  font-family: var(--sans);
}
.manifesto {
  padding: 34px 0;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.manifesto span:nth-child(1) { color: #ede7e0; }
.manifesto span:nth-child(2) { color: var(--purple); }
.manifesto span:nth-child(3) { color: var(--scarlet); }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature { padding: 24px; }
.feature::before { background-image: url('assets/images/ref-about.png'); opacity: .16; }
.feature strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: .12em;
}
.feature p { color: var(--muted); font-size: .94rem; margin: 0; }

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  top: 31px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), #d988ff, var(--scarlet));
  opacity: .72;
}
.milestone {
  position: relative;
  padding-top: 64px;
  text-align: center;
}
.milestone::before {
  content: '✦';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(9, 7, 17, .95);
  color: var(--purple);
  border: 1px solid rgba(199,124,255,.42);
  box-shadow: 0 0 18px rgba(187,107,255,.15);
}
.milestone:nth-child(4)::before,
.milestone:nth-child(5)::before {
  color: var(--scarlet);
  border-color: rgba(239,54,87,.40);
  box-shadow: 0 0 18px rgba(239,54,87,.15);
}
.milestone small {
  display: block;
  color: #ca94ff;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 8px;
}
.milestone p { color: var(--muted); font-size: .9rem; margin: 0; }

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.story {
  min-height: 180px;
  padding: 22px;
}
.story .num { color: #cf8aff; font-family: var(--serif); font-size: 1.15rem; }
.story h3 {
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 400;
  margin: 10px 0 0;
  line-height: 1.2;
  max-width: 12ch;
}
.story:nth-child(3n+2)::after,
.story:nth-child(3n+2)::before { opacity: .35; }
.story:nth-child(3n+2) { border-color: rgba(239,54,87,.18); }
.story:nth-child(3n+3) h3 { max-width: 10ch; }

.product-detail {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 32px;
  align-items: start;
  padding: 28px;
  margin-bottom: 18px;
}
.product-detail::before { background-image: url('assets/images/ref-software.png'); opacity: .24; }
.product-detail h3 { margin-top: 8px; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border-radius: 999px;
  color: #dbb5ff;
  border: 1px solid rgba(199,124,255,.28);
  background: rgba(93, 42, 150, .10);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
}
.badge.red {
  color: #ffc1cc;
  border-color: rgba(239,54,87,.28);
  background: rgba(125, 20, 36, .14);
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d4cad9;
  font-size: .92rem;
  margin-top: 14px;
}
.status::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffbf4d;
  box-shadow: 0 0 12px rgba(255,191,77,.45);
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr .8fr;
  gap: 18px;
}
.contact-panel { padding: 26px; }
.contact-panel::before { background-image: url('assets/images/ref-about.png'); opacity: .15; }
.contact-panel h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
}
.contact-list { display: grid; gap: 12px; }
.contact-chip {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(199,124,255,.15);
  background: rgba(10,8,18,.30);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid .full { grid-column: 1 / -1; }
input, textarea {
  width: 100%;
  color: var(--text);
  border-radius: 8px;
  border: 1px solid rgba(199,124,255,.18);
  background: rgba(8, 7, 14, .86);
  padding: 13px 14px;
  outline: none;
}
input:focus, textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(187,107,255,.08); }
textarea { min-height: 150px; resize: vertical; }
.checkbox-row { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--muted); }
.checkbox-row input { width: auto; }

.social-links { display: grid; gap: 12px; }
.social-links a,
.mini-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(199,124,255,.14);
  background: rgba(10,8,18,.30);
  color: #e9dff1;
}

.site-footer {
  background: #040409;
  padding: 54px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
}
.footer-grid h4 {
  color: #d095ff;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
}
.footer-grid a {
  display: block;
  color: #aba4b4;
  margin: 8px 0;
  font-size: .92rem;
}
.footer-note {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #847c8a;
  font-size: .82rem;
}

.stack { display: grid; gap: 18px; }
.center { text-align: center; }
.small { font-size: .92rem; }
.highlight-red { color: var(--scarlet); }
.highlight-purple { color: var(--purple); }
.section-cta { margin-top: 28px; text-align: center; }

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 20px 18px;
    background: rgba(7, 6, 12, .96);
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 0; }
  .nav-links a::after { bottom: 6px; }
  .nav-toggle { display: block; }
  .hero-grid,
  .split,
  .contact-grid,
  .product-detail { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding: 74px 0 70px; }
  .hero-art { min-height: 330px; }
  .cards,
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 26px), var(--max)); }
  .section { padding: 64px 0; }
  .display.xl { font-size: clamp(2.7rem, 16vw, 4.5rem); letter-spacing: .12em; }
  .hero-copy { padding: 20px; }
  .cards,
  .feature-grid,
  .timeline,
  .story-grid,
  .footer-grid,
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .brand { letter-spacing: .22em; font-size: 1.03rem; }
}


/* === Aurora product page ================================================== */
.page-aurora .aurora-hero > .hero-bg {
  background-image: url('assets/images/ref-software.png');
  opacity: .30;
  filter: saturate(1.22) contrast(1.06);
}
.page-aurora .aurora-hero::before {
  background: linear-gradient(90deg, rgba(4,3,10,.93) 0%, rgba(4,3,10,.80) 39%, rgba(5,3,11,.52) 66%, rgba(4,3,10,.82) 100%);
}
.aurora-copy { max-width: 690px; }
.aurora-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 26px;
  color: #c9bdd0;
  font-size: .84rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.aurora-trust-row span:nth-child(even) { color: #ff8ca0; }
.btn.is-disabled { opacity: .78; cursor: default; }
.aurora-orbit {
  position: relative;
  min-height: 480px;
  border-radius: 50%;
  isolation: isolate;
  filter: drop-shadow(0 25px 60px rgba(0,0,0,.32));
}
.aurora-orbit::before,
.aurora-orbit::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  inset: 12%;
  background: radial-gradient(circle, rgba(187,107,255,.14), transparent 62%);
  box-shadow: inset 0 0 80px rgba(187,107,255,.12), 0 0 70px rgba(187,107,255,.10);
  border: 1px solid rgba(198,128,255,.15);
}
.aurora-orbit::after {
  inset: 28%;
  background: radial-gradient(circle, rgba(239,54,87,.12), rgba(187,107,255,.06) 38%, transparent 68%);
  border-color: rgba(239,54,87,.13);
}
.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(199,124,255,.20);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 20px rgba(187,107,255,.07);
}
.orbit-one { width: 82%; height: 36%; transform: translate(-50%,-50%) rotate(18deg); }
.orbit-two { width: 72%; height: 52%; transform: translate(-50%,-50%) rotate(-28deg); border-color: rgba(239,54,87,.18); }
.orbit-three { width: 48%; height: 78%; transform: translate(-50%,-50%) rotate(58deg); }
.aurora-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 118px;
  height: 118px;
  transform: translate(-50%,-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #efe1ff;
  font-family: var(--serif);
  font-size: 3rem;
  background: radial-gradient(circle at 42% 38%, rgba(225,179,255,.30), rgba(80,28,132,.58) 38%, rgba(12,8,22,.94) 75%);
  border: 1px solid rgba(215,158,255,.48);
  box-shadow: inset 0 0 30px rgba(187,107,255,.18), 0 0 42px rgba(187,107,255,.32), 0 0 90px rgba(239,54,87,.08);
  z-index: 2;
}
.aurora-node {
  position: absolute;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(8,7,15,.78);
  border: 1px solid rgba(199,124,255,.22);
  backdrop-filter: blur(8px);
  color: #d9cae2;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(187,107,255,.10);
}
.node-1 { left: 8%; top: 25%; }
.node-2 { right: 2%; top: 32%; color: #ff9daf; border-color: rgba(239,54,87,.28); }
.node-3 { left: 13%; bottom: 20%; }
.node-4 { right: 8%; bottom: 14%; color: #ff9daf; border-color: rgba(239,54,87,.28); }

.aurora-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.aurora-stat {
  position: relative;
  min-height: 160px;
  padding: 22px;
  border-radius: 13px;
  border: 1px solid rgba(199,124,255,.14);
  background: linear-gradient(145deg, rgba(15,10,28,.78), rgba(7,6,13,.90));
  overflow: hidden;
}
.aurora-stat::after {
  content: '';
  position: absolute;
  width: 110px;
  height: 110px;
  right: -35px;
  top: -35px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187,107,255,.24), transparent 70%);
}
.aurora-stat:nth-child(even)::after { background: radial-gradient(circle, rgba(239,54,87,.21), transparent 70%); }
.aurora-stat strong { display: block; color: #c989ff; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.aurora-stat:nth-child(even) strong { color: #ff6f88; }
.aurora-stat span { display: block; margin: 5px 0 6px; font-family: var(--serif); font-size: 1.35rem; }
.aurora-stat p { color: var(--muted); margin: 0; font-size: .9rem; }

.aurora-feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.aurora-feature {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(199,124,255,.15);
  background: linear-gradient(160deg, rgba(16,10,29,.86), rgba(7,6,13,.94));
}
.aurora-feature::after {
  content: '';
  position: absolute;
  right: -70px;
  top: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187,107,255,.22), transparent 70%);
}
.aurora-feature.red { border-color: rgba(239,54,87,.14); }
.aurora-feature.red::after { background: radial-gradient(circle, rgba(239,54,87,.21), transparent 70%); }
.aurora-symbol {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #cb8cff;
  border: 1px solid rgba(199,124,255,.32);
  font-size: 1.55rem;
  box-shadow: 0 0 22px rgba(187,107,255,.10);
}
.aurora-feature.red .aurora-symbol { color: #ff718a; border-color: rgba(239,54,87,.30); }
.aurora-feature h3 { margin: 34px 0 8px; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.aurora-feature p { color: var(--muted); margin-bottom: 0; }

.aurora-gallery { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 14px; }
.aurora-shot { margin: 0; }
.shot-screen {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(199,124,255,.15);
  background:
    linear-gradient(180deg, rgba(4,3,10,.20), rgba(4,3,10,.92)),
    url('assets/images/ref-software.png') center/cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.shot-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(187,107,255,.05), transparent 45%, rgba(239,54,87,.07));
}
.shot-screen span,.shot-screen b,.shot-screen small { position: relative; z-index: 1; }
.shot-screen span { color: #cb8aff; letter-spacing: .18em; text-transform: uppercase; }
.shot-screen b { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.shot-screen small { color: #aaa1b0; }
.aurora-shot:nth-child(3) .shot-screen span { color: #ff6b85; }
.aurora-shot figcaption { color: #a9a1af; font-size: .88rem; margin: 9px 3px 0; }
.shot-main .shot-screen { min-height: 340px; }

.aurora-constellation {
  position: relative;
  min-height: 390px;
  border-radius: 18px;
  border: 1px solid rgba(199,124,255,.14);
  background:
    radial-gradient(circle at 45% 48%, rgba(187,107,255,.18), transparent 30%),
    radial-gradient(circle at 72% 64%, rgba(239,54,87,.10), transparent 25%),
    rgba(8,6,15,.72);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cstar { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: #d49bff; box-shadow: 0 0 18px #b95cff; z-index: 2; }
.cstar::after { content:''; position:absolute; left:50%; top:50%; width:27px; height:1px; transform:translate(-50%,-50%); background:rgba(215,165,255,.65); }
.c1{left:17%;top:36%}.c2{left:39%;top:18%}.c3{left:55%;top:48%}.c4{left:75%;top:28%;background:#ff6e88;box-shadow:0 0 18px #ef3657}.c5{left:68%;top:72%}
.cline { position: absolute; height: 1px; transform-origin: left center; background: linear-gradient(90deg, rgba(202,139,255,.65), rgba(239,54,87,.35)); }
.l1{left:18%;top:37%;width:31%;transform:rotate(-28deg)}.l2{left:40%;top:20%;width:29%;transform:rotate(51deg)}.l3{left:56%;top:49%;width:27%;transform:rotate(-34deg)}.l4{left:56%;top:50%;width:23%;transform:rotate(52deg)}
.constellation-label { position:absolute; inset:0; display:grid; place-items:center; font-family:var(--serif); letter-spacing:.45em; font-size:2.2rem; color:rgba(246,240,234,.80); text-shadow:0 0 26px rgba(187,107,255,.34); }
.aurora-checks { display: grid; gap: 13px; }
.aurora-checks p { margin:0; padding:14px 15px; border-radius:9px; border:1px solid rgba(199,124,255,.12); background:rgba(10,8,18,.40); color:var(--muted); }
.aurora-checks span { color:#ff627c; margin-right:8px; }
.aurora-checks b { color:var(--text); }

.aurora-release-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  padding: 34px;
  border-radius: 18px;
  border: 1px solid rgba(239,54,87,.18);
  background:
    radial-gradient(circle at 85% 15%, rgba(239,54,87,.15), transparent 24%),
    radial-gradient(circle at 12% 80%, rgba(187,107,255,.12), transparent 24%),
    linear-gradient(145deg, rgba(16,9,23,.90), rgba(7,6,13,.95));
  box-shadow: var(--shadow);
}
.aurora-release-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.aurora-release-meta div { padding: 14px; border-radius: 9px; border:1px solid rgba(199,124,255,.13); background:rgba(8,7,14,.52); }
.aurora-release-meta .wide { grid-column: 1 / -1; }
.aurora-release-meta span { display:block; color:#9f96a7; font-size:.76rem; text-transform:uppercase; letter-spacing:.1em; }
.aurora-release-meta strong { display:block; margin-top:4px; font-size:.94rem; }
.aurora-release-meta .pending { color:#ffbf67; }

@media (max-width: 980px) {
  .aurora-feature-grid { grid-template-columns: 1fr 1fr; }
  .aurora-gallery { grid-template-columns: 1fr 1fr; }
  .shot-main { grid-column: 1 / -1; }
  .aurora-release-panel { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .aurora-stat-grid,
  .aurora-feature-grid,
  .aurora-gallery,
  .aurora-release-meta { grid-template-columns: 1fr; }
  .shot-main { grid-column: auto; }
  .aurora-release-meta .wide { grid-column: auto; }
  .aurora-orbit { min-height: 390px; }
  .aurora-node { font-size: .66rem; }
}


/* =========================================================
   AURORA v0.4 — integración de identidad y capturas reales
   ========================================================= */
.page-aurora .aurora-hero {
  background:
    linear-gradient(90deg, rgba(2,12,25,.94) 0%, rgba(2,12,25,.82) 42%, rgba(2,12,25,.58) 70%, rgba(2,12,25,.84) 100%),
    url('assets/images/aurora-landscape.webp') center 58% / cover no-repeat;
}
.page-aurora .aurora-hero::before {
  background: linear-gradient(90deg, rgba(2,10,22,.94) 0%, rgba(2,10,22,.76) 45%, rgba(2,10,22,.42) 72%, rgba(2,10,22,.74) 100%);
}
.page-aurora .aurora-hero::after {
  background:
    radial-gradient(circle at 72% 34%, rgba(0,238,255,.18), transparent 24%),
    radial-gradient(circle at 87% 22%, rgba(81,118,255,.17), transparent 23%),
    linear-gradient(135deg, transparent 0 58%, rgba(0,229,255,.08) 58.1% 58.3%, transparent 58.5% 100%);
}
.aurora-brand-visual {
  min-height: 450px;
  display: grid;
  place-items: center;
  align-content: center;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(60,213,255,.18);
  background:
    radial-gradient(circle at center, rgba(0,232,255,.11), transparent 30%),
    radial-gradient(circle at center, rgba(87,85,255,.12), transparent 55%),
    rgba(2,13,29,.28);
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 90px rgba(0,188,255,.06), 0 30px 80px rgba(0,0,0,.32);
}
.aurora-brand-visual::before,
.aurora-brand-visual::after {
  content:'';
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(64,224,255,.15);
}
.aurora-brand-visual::before { width: 330px; height: 330px; }
.aurora-brand-visual::after { width: 410px; height: 410px; border-color: rgba(121,103,255,.12); }
.aurora-logo-large {
  width: min(58%, 310px);
  max-height: 320px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 28px rgba(0,238,255,.32)) drop-shadow(0 0 56px rgba(74,114,255,.18));
}
.aurora-brand-caption {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: -8px;
}
.aurora-brand-caption span {
  display: block;
  color: #dffcff;
  font-family: var(--serif);
  letter-spacing: .22em;
  font-size: 1.05rem;
}
.aurora-brand-caption small {
  display: block;
  color: #a7cfe1;
  margin-top: 6px;
  letter-spacing: .04em;
}

.aurora-showcase { display: grid; gap: 52px; }
.aurora-showcase-row {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 30px;
  align-items: center;
}
.aurora-showcase-row.reverse { grid-template-columns: 1.28fr .72fr; }
.aurora-showcase-row.reverse .aurora-showcase-copy { order: 2; }
.aurora-showcase-row.reverse .aurora-real-shot { order: 1; }
.aurora-showcase-copy { padding: 14px 4px; }
.aurora-showcase-copy .display.md { font-size: clamp(1.9rem, 3.2vw, 2.8rem); }

.aurora-real-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(58,207,255,.22);
  background: #031123;
  box-shadow:
    0 24px 70px rgba(0,0,0,.42),
    0 0 0 1px rgba(72,126,255,.06),
    0 0 38px rgba(0,211,255,.06);
}
.aurora-real-shot img {
  width: 100%;
  height: auto;
  display: block;
}
.aurora-real-shot figcaption {
  padding: 10px 14px;
  color: #93bfd3;
  font-size: .82rem;
  border-top: 1px solid rgba(58,207,255,.12);
  background: rgba(3,14,28,.94);
}
.aurora-real-shot.live { transform: perspective(1200px) rotateY(-1.2deg); }

.aurora-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.aurora-capability-card {
  margin: 0;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid rgba(58,207,255,.16);
  background: linear-gradient(180deg, rgba(4,20,39,.86), rgba(2,12,25,.96));
  box-shadow: 0 20px 52px rgba(0,0,0,.28);
}
.aurora-capability-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
  border-bottom: 1px solid rgba(58,207,255,.14);
}
.aurora-capability-card figcaption {
  display: grid;
  gap: 4px;
  padding: 15px 17px 18px;
}
.aurora-capability-card strong {
  color: #e9fbff;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}
.aurora-capability-card span { color: #9fb9c8; font-size: .9rem; }

.aurora-live-analysis {
  background:
    radial-gradient(circle at 78% 50%, rgba(0,220,255,.06), transparent 23%),
    radial-gradient(circle at 12% 50%, rgba(92,92,255,.06), transparent 20%);
}
.aurora-checks.compact { margin-top: 24px; }
.aurora-checks.compact p { margin: 10px 0; }

@media (max-width: 980px) {
  .aurora-brand-visual { min-height: 330px; }
  .aurora-showcase-row,
  .aurora-showcase-row.reverse { grid-template-columns: 1fr; }
  .aurora-showcase-row.reverse .aurora-showcase-copy,
  .aurora-showcase-row.reverse .aurora-real-shot { order: initial; }
}
@media (max-width: 700px) {
  .aurora-capability-grid { grid-template-columns: 1fr; }
  .aurora-brand-visual { min-height: 290px; }
  .aurora-logo-large { width: 55%; }
}


/* Netlify Forms — protección anti-bots y estados de envío */
.netlify-honeypot {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}
.form-status a { color: var(--purple); text-decoration: underline; }
.btn:disabled { opacity: .65; cursor: wait; transform: none; }
