/*
  Pixelora Tech - Index V2

  Dirección visual:
  - SaaS premium + agencia digital
  - Navy profundo + azul eléctrico + blanco
  - Hero con degradé radial redondo, UI mockups y transición suave
  - Un único elemento glass premium destacado

  Fuentes:
  - Títulos: Sora
  - Texto/UI: Inter
  - Acento hero: Playfair Display italic
*/

:root {
  --navy-950: #020713;
  --navy-900: #06142a;
  --navy-850: #081b37;
  --navy-800: #0b2549;
  --blue-600: #075cff;
  --blue-500: #0b84ff;
  --blue-400: #19c8ff;
  --blue-200: #cceaff;
  --violet: #6d5cff;
  --white: #ffffff;
  --paper: #f6f9ff;
  --paper-2: #eef5ff;
  --ink: #08111f;
  --ink-soft: #536071;
  --muted: #718096;
  --line: rgba(8, 17, 31, .10);
  --line-light: rgba(255,255,255,.16);
  --shadow-soft: 0 28px 80px rgba(8, 17, 31, .12);
  --shadow-blue: 0 30px 110px rgba(11, 132, 255, .24);
  --container: 1180px;
  --radius-xxl: 42px;
  --radius-xl: 30px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

p {
  margin: 0;
  line-height: 1.68;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Inter", sans-serif;
  letter-spacing: -0.055em;
}

.container {
  width: min(var(--container), calc(100% - 42px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: top .25s ease, transform .25s ease;
}

.nav-shell {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(4, 13, 30, .66);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 22px 70px rgba(0,0,0,.20);
}

.site-header.scrolled .nav-shell {
  background: rgba(4, 13, 30, .86);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-symbol {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,.72), transparent 24%),
    linear-gradient(135deg, var(--blue-400), var(--blue-600) 58%, var(--violet));
  box-shadow:
    0 16px 36px rgba(11,132,255,.35),
    inset 0 1px 0 rgba(255,255,255,.42);
}

.brand-symbol span,
.brand-symbol::before,
.brand-symbol::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
}

.brand-symbol span {
  width: 16px;
  height: 3px;
}

.brand-symbol::before {
  width: 3px;
  height: 16px;
}

.brand-symbol::after {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.50);
  background: transparent;
}

.brand-name {
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.035em;
  font-size: 15px;
}

.brand-logo {
  height: 34px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin: 0 auto;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 750;
  transition: color .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px 0 20px;
  border-radius: 999px;
  color: var(--navy-900);
  background: linear-gradient(135deg, #ffffff, #dff5ff);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(255,255,255,.10);
  transition: transform .22s ease, box-shadow .22s ease;
}

.nav-cta span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy-900);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(25,200,255,.16);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255,255,255,.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
  transition: transform .2s ease;
}

/* HERO */

.hero {
  position: relative;
  padding: 0px;
  background: var(--navy-950);
}

.hero-frame {
  position: relative;
  min-height: 990px;
  overflow: hidden;
  border-radius: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 48%, rgba(25,200,255,.42) 0%, rgba(7,92,255,.28) 28%, rgba(109,92,255,.16) 44%, transparent 62%),
    radial-gradient(circle at 5% 62%, rgba(25,200,255,.34), transparent 33%),
    radial-gradient(circle at 92% 14%, rgba(7,92,255,.28), transparent 30%),
    linear-gradient(180deg, #020713 0%, #06142a 52%, #0b3c89 76%, #eef5ff 100%);
}

.hero-visual-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-visual-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 48%, rgba(0,0,0,.52), transparent 62%);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
}

.hero-orb-a {
  width: 620px;
  height: 620px;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(25,200,255,.28), rgba(7,92,255,.15) 45%, transparent 70%);
}

.hero-orb-b {
  width: 380px;
  height: 380px;
  left: -90px;
  top: 280px;
  background: radial-gradient(circle, rgba(109,92,255,.30), transparent 68%);
}

.hero-orb-c {
  width: 430px;
  height: 430px;
  right: -160px;
  top: 90px;
  background: radial-gradient(circle, rgba(25,200,255,.22), transparent 68%);
}

.hero-columns {
  position: absolute;
  right: -10px;
  bottom: 260px;
  width: 330px;
  height: 420px;
  opacity: .55;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 48px),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0));
  background-size: 48px 100%, 100% 100%;
  mask-image: linear-gradient(to left, rgba(0,0,0,.8), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 168px;
}

.hero-copy {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 15px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(255,255,255,.80);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-size: 13px;
  font-weight: 800;
}

.hero-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue-400);
  box-shadow: 0 0 20px rgba(25,200,255,.9);
}

.hero h1 {
  max-width: 1040px;
  margin: 0 auto;
  font-size: clamp(48px, 7.9vw, 104px);
  line-height: .92;
  font-weight: 700;
  letter-spacing: -0.085em;
}

.hero h1 em {
  display: block;
  margin-top: .06em;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.055em;
  color: #e9f7ff;
  text-shadow: 0 0 40px rgba(25,200,255,.20);
}

.hero-copy p {
  max-width: 780px;
  margin: 26px auto 0;
  color: rgba(242, 249, 255, .78);
  font-size: clamp(16px, 1.45vw, 19px);
}

.hero-copy p strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--navy-900);
  background: linear-gradient(135deg, #ffffff, #dff6ff);
  box-shadow: 0 22px 55px rgba(25,200,255,.20);
}

.btn-primary span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy-900);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.12);
}

.btn-dark-outline {
  margin-top: 32px;
  color: var(--white);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}

.hero-showcase {
  position: relative;
  width: min(940px, 100%);
  margin: 58px auto 0;
}

.hero-dashboard {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 34px 70px rgba(0,0,0,.28));
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--navy-900);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.62);
  box-shadow: 0 18px 46px rgba(7, 24, 51, .16);
  font-size: 13px;
  font-weight: 900;
}

.chip-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--violet));
}

.chip-left {
  left: -34px;
  top: 38%;
  transform: rotate(-5deg);
}

.chip-right {
  right: -40px;
  top: 20%;
  transform: rotate(5deg);
}

/* Único glass premium */
.glass-spotlight {
  position: absolute;
  z-index: 5;
  right: 38px;
  bottom: 34px;
  width: 258px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 26px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255,255,255,.23), rgba(255,255,255,.08)),
    rgba(7, 42, 84, .18);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    0 24px 80px rgba(2,7,19,.32);
}

.glass-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 800;
}

.glass-head i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--blue-400);
  box-shadow: 0 0 18px rgba(25,200,255,.85);
}

.glass-spotlight strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  font-size: 36px;
  letter-spacing: -0.06em;
}

.glass-spotlight p {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.55;
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 220px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #f6f9ff 78%);
}

/* SHARED SECTIONS */

.section-white {
  background: var(--white);
}

.section-soft {
  background: var(--paper);
}

.section-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  min-height: 35px;
  padding: 0 13px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #075fba;
  background: rgba(11, 132, 255, .09);
  border: 1px solid rgba(11, 132, 255, .15);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}

.section-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue-500);
  box-shadow: 0 0 14px rgba(11,132,255,.7);
}

.section-label-dark {
  color: #dcf6ff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}

.section-label-dark::before {
  background: var(--blue-400);
}

/* CAPABILITIES STRIP */

.capabilities-strip {
  padding: 36px 0 76px;
}

.strip-inner {
  display: grid;
  grid-template-columns: .65fr 1fr;
  gap: 38px;
  align-items: center;
  padding: 18px 0 0;
}

.strip-inner p {
  color: var(--ink-soft);
  font-weight: 750;
}

.strip-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.strip-items span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #0c3769;
  background: #f4f9ff;
  font-size: 13px;
  font-weight: 850;
}

/* SYSTEM */

.system-section {
  padding: 54px 0 112px;
}

.system-grid {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 70px;
  align-items: center;
}

.system-copy h2,
.section-center h2,
.process-header h2,
.showcase-copy h2,
.about-copy h2,
.final-panel h2 {
  font-size: clamp(36px, 5.2vw, 70px);
  line-height: .98;
  color: var(--ink);
}

.system-copy p {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 17px;
}

.system-copy strong {
  color: var(--ink);
}

.system-visual {
  position: relative;
}

.system-visual img {
  width: 100%;
  filter: drop-shadow(0 28px 70px rgba(8,17,31,.12));
}

/* SERVICES */

.services-section {
  padding: 108px 0;
}

.section-center {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-center .section-label {
  margin-left: auto;
  margin-right: auto;
}

.section-center p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr .88fr;
  grid-auto-rows: 1fr;
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 315px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.80);
  box-shadow: 0 18px 55px rgba(8,17,31,.08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(11,132,255,.16), transparent 68%);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11,132,255,.24);
  box-shadow: 0 28px 76px rgba(8,17,31,.12);
}

.service-card-featured {
  grid-row: span 2;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(25,200,255,.28), transparent 36%),
    linear-gradient(145deg, var(--navy-900), #030a18);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 32px 92px rgba(8,17,31,.18);
}

.service-number {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 76px;
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--violet));
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.service-card-featured .service-number {
  color: var(--navy-900);
  background: var(--white);
}

.service-card h3,
.service-card p,
.service-card a,
.service-card ul {
  position: relative;
  z-index: 2;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.05;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 15px;
}

.service-card-featured p {
  color: rgba(255,255,255,.72);
  font-size: 16px;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 750;
}

.service-card li::before {
  content: "•";
  color: var(--blue-400);
  margin-right: 8px;
}

.service-card a {
  display: inline-flex;
  margin-top: 24px;
  color: #075fba;
  font-size: 14px;
  font-weight: 900;
}

.service-card-featured a {
  color: var(--white);
}

/* SHOWCASE */

.showcase-section {
  padding: 28px 0 108px;
  background: var(--paper);
}

.showcase-panel {
  display: grid;
  grid-template-columns: .83fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  padding: 58px;
  border-radius: 46px;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 14%, rgba(25,200,255,.28), transparent 36%),
    radial-gradient(circle at 15% 80%, rgba(109,92,255,.22), transparent 34%),
    linear-gradient(135deg, #020713, #06142a 58%, #08295c);
  box-shadow: var(--shadow-blue);
}

.showcase-copy h2 {
  color: var(--white);
}

.showcase-copy p {
  margin-top: 20px;
  color: rgba(242,249,255,.74);
  font-size: 17px;
}

.showcase-points {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.showcase-points div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
}

.showcase-points strong {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--navy-900);
  background: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 13px;
}

.showcase-points span {
  color: rgba(255,255,255,.76);
  font-size: 14px;
  font-weight: 750;
}

.showcase-art img {
  width: 100%;
  filter: drop-shadow(0 30px 70px rgba(0,0,0,.28));
}

/* PROCESS */

.process-section {
  padding: 112px 0;
}

.process-header {
  max-width: 780px;
  margin-bottom: 54px;
}

.process-header p {
  max-width: 650px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 17px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-card {
  position: relative;
  min-height: 292px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f6faff);
}

.process-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 74px;
  height: 1px;
  background: var(--line);
}

.process-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 124px;
  height: 124px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(11,132,255,.13), transparent 66%);
}

.process-card span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  color: var(--blue-600);
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.process-card h3 {
  position: relative;
  z-index: 2;
  margin-top: 86px;
  margin-bottom: 12px;
  font-size: 23px;
}

.process-card p {
  position: relative;
  z-index: 2;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* ABOUT */

.about-section {
  padding: 0 0 112px;
}

.about-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr .7fr;
  gap: 40px;
  align-items: center;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(circle at 10% 0%, rgba(11,132,255,.12), transparent 30%),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.about-badge {
  width: 112px;
  height: 112px;
  padding: 14px;
  border-radius: 34px;
  background: linear-gradient(135deg, #eff8ff, #ffffff);
  border: 1px solid var(--line);
}

.about-copy p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16.5px;
}

.about-copy strong {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: #075fba;
  font-weight: 900;
}

.about-data {
  display: grid;
  gap: 12px;
}

.about-data div {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f7fbff;
}

.about-data span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.about-data strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

/* FINAL CTA */

.final-cta {
  padding: 0 0 112px;
  background: var(--paper);
}

.final-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  padding: 58px;
  overflow: hidden;
  border-radius: 46px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 0%, rgba(25,200,255,.30), transparent 34%),
    linear-gradient(135deg, var(--navy-900), #020713);
  box-shadow: var(--shadow-blue);
}

.final-panel h2 {
  max-width: 760px;
  color: var(--white);
}

.final-panel p {
  max-width: 690px;
  margin-top: 18px;
  color: rgba(242,249,255,.74);
  font-size: 17px;
}

/* FOOTER */

.site-footer {
  padding: 76px 0 30px;
  color: rgba(255,255,255,.72);
  background: #020713;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr .58fr .75fr 1fr;
  gap: 46px;
}

.footer-intro p {
  max-width: 390px;
  margin-top: 20px;
  color: rgba(255,255,255,.58);
  font-size: 14.5px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 16px;
  letter-spacing: -0.025em;
}

.footer-column a,
.footer-column p {
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.55;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-data strong {
  color: rgba(255,255,255,.86);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.footer-bottom p {
  color: rgba(255,255,255,.44);
  font-size: 13px;
}

/* ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s ease, transform .72s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1080px) {
  .hero-frame {
    min-height: 930px;
  }

  .system-grid,
  .showcase-panel,
  .about-card {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card-featured {
    grid-row: auto;
  }

  .process-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .final-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 840px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .site-header {
    top: 12px;
  }

  .nav-shell {
    min-height: 62px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 84px;
    left: 14px;
    right: 14px;
    display: grid;
    justify-content: stretch;
    gap: 6px;
    padding: 14px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(4, 13, 30, .94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 24px 70px rgba(0,0,0,.26);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    justify-content: center;
    min-height: 48px;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    padding: 0;
  }

  .hero-frame {
    min-height: auto;
    border-radius: 0 0 32px 32px;
  }

  .hero-content {
    padding-top: 126px;
    padding-bottom: 92px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 68px);
  }

  .hero-copy p {
    font-size: 15.5px;
  }

  .hero-showcase {
    margin-top: 42px;
  }

  .chip-left,
  .chip-right {
    display: none;
  }

  .glass-spotlight {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .capabilities-strip {
    padding: 30px 0 60px;
  }

  .strip-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .strip-items {
    justify-content: flex-start;
  }

  .system-section,
  .services-section,
  .process-section {
    padding: 78px 0;
  }

  .showcase-section {
    padding: 0 0 78px;
  }

  .showcase-panel,
  .about-card,
  .final-panel {
    padding: 30px;
    border-radius: 32px;
  }

  .system-copy h2,
  .section-center h2,
  .process-header h2,
  .showcase-copy h2,
  .about-copy h2,
  .final-panel h2 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .system-grid {
    gap: 38px;
  }

  .services-grid,
  .process-track {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 48px;
  }

  .about-section,
  .final-cta {
    padding-bottom: 78px;
  }

  .about-badge {
    width: 92px;
    height: 92px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .brand-symbol {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand-name {
    font-size: 14px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-kicker {
    font-size: 12px;
  }

  .showcase-points div {
    grid-template-columns: 1fr;
  }
}
