:root {
  --bg-deep: #080b10;
  --bg-base: #0d1117;
  --bg-elevated: #131820;
  --bg-elevated-2: #1a2030;
  --surface: #ffffff0d;
  --surface-hover: #ffffff14;
  --fg: #e8effe;
  --fg-muted: #7a8fae;
  --fg-subtle: #e8effea6;
  --fg-faint: #7a8fae8c;
  --accent: #3a86ff;
  --accent-bright: #5ba3ff;
  --accent-soft: #8cb4ff;
  --accent-glow: #3a86ff4d;
  --accent-glow-2: #3a86ff26;
  --gold: #ffbe0b;
  --ok: #39d98a;
  --err: #ff5c5c;
  --border: #ffffff12;
  --border-hover: #ffffff1f;
  --border-accent: #3a86ff4d;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;
  --r-full: 9999px;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-7: 28px;
  --sp-8: 32px;
  --sp-9: 36px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;
  --fs-xs: .75rem;
  --fs-sm: .875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  --fs-6xl: 3.75rem;
  --fs-7xl: 4.5rem;
  --fs-8xl: 5.5rem;
  --shadow-card: 0 0 0 1px #ffffff0f, 0 2px 20px #00000073, 0 0 40px #0003;
  --shadow-card-hover: 0 0 0 1px #ffffff1a, 0 8px 40px #0000008c, 0 0 80px #3a86ff1a;
  --shadow-cta: 0 0 0 1px #3a86ff80, 0 4px 14px #3a86ff52, inset 0 1px 0 0 #fff3;
  --shadow-cta-hover: 0 0 0 1px #3a86ff99, 0 6px 24px #3a86ff73, inset 0 1px 0 0 #ffffff40;
  --shadow-soft: 0 1px 0 0 #ffffff0d inset, 0 8px 32px #00000059;
  --shadow-inner-top: inset 0 1px 0 0 #ffffff1a;
  --t-fast: .2s cubic-bezier(.16, 1, .3, 1);
  --t-med: .3s cubic-bezier(.16, 1, .3, 1);
  --t-slow: .6s cubic-bezier(.16, 1, .3, 1);
  --container: 1200px;
  --container-narrow: 920px;
}

*, :before, :after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Geist Sans, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: var(--fs-base);
  color: var(--fg);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11","ss01","ss03";
  line-height: 1.65;
  overflow-x: hidden;
}

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
  border: 0;
}

a {
  color: inherit;
  transition: color var(--t-fast);
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

::selection {
  background: var(--accent);
  color: #fff;
}

.skip-link {
  background: var(--accent);
  color: #fff;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-sm);
  z-index: 9999;
  position: absolute;
  top: 0;
  left: -9999px;
}

.skip-link:focus-visible {
  left: var(--sp-4);
  top: var(--sp-4);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, :before, :after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.aurora {
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at top, #101828 0%, var(--bg-base) 50%, var(--bg-deep) 100%);
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.aurora__blob {
  filter: blur(140px);
  border-radius: 50%;
  position: absolute;
}

.aurora__blob--1 {
  background: radial-gradient(circle, #3a86ff73, #3a86ff00 70%);
  width: 1200px;
  height: 900px;
  animation: 11s ease-in-out infinite floatA;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
}

.aurora__blob--2 {
  background: radial-gradient(circle, #256dd947, #256dd900 70%);
  width: 700px;
  height: 800px;
  animation: 14s ease-in-out infinite floatB;
  top: 25%;
  left: -10%;
}

.aurora__blob--3 {
  background: radial-gradient(circle, #ffbe0b1f, #ffbe0b00 70%);
  width: 800px;
  height: 700px;
  animation: 17s ease-in-out infinite floatC;
  bottom: -10%;
  right: -5%;
}

.aurora__grain {
  opacity: .025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  position: absolute;
  inset: 0;
}

.aurora__grid {
  background-image: linear-gradient(to right, #ffffff06 1px, #0000 1px), linear-gradient(#ffffff06 1px, #0000 1px);
  background-size: 64px 64px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: radial-gradient(#000 30%, #0000 75%);
  mask-image: radial-gradient(#000 30%, #0000 75%);
}

@keyframes floatA {
  0%, 100% {
    transform: translate(-50%) rotate(0);
  }

  50% {
    transform: translate(-50%, 40px) rotate(2deg);
  }
}

@keyframes floatB {
  0%, 100% {
    transform: translate(0) rotate(0);
  }

  50% {
    transform: translate(50px, -30px) rotate(-3deg);
  }
}

@keyframes floatC {
  0%, 100% {
    transform: translate(0) rotate(0);
  }

  50% {
    transform: translate(-40px, 30px) rotate(2deg);
  }
}

.container {
  width: 100%;
  max-width: var(--container);
  padding-inline: clamp(var(--sp-5), 4vw, var(--sp-10));
  margin-inline: auto;
}

.section {
  padding-block: clamp(var(--sp-12), 7vw, var(--sp-24));
  position: relative;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section--alt {
  background: linear-gradient(#0000, #ffffff05, #0000);
}

.eyebrow {
  align-items: center;
  gap: var(--sp-2);
  font-family: JetBrains Mono, SF Mono, Menlo, monospace;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--fg-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  backdrop-filter: blur(12px);
  padding: 6px 14px;
  font-weight: 500;
  display: inline-flex;
}

.eyebrow .dot {
  background: var(--accent);
  width: 6px;
  height: 6px;
  box-shadow: 0 0 12px var(--accent-glow);
  border-radius: 50%;
  animation: 2.4s ease-in-out infinite pulseDot;
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(.85);
  }
}

.display {
  letter-spacing: -.035em;
  background: linear-gradient(#fff 0%, #ffffffeb 50%, #ffffffb8 100%);
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Outfit, Inter, system-ui, sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
}

.display--md {
  letter-spacing: -.025em;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}

.display em {
  background: linear-gradient(120deg, var(--accent-soft), var(--accent), var(--accent-soft));
  color: #0000;
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
  animation: 6s ease-in-out infinite shimmer;
}

.display .grad {
  background: linear-gradient(120deg, var(--accent-soft) 0%, var(--accent) 50%, var(--accent-soft) 100%);
  color: #0000;
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: 8s ease-in-out infinite shimmer;
}

@keyframes shimmer {
  0%, 100% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }
}

.lead {
  font-size: clamp(var(--fs-lg), 1.6vw, var(--fs-xl));
  color: var(--fg-muted);
  max-width: 60ch;
  font-weight: 400;
  line-height: 1.6;
}

.lead--center {
  text-align: center;
  margin-inline: auto;
}

.section__head {
  text-align: center;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
  flex-direction: column;
  display: flex;
}

.btn {
  align-items: center;
  gap: var(--sp-2);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast), color var(--t-fast);
  padding: 12px 22px;
  font-weight: 500;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.btn--lg {
  font-size: var(--fs-base);
  padding: 14px 26px;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-cta);
}

.btn--primary:before {
  content: "";
  background: linear-gradient(110deg, #0000 30%, #fff3 50%, #0000 70%);
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
}

.btn--primary:hover {
  background: var(--accent-bright);
  box-shadow: var(--shadow-cta-hover);
  transform: translateY(-1px);
}

.btn--primary:hover:before {
  transform: translateX(110%);
}

.btn--primary:active {
  transform: translateY(0) scale(.98);
}

.btn--ghost {
  background: var(--surface);
  color: var(--fg);
  box-shadow: inset 0 0 0 1px var(--border), var(--shadow-inner-top);
  backdrop-filter: blur(12px);
}

.btn--ghost:hover {
  background: var(--surface-hover);
  box-shadow: inset 0 0 0 1px var(--border-hover), var(--shadow-inner-top), 0 0 30px #3a86ff1a;
  transform: translateY(-1px);
}

.link {
  color: var(--accent-soft);
  font-size: var(--fs-sm);
  transition: gap var(--t-fast), color var(--t-fast);
  align-items: center;
  gap: 6px;
  font-weight: 500;
  display: inline-flex;
}

.link:hover {
  color: var(--fg);
  gap: 10px;
}

.link--mt {
  margin-top: var(--sp-4);
}

.header {
  z-index: 80;
  padding: var(--sp-4) 0;
  transition: background var(--t-med), border-color var(--t-med), padding var(--t-med);
  border-bottom: 1px solid #0000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header.is-scrolled {
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border);
  padding: var(--sp-3) 0;
  background: #050506b8;
}

.header__inner {
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-6);
  display: flex;
}

.logo {
  align-items: center;
  gap: var(--sp-3);
  font-weight: 600;
  font-size: var(--fs-base);
  letter-spacing: -.02em;
  color: var(--fg);
  display: flex;
}

.logo__mark {
  background: linear-gradient(135deg, var(--accent), #2563eb);
  color: #fff;
  width: 34px;
  height: 34px;
  font-weight: 700;
  font-size: var(--fs-sm);
  border-radius: 10px;
  place-items: center;
  display: grid;
  box-shadow: 0 0 0 1px #ffffff1a, 0 4px 16px #3a86ff66, inset 0 1px #ffffff4d;
}

.logo__text {
  letter-spacing: -.01em;
}

.nav {
  display: none;
}

.nav__list {
  gap: var(--sp-8);
  display: flex;
}

.nav__list a {
  color: var(--fg-muted);
  font-size: var(--fs-sm);
  padding: 6px 0;
  font-weight: 500;
  position: relative;
}

.nav__list a:hover, .nav__list a.is-active {
  color: var(--fg);
}

.nav__list a.is-active:after {
  content: "";
  background: var(--accent);
  height: 2px;
  box-shadow: 0 0 12px var(--accent-glow);
  border-radius: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

.header__cta {
  font-size: var(--fs-sm);
  padding: 10px 18px;
  display: none;
}

.hamburger {
  border-radius: var(--r-sm);
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  display: flex;
}

.hamburger span {
  background: var(--fg);
  width: 22px;
  height: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
  border-radius: 2px;
}

.hamburger[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-6);
  background: #050506f5;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav ul {
  gap: var(--sp-4);
  flex-direction: column;
  display: flex;
}

.mobile-nav a {
  padding: var(--sp-3) 0;
  color: var(--fg);
  font-size: var(--fs-lg);
  font-weight: 500;
  display: block;
}

.mobile-nav a:hover {
  color: var(--accent-soft);
}

.hero {
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: min(100svh, 920px);
  padding: clamp(88px, 11vh, 140px) 0 clamp(56px, 8vh, 100px);
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero--center .hero__inner {
  align-items: center;
  gap: var(--sp-6);
  z-index: 2;
  flex-direction: column;
  max-width: 980px;
  display: flex;
  position: relative;
}

.hero--center .eyebrow {
  margin-bottom: var(--sp-2);
}

.hero--center .display {
  max-width: 18ch;
  margin: 0;
}

.hero--center .lead {
  margin: var(--sp-2) auto 0;
  max-width: 62ch;
}

.display--xl {
  letter-spacing: -.045em;
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  line-height: 1.02;
}

.display--xl em, .display--xl .grad {
  display: inline-block;
}

.display--xl .grad {
  margin-top: var(--sp-2);
  display: block;
}

.hero__actions {
  gap: var(--sp-3);
  margin-top: var(--sp-4);
  flex-wrap: wrap;
  display: flex;
}

.hero__actions--center {
  justify-content: center;
}

.hero__scroll {
  opacity: .55;
  z-index: 2;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll a {
  border: 1.5px solid var(--fg-muted);
  border-radius: 14px;
  place-items: center;
  width: 24px;
  height: 40px;
  display: grid;
  position: relative;
}

.hero__scroll span {
  background: var(--fg-muted);
  border-radius: 2px;
  width: 3px;
  height: 7px;
  animation: 1.8s ease-in-out infinite scrollDot;
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }

  40% {
    opacity: 1;
  }

  80%, 100% {
    opacity: 0;
    transform: translateY(7px);
  }
}

.card {
  padding: var(--sp-8);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-card);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  backdrop-filter: blur(8px);
  isolation: isolate;
  background: linear-gradient(#ffffff0d, #ffffff05);
  position: relative;
  overflow: hidden;
}

.card:before {
  content: "";
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), #3a86ff2e, transparent 40%);
  opacity: 0;
  transition: opacity var(--t-med);
  pointer-events: none;
  z-index: -1;
  position: absolute;
  inset: 0;
}

.card:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, #0000, #ffffff2e, #0000);
  height: 1px;
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
}

.card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}

.card:hover:before {
  opacity: 1;
}

.card--accent {
  border-color: var(--border-accent);
}

.card--accent:after {
  background: linear-gradient(90deg, #0000, #3a86ff8c, #0000);
}

.card__icon {
  border-radius: var(--r-md);
  border: 1px solid var(--border-accent);
  width: 48px;
  height: 48px;
  color: var(--accent-soft);
  margin-bottom: var(--sp-5);
  background: #3a86ff1f;
  place-items: center;
  display: grid;
  box-shadow: inset 0 1px #ffffff14, 0 0 24px #3a86ff26;
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  font-size: var(--fs-xl);
  letter-spacing: -.015em;
  color: var(--fg);
  margin-bottom: var(--sp-3);
  font-weight: 600;
}

.card p {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  margin-bottom: var(--sp-5);
  line-height: 1.65;
}

.check {
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
  flex-direction: column;
  display: flex;
}

.check li {
  font-size: var(--fs-sm);
  color: var(--fg-subtle);
  padding-left: 24px;
  position: relative;
}

.check li:before {
  content: "";
  border: 1px solid var(--border-accent);
  background: #3a86ff2e;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 7px;
  left: 0;
}

.check li:after {
  content: "";
  border-left: 1.5px solid var(--accent-soft);
  border-bottom: 1.5px solid var(--accent-soft);
  width: 6px;
  height: 3px;
  position: absolute;
  top: 11px;
  left: 4px;
  transform: rotate(-45deg);
}

.price {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
  margin-bottom: var(--sp-3);
}

.price strong {
  color: var(--fg);
  font-weight: 600;
  font-size: var(--fs-lg);
  letter-spacing: -.01em;
}

.services__grid {
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);
  grid-template-columns: 1fr;
  display: grid;
}

.services__minor {
  gap: var(--sp-3);
  grid-template-columns: 1fr;
  display: grid;
}

.mini {
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  backdrop-filter: blur(8px);
  transition: all var(--t-fast);
  display: flex;
}

.mini:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  color: var(--fg);
  transform: translateY(-2px);
}

.mini span:first-child {
  border-radius: var(--r-sm);
  width: 32px;
  height: 32px;
  font-size: var(--fs-base);
  background: #3a86ff1a;
  place-items: center;
  display: grid;
}

.why__grid {
  gap: var(--sp-5);
  grid-template-columns: 1fr;
  display: grid;
}

.why__item {
  padding: var(--sp-8);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
  backdrop-filter: blur(8px);
  isolation: isolate;
  background: linear-gradient(#ffffff0b, #ffffff04);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px #ffffff0f, 0 1px #0006, 0 8px 32px -8px #00000080;
}

.why__item:before {
  content: "";
  border-radius: inherit;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 0%),
              #3a86ff29, transparent 45%);
  opacity: 0;
  transition: opacity var(--t-med);
  pointer-events: none;
  z-index: 0;
  position: absolute;
  inset: 0;
}

.why__item:after {
  content: "";
  border-radius: inherit;
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity var(--t-med);
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(135deg, #3a86ff8c 0%, #3a86ff00 35% 70%, #a88cff59 100%);
  padding: 1px;
  position: absolute;
  inset: -1px;
  -webkit-mask-image: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
  mask-image: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
  -webkit-mask-position: 0 0, 0 0;
  mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-origin: content-box, border-box;
  mask-composite: exclude;
  mask-mode: match-source, match-source;
}

.why__item > * {
  z-index: 2;
  position: relative;
}

.why__item:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: inset 0 1px #ffffff1a, 0 1px #0006, 0 18px 48px -12px #0000008c, 0 0 60px -12px #3a86ff47;
}

.why__item:hover:before, .why__item:hover:after {
  opacity: 1;
}

.why__icon {
  border-radius: var(--r-lg);
  width: 48px;
  height: 48px;
  margin-bottom: var(--sp-5);
  color: var(--accent-soft);
  transition: transform var(--t-med), box-shadow var(--t-med);
  background: linear-gradient(135deg, #3a86ff33, #3a86ff0f);
  border: 1px solid #3a86ff59;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  box-shadow: inset 0 1px #ffffff1a, 0 6px 20px -8px #3a86ff73;
}

.why__icon svg {
  width: 24px;
  height: 24px;
}

.why__item:hover .why__icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: inset 0 1px #ffffff2e, 0 10px 28px -8px #3a86ff99;
}

.why__num {
  font-family: JetBrains Mono, SF Mono, monospace;
  font-size: var(--fs-xs);
  color: var(--fg-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  font-weight: 500;
  display: inline-block;
}

.why__item h3 {
  font-size: var(--fs-xl);
  letter-spacing: -.015em;
  margin-bottom: var(--sp-3);
  background: linear-gradient(180deg, var(--fg) 0%, #ededefd9 100%);
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 600;
}

.why__item p {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  line-height: 1.65;
}

.why__perk {
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
  align-items: center;
  gap: var(--sp-2);
  letter-spacing: .01em;
  display: flex;
  font-size: var(--fs-xs) !important;
  color: var(--fg-subtle) !important;
}

.why__perk span {
  width: 16px;
  height: 16px;
  color: var(--accent-bright);
  background: #3a86ff2e;
  border: 1px solid #3a86ff59;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
}

.works__grid {
  gap: var(--sp-5);
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  display: grid;
}

.work {
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-card);
  transition: all var(--t-med);
  background: linear-gradient(#ffffff0d, #ffffff05);
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.work:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.work__media {
  aspect-ratio: 16 / 10;
  background: var(--bg-elevated-2);
  position: relative;
  overflow: hidden;
}

.work__media img {
  object-fit: cover;
  opacity: .85;
  width: 100%;
  height: 100%;
  transition: transform var(--t-slow), opacity var(--t-med);
}

.work:hover .work__media img {
  opacity: 1;
  transform: scale(1.04);
}

.work__media:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(#0000 50%, #050506d9 100%);
  position: absolute;
  inset: 0;
}

.work__body {
  padding: var(--sp-6);
  flex-direction: column;
  flex: 1;
  display: flex;
}

.work__tag {
  font-family: JetBrains Mono, SF Mono, monospace;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent-soft);
  margin-bottom: var(--sp-3);
  display: inline-block;
}

.work h3 {
  font-size: var(--fs-xl);
  letter-spacing: -.015em;
  margin-bottom: var(--sp-3);
  font-weight: 600;
}

.work__body > p {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  margin-bottom: var(--sp-4);
  flex: 1;
}

.work__stats {
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  display: flex;
}

.work__stats li {
  font-size: var(--fs-xs);
  color: var(--fg-muted);
}

.work__stats strong {
  color: var(--fg);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: -.01em;
  display: block;
}

.work__link {
  height: 100%;
  color: inherit;
  transition: transform var(--t-med);
  flex-direction: column;
  text-decoration: none;
  display: flex;
}

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

.work__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--r-2xl);
}

.work__logo {
  border-radius: var(--r-md);
  border: 1px solid var(--border-accent);
  width: 40px;
  height: 40px;
  margin-bottom: var(--sp-4);
  background: #3a86ff1a;
  place-items: center;
  display: grid;
}

.work__logo svg {
  width: 24px;
  height: 24px;
}

.about__grid {
  gap: var(--sp-8);
  grid-template-columns: 1fr;
  align-items: start;
  display: grid;
}

.about__grid .lead {
  margin-block: var(--sp-6);
}

.about__grid > div > p {
  color: var(--fg-muted);
  margin-bottom: var(--sp-6);
}

.about__stats {
  gap: var(--sp-4);
  margin-block: var(--sp-8);
  grid-template-columns: repeat(2, 1fr);
  display: grid;
}

.about__stats > div {
  padding: var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.about__stats strong {
  font-size: var(--fs-3xl);
  letter-spacing: -.03em;
  color: var(--fg);
  margin-bottom: 4px;
  font-weight: 600;
  display: block;
}

.about__stats span {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
}

.certs {
  margin-block: var(--sp-10) var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
}

.certs__lead {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  text-align: center;
  max-width: 620px;
  margin: 0 auto var(--sp-7);
  line-height: 1.6;
}

.certs__groups {
  gap: var(--sp-5);
  grid-template-columns: 1fr;
  display: grid;
}

.certs__group {
  padding: var(--sp-6);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
  background: linear-gradient(#ffffff0a, #ffffff03);
  position: relative;
  box-shadow: inset 0 1px #ffffff0d, 0 6px 22px -10px #00000080;
}

.certs__group:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: inset 0 1px #ffffff14, 0 14px 32px -12px #0000008c, 0 0 40px -16px #3a86ff59;
}

.certs__title {
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: var(--sp-4);
  font-weight: 600;
  display: flex;
}

.certs__title svg {
  flex: none;
  width: 16px;
  height: 16px;
}

.certs__group ul {
  gap: var(--sp-2);
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.certs__group li {
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--fg);
  letter-spacing: -.005em;
  cursor: help;
  display: flex;
}

.certs__group li .dot {
  background: var(--accent-bright);
  border-radius: 50%;
  flex: none;
  width: 6px;
  height: 6px;
  box-shadow: 0 0 8px #3a86ff99;
}

.testimonial {
  max-width: 760px;
  padding: var(--sp-9) var(--sp-8) var(--sp-7);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-2xl);
  text-align: center;
  background: radial-gradient(120% 80% at 50% 0, #3a86ff1a, #0000 55%), linear-gradient(#ffffff0b, #ffffff03);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px #ffffff14, 0 12px 40px -16px #0000008c, 0 0 80px -28px #3a86ff59;
}

.testimonial:before {
  content: "“";
  color: #3a86ff2e;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  font-family: Georgia, Times New Roman, serif;
  font-size: 9rem;
  line-height: 1;
  position: absolute;
  top: 8px;
  left: 24px;
}

.testimonial__rating {
  margin-bottom: var(--sp-5);
  justify-content: center;
  gap: 4px;
  display: flex;
}

.testimonial__rating svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  filter: drop-shadow(0 0 6px #ffbe0b73);
}

.testimonial__quote {
  margin: 0 0 var(--sp-6);
}

.testimonial__quote p {
  font-size: var(--fs-lg);
  color: var(--fg);
  letter-spacing: -.012em;
  margin: 0;
  font-weight: 400;
  line-height: 1.55;
}

.testimonial__quote em {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-soft));
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
  font-weight: 600;
}

.testimonial__author {
  align-items: center;
  column-gap: var(--sp-3);
  row-gap: var(--sp-3);
  padding-top: var(--sp-5);
  margin-top: var(--sp-4);
  border-top: 1px solid var(--border);
  text-align: left;
  grid-template-columns: auto 1fr;
  grid-template-areas: "avatar meta"
                       "note note";
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.testimonial__avatar {
  color: #fff;
  width: 42px;
  height: 42px;
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: .04em;
  background: linear-gradient(135deg, #3a86ff, #2563eb);
  border-radius: 50%;
  flex: none;
  grid-area: avatar;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  box-shadow: inset 0 1px #ffffff40, 0 6px 16px -6px #3a86ff8c;
}

.testimonial__meta {
  text-align: left;
  font-size: var(--fs-sm);
  flex-direction: column;
  grid-area: meta;
  line-height: 1.35;
  display: flex;
}

.testimonial__meta strong {
  color: var(--fg);
  font-weight: 600;
}

.testimonial__meta span {
  color: var(--fg-muted);
  font-size: var(--fs-xs);
}

.testimonial__note {
  margin-top: var(--sp-2);
  color: var(--fg-subtle);
  letter-spacing: .02em;
  text-align: center;
  grid-area: note;
  font-size: 11px;
  font-style: italic;
}

@media (width <= 560px) {
  .testimonial {
    max-width: min(760px, 94vw);
    padding: var(--sp-8) var(--sp-5) var(--sp-7);
  }

  .testimonial:before {
    font-size: 6rem;
    top: 4px;
    left: 12px;
  }

  .testimonial__quote p {
    font-size: var(--fs-base);
    line-height: 1.6;
  }

  .testimonial__author {
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 100%;
  }

  .testimonial__meta {
    text-align: center;
    align-items: center;
  }
}

.process__list {
  gap: var(--sp-5);
  counter-reset: step;
  grid-template-columns: 1fr;
  display: grid;
}

.process__list li {
  padding: var(--sp-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-card);
  transition: all var(--t-med);
  position: relative;
}

.process__list li:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.process__num {
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--accent), #2563eb);
  color: #fff;
  width: 36px;
  height: 36px;
  margin-bottom: var(--sp-5);
  place-items: center;
  font-family: JetBrains Mono, SF Mono, monospace;
  font-weight: 600;
  display: grid;
  box-shadow: 0 0 0 1px #ffffff1a, 0 4px 16px #3a86ff66;
}

.process__list h3 {
  font-size: var(--fs-lg);
  letter-spacing: -.015em;
  margin-bottom: var(--sp-3);
  font-weight: 600;
}

.process__list p {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  line-height: 1.6;
}

.faq__list {
  max-width: var(--container-narrow);
  gap: var(--sp-3);
  flex-direction: column;
  margin-inline: auto;
  display: flex;
}

.faq__list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast);
  overflow: hidden;
}

.faq__list details[open] {
  border-color: var(--border-accent);
  background: linear-gradient(#3a86ff0d, #ffffff05);
}

.faq__list summary {
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  font-weight: 500;
  font-size: var(--fs-base);
  color: var(--fg);
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  transition: color var(--t-fast);
  list-style: none;
  display: flex;
}

.faq__list summary::-webkit-details-marker {
  display: none;
}

.faq__list summary:after {
  content: "";
  border-right: 2px solid var(--fg-muted);
  border-bottom: 2px solid var(--fg-muted);
  width: 14px;
  height: 14px;
  transition: transform var(--t-fast), border-color var(--t-fast);
  transform: rotate(45deg);
}

.faq__list details[open] summary:after {
  border-color: var(--accent-soft);
  transform: rotate(-135deg) translate(-2px, -2px);
}

.faq__list summary:hover {
  color: var(--accent-soft);
}

.faq__list details > :not(summary) {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  line-height: 1.7;
}

.faq__list details > p:not(:last-child) {
  padding-bottom: var(--sp-3);
}

.faq__list details ul {
  padding: 0 var(--sp-6) var(--sp-3) calc(var(--sp-6) + 18px);
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.faq__list details li {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  padding-left: 14px;
  position: relative;
}

.faq__list details li:before {
  content: "";
  background: var(--accent);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 9px;
  left: 0;
}

.contact__grid {
  gap: var(--sp-8);
  grid-template-columns: 1fr;
  align-items: start;
  display: grid;
}

.contact__copy h2 {
  margin-bottom: var(--sp-5);
}

.contact__copy .lead {
  margin-bottom: var(--sp-8);
}

.contact__channels {
  gap: var(--sp-3);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
  flex-direction: column;
  display: flex;
}

.contact__channels li {
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-3) 0;
  display: flex;
}

.contact__channels strong {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--fg-muted);
  margin-bottom: 2px;
  font-family: JetBrains Mono, SF Mono, monospace;
  display: block;
}

.contact__channels a {
  color: var(--fg);
  font-size: var(--fs-base);
  font-weight: 500;
}

.contact__channels a:hover {
  color: var(--accent-soft);
}

.contact__form {
  padding: var(--sp-8);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-card);
  background: linear-gradient(#ffffff0a, #ffffff05);
  position: relative;
}

.contact__form h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-6);
  letter-spacing: -.01em;
  font-weight: 600;
}

.field {
  margin-bottom: var(--sp-4);
  display: block;
}

.field > span, .field label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--fg-muted);
  margin-bottom: var(--sp-2);
  font-family: JetBrains Mono, SF Mono, monospace;
  font-weight: 500;
  display: block;
}

.form__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-6);
  letter-spacing: -.01em;
  color: var(--fg);
  font-weight: 600;
}

.btn--block {
  justify-content: center;
  width: 100%;
  display: flex;
}

.field input, .field select, .field textarea {
  background: var(--bg-elevated-2);
  border: 1px solid var(--border-hover);
  border-radius: var(--r-sm);
  width: 100%;
  color: var(--fg);
  font-size: var(--fs-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  padding: 12px 14px;
}

.field input::placeholder, .field textarea::placeholder {
  color: var(--fg-faint);
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  background: var(--bg-elevated);
  outline: none;
  box-shadow: 0 0 0 3px #3a86ff26;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.form__note {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  margin-top: var(--sp-5);
}

.form__note a {
  color: var(--accent-soft);
}

.form__note a:hover {
  color: var(--fg);
}

.form__feedback {
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
}

.form__feedback.is-success {
  color: #86efac;
  background: #22c55e1a;
  border: 1px solid #22c55e4d;
}

.form__feedback.is-error {
  color: #fca5a5;
  background: #ef44441a;
  border: 1px solid #ef44444d;
}

.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-10);
  margin-top: var(--sp-12);
  position: relative;
}

.footer:before {
  content: "";
  background: linear-gradient(90deg, #0000, #3a86ff66, #0000);
  height: 1px;
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
}

.footer__inner {
  gap: var(--sp-6);
  padding-bottom: var(--sp-8);
  grid-template-columns: 1fr;
  display: grid;
}

.footer h4 {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--fg);
  margin-bottom: var(--sp-2);
  font-family: JetBrains Mono, SF Mono, monospace;
  font-weight: 600;
}

.footer ul {
  gap: var(--sp-2);
  flex-direction: column;
  display: flex;
}

.footer a {
  color: var(--fg-muted);
  font-size: var(--fs-sm);
  line-height: 1.45;
}

.footer a:hover {
  color: var(--accent-soft);
}

.footer__brand p {
  color: var(--fg-muted);
  font-size: var(--fs-sm);
  margin-top: var(--sp-3);
  max-width: 32ch;
  line-height: 1.5;
}

.footer__ruc {
  font-family: JetBrains Mono, SF Mono, monospace;
  font-size: var(--fs-xs) !important;
  color: var(--fg-faint) !important;
  margin-top: var(--sp-2) !important;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: var(--sp-3) 0;
  font-size: var(--fs-xs);
  color: var(--fg-muted);
  letter-spacing: .05em;
  font-family: JetBrains Mono, SF Mono, monospace;
}

.footer__bottom .container {
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  display: flex;
}

.footer__legal a {
  margin: 0 var(--sp-2);
  color: var(--fg-muted);
}

.footer__legal a:hover {
  color: var(--accent-soft);
}

.logo.logo--footer {
  gap: var(--sp-2);
  font-size: var(--fs-sm);
}

.logo--footer .logo__mark {
  width: 26px;
  height: 26px;
  font-size: var(--fs-xs);
}

.fab {
  z-index: 60;
  color: #fff;
  width: 56px;
  height: 56px;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  background: #25d366;
  border-radius: 50%;
  place-items: center;
  animation: 2.6s ease-out infinite ringPulse;
  display: grid;
  position: fixed;
  bottom: 24px;
  right: 24px;
  box-shadow: 0 8px 30px #25d36666, 0 0 #25d36680;
}

.fab:hover {
  transform: scale(1.06);
}

.fab svg {
  width: 28px;
  height: 28px;
}

@keyframes ringPulse {
  0% {
    box-shadow: 0 8px 30px #25d36666, 0 0 #25d36680;
  }

  60% {
    box-shadow: 0 8px 30px #25d36666, 0 0 0 18px #25d36600;
  }

  100% {
    box-shadow: 0 8px 30px #25d36666, 0 0 #25d36600;
  }
}

.cookies {
  z-index: 70;
  max-width: 380px;
  padding: var(--sp-5);
  border: 1px solid var(--border-hover);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  font-size: var(--fs-sm);
  color: var(--fg);
  background: #0a0a0ce6;
  position: fixed;
  bottom: 20px;
  left: 20px;
}

.cookies p {
  margin-bottom: var(--sp-3);
  color: var(--fg-muted);
}

.cookies__actions {
  gap: var(--sp-2);
  display: flex;
}

.cookies__actions .btn {
  font-size: var(--fs-xs);
  padding: 8px 16px;
}

.cookies[hidden] {
  display: none;
}

.modal {
  background: none;
  border: 0;
  width: 90vw;
  max-width: 560px;
  margin: auto;
  padding: 0;
}

.modal::backdrop {
  backdrop-filter: blur(8px);
  background: #020203bf;
}

.modal__inner {
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-card-hover);
}

.modal h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-4);
  letter-spacing: -.015em;
  font-weight: 600;
}

.modal p {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  margin-bottom: var(--sp-3);
  line-height: 1.65;
}

.modal__close {
  margin-top: var(--sp-5);
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  padding: 8px 16px;
  font-weight: 500;
  display: inline-block;
}

.hero--inner {
  min-height: 60vh;
  padding: 160px 0 var(--sp-16);
  text-align: center;
}

.section__cta {
  text-align: center;
  padding: var(--sp-16) 0;
}

.section__cta h2 {
  margin-bottom: var(--sp-5);
}

.section__cta p {
  color: var(--fg-muted);
  margin-bottom: var(--sp-6);
}

.mt-lg {
  margin-top: var(--sp-8);
}

.center {
  text-align: center;
}

.article {
  max-width: 740px;
  padding: var(--sp-12) var(--sp-5);
  font-size: var(--fs-base);
  color: var(--fg-subtle);
  margin: 0 auto;
  line-height: 1.75;
}

.article h1, .article h2, .article h3 {
  color: var(--fg);
  margin-block: var(--sp-8) var(--sp-4);
  letter-spacing: -.02em;
}

.article h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
}

.article h2 {
  font-size: var(--fs-2xl);
  font-weight: 600;
}

.article h3 {
  font-size: var(--fs-xl);
  font-weight: 600;
}

.article p {
  margin-bottom: var(--sp-4);
}

.article ul, .article ol {
  padding-left: var(--sp-5);
  margin-bottom: var(--sp-4);
  list-style: outside;
}

.article ul li, .article ol li {
  margin-bottom: 6px;
}

.article a {
  color: var(--accent-soft);
  border-bottom: 1px solid var(--border-accent);
}

.article a:hover {
  color: var(--fg);
  border-bottom-color: var(--accent);
}

.article strong {
  color: var(--fg);
  font-weight: 600;
}

.article code {
  background: var(--bg-elevated-2);
  color: var(--accent-soft);
  border-radius: 4px;
  padding: 2px 6px;
  font-family: JetBrains Mono, SF Mono, monospace;
  font-size: .92em;
}

.article blockquote {
  margin: var(--sp-6) 0;
  padding: var(--sp-5) var(--sp-6);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--fg);
  font-size: var(--fs-lg);
  background: #3a86ff0d;
  font-style: italic;
}

.error-page {
  text-align: center;
  min-height: 100vh;
  padding: var(--sp-10) var(--sp-5);
  justify-content: center;
  align-items: center;
  gap: var(--sp-6);
  flex-direction: column;
  display: flex;
}

[data-reveal] {
  opacity: 0;
  transition: opacity var(--t-slow), transform var(--t-slow);
  transform: translateY(24px);
}

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

.nav__irene {
  align-items: center;
  gap: 8px;
  display: inline-flex;
  color: var(--fg) !important;
  font-weight: 600 !important;
}

.nav__pill {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0d1117;
  background: linear-gradient(135deg, var(--gold), #e6a800);
  border-radius: var(--r-full);
  align-items: center;
  padding: 2px 8px;
  font-family: JetBrains Mono, SF Mono, monospace;
  font-size: 10px;
  font-weight: 600;
  animation: 2.4s ease-in-out infinite pillPulse;
  display: inline-flex;
  box-shadow: 0 0 12px #ffbe0b73;
}

@keyframes pillPulse {
  0%, 100% {
    box-shadow: 0 0 12px #ffbe0b73;
  }

  50% {
    box-shadow: 0 0 20px #ffbe0bbf;
  }
}

.dot--live {
  box-shadow: 0 0 10px var(--ok);
  animation: 1.6s ease-in-out infinite pulseDot;
  background: var(--ok) !important;
}

.launch {
  padding-block: clamp(var(--sp-8), 4vw, var(--sp-12));
  position: relative;
}

.launch__card {
  background: linear-gradient(135deg, #3a86ff1a, #2563eb0f 40%, #ffffff05 100%),
    var(--surface);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-2xl);
  isolation: isolate;
  grid-template-columns: 1fr;
  gap: 0;
  display: grid;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px #3a86ff2e, 0 20px 60px #00000073, 0 0 80px #3a86ff2e;
}

.launch__card:before {
  content: "";
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(50% 70% at 50% 0, #3a86ff2e, #0000 70%);
  position: absolute;
  inset: 0;
}

.launch__media {
  aspect-ratio: 16 / 10;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.launch__media img {
  object-fit: cover;
  object-position: center 30%;
  width: 100%;
  height: 100%;
  transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
}

.launch__card:hover .launch__media img {
  transform: scale(1.04);
}

.launch__media:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(#0000 40%, #050506d9 100%);
  position: absolute;
  inset: 0;
}

.launch__glow {
  filter: blur(60px);
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(60% 50%, #3a86ff8c, #0000 70%);
  height: 60%;
  position: absolute;
  inset: auto -20% -50%;
}

.launch__body {
  z-index: 3;
  padding: var(--sp-8);
  gap: var(--sp-4);
  flex-direction: column;
  display: flex;
  position: relative;
}

.launch__body .display {
  margin: 0;
}

.launch__body .lead {
  margin: var(--sp-2) 0 0;
}

.launch__perks {
  gap: var(--sp-2);
  margin: var(--sp-2) 0;
  flex-direction: column;
  padding: 0;
  display: flex;
}

.launch__perks li {
  font-size: var(--fs-base);
  color: var(--fg-muted);
  align-items: center;
  gap: 10px;
  list-style: none;
  display: flex;
}

.launch__perks li:before {
  content: "";
  border: 1px solid var(--border-accent);
  background: #3a86ff26 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2.5 6.5L5 9l4.5-5' fill='none' stroke='%233A86FF' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>") center no-repeat;
  border-radius: 50%;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.launch__actions {
  gap: var(--sp-3);
  margin-top: var(--sp-2);
  flex-wrap: wrap;
  display: flex;
}

.launch__note {
  font-size: var(--fs-xs);
  color: var(--fg-subtle);
  letter-spacing: .04em;
  margin: 0;
  font-family: JetBrains Mono, SF Mono, monospace;
}

.badge--accent {
  border: 1px solid var(--border-accent);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: .06em;
  background: #3a86ff1a;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 6px 14px;
  font-family: JetBrains Mono, SF Mono, monospace;
  font-weight: 500;
  display: inline-flex;
}

.about--compact .section__head {
  margin-bottom: var(--sp-10);
}

.about__stats--row {
  gap: var(--sp-3);
  max-width: 880px;
  margin: 0 auto var(--sp-8);
  grid-template-columns: repeat(2, 1fr);
  display: grid;
}

.about__certs--center {
  justify-content: center;
}

@media (width <= 480px) {
  .container {
    padding-inline: var(--sp-4);
  }

  .section {
    padding-block: var(--sp-12);
  }

  .hero {
    padding-top: 110px;
    padding-bottom: 70px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 340px;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .display--xl {
    letter-spacing: -.035em;
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .lead {
    font-size: var(--fs-base);
  }

  .badge--accent {
    font-size: 11px;
  }
}

@media (width >= 640px) {
  .services__minor, .about__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__stats--row {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .footer__inner {
    gap: var(--sp-6);
    grid-template-columns: 1fr 1fr;
  }

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

@media (width >= 768px) {
  .nav, .header__cta {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .hero {
    padding-top: clamp(100px, 12vh, 140px);
    padding-bottom: clamp(64px, 8vh, 100px);
  }

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

  .footer__inner {
    gap: var(--sp-6);
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width >= 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services__minor {
    grid-template-columns: repeat(4, 1fr);
  }

  .why__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process__list, .certs__groups {
    grid-template-columns: repeat(4, 1fr);
  }

  .about__grid {
    gap: var(--sp-12);
    grid-template-columns: 1.3fr 1fr;
  }

  .contact__grid {
    gap: var(--sp-12);
    grid-template-columns: 1fr 1.2fr;
  }

  .footer__inner {
    gap: var(--sp-6) var(--sp-8);
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  }

  .launch {
    padding-block: clamp(var(--sp-6), 2.5vh, var(--sp-10));
  }

  .launch__card {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }

  .launch__media {
    aspect-ratio: 4 / 5;
    min-height: 0;
    max-height: min(52vh, 440px);
    height: auto;
  }

  .launch__media img {
    object-position: center 22%;
  }

  .launch__body {
    padding: var(--sp-7) var(--sp-9);
    gap: var(--sp-3);
    justify-content: center;
  }

  .launch__body .display {
    font-size: clamp(1.65rem, 2vw, 2.35rem);
    line-height: 1.15;
    letter-spacing: -.022em;
  }

  .launch__body .lead {
    font-size: var(--fs-base);
    line-height: 1.5;
    margin: 0;
  }

  .launch__perks {
    margin: 0;
    gap: 2px;
  }

  .launch__perks li {
    font-size: var(--fs-sm);
    gap: 8px;
  }

  .launch__perks li:before {
    width: 16px;
    height: 16px;
  }

  .launch__price {
    margin-top: var(--sp-2);
    font-size: var(--fs-xs);
  }

  .launch__actions {
    margin-top: var(--sp-1);
    gap: var(--sp-2);
  }

  .launch__body .btn--lg {
    padding: 11px 20px;
    font-size: var(--fs-sm);
  }

  .launch__note {
    font-size: 11px;
  }

  .launch__media:after {
    background: linear-gradient(90deg, #0000 40%, #05050699 100%);
  }

  .launch__glow {
    width: 60%;
    height: 120%;
    inset: auto -50% -50% auto;
  }

  .works__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(220px, auto);
  }

  .work--feature {
    grid-area: span 2 / span 4;
  }

  .work--feature .work__media {
    aspect-ratio: auto;
    flex: 1;
  }

  .work--tall {
    grid-area: span 2 / span 2;
  }

  .work--wide {
    grid-column: span 3;
  }

  .work--std {
    grid-column: span 2;
  }

  .work--full {
    flex-direction: row;
    grid-column: span 6;
  }

  .work--full .work__media {
    aspect-ratio: auto;
    flex: 0 0 45%;
    max-width: 45%;
    height: 100%;
  }

  .work--full .work__body {
    padding: var(--sp-8);
  }
}

@media (width >= 1280px) {
  .hero {
    padding-top: clamp(120px, 14vh, 168px);
    padding-bottom: clamp(72px, 10vh, 128px);
  }
}

@media (width <= 1366px) {
  .hero--center .hero__inner {
    max-width: min(920px, 94vw);
  }

  .display--xl {
    letter-spacing: -.04em;
    font-size: clamp(2.4rem, 4.8vw, 4.75rem);
  }

  .hero--center .display {
    max-width: 22ch;
  }
}

@media (height <= 820px) {
  .hero {
    min-height: 0;
    padding-top: clamp(72px, 10vh, 120px);
    padding-bottom: clamp(40px, 6vh, 72px);
  }

  .display--xl {
    font-size: clamp(2.2rem, 4.2vw, 3.75rem);
  }
}

@media (width >= 1440px) {
  :root {
    --container: 1240px;
  }

  .display--xl {
    font-size: clamp(3.5rem, 6vw, 7rem);
  }

  .hero--center .display {
    max-width: 20ch;
  }
}

@media (width >= 1920px) {
  :root {
    --container: 1320px;
  }
}

.field--hp {
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute !important;
  left: -9999px !important;
  overflow: hidden !important;
}

.launch__price {
  margin-top: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  max-width: 52ch;
}

.launch__price a {
  color: var(--accent-soft);
  text-underline-offset: 3px;
  text-decoration: underline;
}

.launch__price a:hover {
  color: var(--accent-bright);
}

.irene-video__box {
  gap: var(--sp-8);
  margin-top: var(--sp-8);
  align-items: center;
  display: grid;
}

@media (width >= 900px) {
  .irene-video__box {
    grid-template-columns: 1.1fr 1fr;
  }
}

.irene-video__placeholder {
  border-radius: var(--r-2xl);
  border: 1px solid var(--border);
  justify-content: center;
  align-items: center;
  gap: var(--sp-3);
  min-height: 280px;
  box-shadow: var(--shadow-card);
  background: linear-gradient(145deg, #3a86ff1f, #050506e6);
  flex-direction: column;
  display: flex;
  position: relative;
}

.irene-video__play {
  border-radius: var(--r-full);
  border: 1px solid var(--border-accent);
  width: 64px;
  height: 64px;
  color: var(--fg);
  background: #3a86ff59;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  display: flex;
}

.irene-video__placeholder p {
  color: var(--fg-muted);
  font-size: var(--fs-sm);
}

.irene-video__cta {
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

@media (width >= 900px) {
  .irene-video__cta {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.footer__newsletter-text {
  color: var(--fg-muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-2);
  max-width: 28ch;
  line-height: 1.45;
}

.footer__newsletter-btn {
  margin-top: var(--sp-1);
}

.blog-preview__grid {
  gap: var(--sp-5);
  margin-top: var(--sp-2);
  grid-template-columns: 1fr;
  display: grid;
}

.blog-card {
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-card);
  transition: border-color var(--t-med), box-shadow var(--t-med), transform var(--t-med);
  margin: 0;
  overflow: hidden;
}

.blog-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.blog-card__link {
  height: 100%;
  color: inherit;
  flex-direction: column;
  text-decoration: none;
  display: flex;
}

.blog-card__media {
  aspect-ratio: 16 / 10;
  background: var(--bg-elevated-2);
  position: relative;
  overflow: hidden;
}

.blog-card__media img {
  object-fit: cover;
  opacity: .92;
  width: 100%;
  height: 100%;
  transition: transform var(--t-slow), opacity var(--t-med);
}

.blog-card:hover .blog-card__media img {
  opacity: 1;
  transform: scale(1.04);
}

.blog-card__badge {
  top: var(--sp-3);
  right: var(--sp-3);
  border-radius: var(--r-full);
  border: 1px solid var(--border-accent);
  width: 36px;
  height: 36px;
  color: var(--accent-soft);
  backdrop-filter: blur(10px);
  background: #0d1117c7;
  place-items: center;
  display: grid;
  position: absolute;
}

.blog-card__badge svg {
  width: 18px;
  height: 18px;
}

.blog-card__badge--tech {
  color: var(--gold);
  border-color: #ffbe0b73;
}

.blog-card__body {
  padding: var(--sp-5);
  gap: var(--sp-2);
  flex-direction: column;
  flex: 1;
  display: flex;
}

.blog-card__meta {
  font-size: var(--fs-xs);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-family: JetBrains Mono, SF Mono, monospace;
}

.blog-card__meta time {
  color: var(--fg-muted);
  text-transform: none;
  letter-spacing: .02em;
}

.blog-card__cat {
  color: var(--accent-soft);
}

.blog-card__title {
  font-family: Outfit, Inter, system-ui, sans-serif;
  font-size: var(--fs-lg);
  letter-spacing: -.02em;
  color: var(--fg);
  transition: color var(--t-fast);
  margin: 0;
  font-weight: 600;
  line-height: 1.35;
}

.blog-card:hover .blog-card__title {
  color: var(--accent-bright);
}

.blog-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  flex: 1;
  margin: 0;
  line-height: 1.65;
}

.blog-preview__foot {
  margin-top: var(--sp-10);
  text-align: center;
}

@media (width >= 768px) {
  .blog-preview__grid {
    gap: var(--sp-5);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-index__cta {
  margin-top: var(--sp-12);
}

.blog-index__sub {
  margin-bottom: var(--sp-6);
  justify-content: center;
}

.blog-index__sub--spaced {
  margin: var(--sp-16) 0 var(--sp-6);
  justify-content: center;
}

.triage__grid {
  gap: var(--sp-4);
  grid-template-columns: 1fr;
  display: grid;
}

@media (width >= 768px) {
  .triage__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.triage__card {
  gap: var(--sp-2);
  padding: var(--sp-6);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--surface);
  color: inherit;
  flex-direction: column;
  text-decoration: none;
  transition: border-color .2s, transform .2s;
  display: flex;
}

.triage__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.triage__card--accent {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

.triage__icon {
  font-size: 1.75rem;
}

.sectors {
  margin: var(--sp-8) 0 var(--sp-4);
  text-align: center;
}

.sectors__label {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  margin-bottom: var(--sp-3);
}

.sectors__list {
  gap: var(--sp-2);
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  list-style: none;
  display: flex;
}

.sectors__list li {
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  font-size: var(--fs-sm);
  color: var(--fg-muted);
}

.sectors__list a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast), border-color var(--t-fast);
}

.sectors__list a:hover {
  color: var(--fg);
}

.sectors__list li:has(a:hover) {
  border-color: var(--border-hover);
}

.irene-demo__box {
  padding: var(--sp-8);
  max-width: 720px;
  margin: 0 auto;
}

.irene-demo__cta {
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.fab--pulse {
  animation: 2.5s ease-in-out infinite fabPulse;
}

@keyframes fabPulse {
  0%, 100% {
    box-shadow: 0 0 #22c55e73;
  }

  50% {
    box-shadow: 0 0 0 12px #22c55e00;
  }
}

.newsletter-form {
  margin-top: var(--sp-2);
  max-width: 280px;
}

.newsletter-form .field {
  margin-bottom: var(--sp-2);
}

.field--check {
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--fg-muted);
  align-items: flex-start;
  display: flex;
}

.related-links {
  margin: var(--sp-10) 0;
  padding: var(--sp-6);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
}

.related-links__list {
  margin: var(--sp-3) 0 0;
  padding: 0;
  list-style: none;
}

.related-links__list li {
  margin-bottom: var(--sp-2);
}

.roi-calc {
  max-width: 520px;
  margin: var(--sp-8) auto;
  padding: var(--sp-6);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
}

.roi-calc output {
  margin-top: var(--sp-4);
  font-size: var(--fs-lg);
  color: var(--accent);
  display: block;
}
/* CREINFOR · Mejoras 2026 (relanzamiento) — componentes nuevos + mobile-first */
.answer-block{position:relative;margin:var(--sp-5) auto var(--sp-6);max-width:80ch;padding:var(--sp-5) var(--sp-6);background:linear-gradient(180deg,rgba(58,134,255,.08),rgba(58,134,255,.03));border:1px solid var(--border-accent);border-left:3px solid var(--accent);border-radius:var(--r-md);color:var(--fg-subtle);font-size:var(--fs-base);line-height:1.7;text-align:left}
.answer-block strong{color:var(--fg)}
.trust-grid{display:grid;gap:var(--sp-5);grid-template-columns:repeat(auto-fit,minmax(260px,1fr));margin-top:var(--sp-8)}
.trust-card{padding:var(--sp-6);background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);box-shadow:var(--shadow-soft);transition:transform var(--t-fast),border-color var(--t-fast),box-shadow var(--t-fast)}
.trust-card:hover{transform:translateY(-3px);border-color:var(--border-hover);box-shadow:var(--shadow-card-hover)}
.trust-card__icon{display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;margin-bottom:var(--sp-4);border-radius:var(--r-md);color:var(--accent-soft);background:var(--accent-glow-2);border:1px solid var(--border-accent)}
.trust-card h3{font-size:var(--fs-lg);font-weight:600;margin-bottom:var(--sp-3);color:var(--fg)}
.trust-card p{color:var(--fg-muted);font-size:var(--fs-sm);line-height:1.65}
.founder-card{display:flex;gap:var(--sp-6);align-items:flex-start;margin-top:var(--sp-8);padding:var(--sp-7);text-align:left}
.founder-card__avatar{flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;width:60px;height:60px;border-radius:var(--r-full);color:var(--accent-soft);background:var(--accent-glow-2);border:1px solid var(--border-accent)}
.founder-card__body h3{font-size:var(--fs-xl);font-weight:600;margin:var(--sp-1) 0 var(--sp-3);color:var(--fg)}
.founder-card__body>p{color:var(--fg-muted);margin-bottom:var(--sp-3)}
.founder-card__certs{padding:var(--sp-3) var(--sp-4);border-radius:var(--r-sm);background:rgba(255,190,11,.08);border:1px dashed rgba(255,190,11,.35);color:var(--fg-subtle);font-size:var(--fs-sm);line-height:1.6}
.founder-card__certs strong{color:var(--gold)}
.founders-program{margin-top:var(--sp-8);padding:var(--sp-8);text-align:left}
.founders-program h3{font-size:var(--fs-2xl);font-weight:700;margin:var(--sp-3) 0 var(--sp-4);color:var(--fg)}
.founders-program>p{color:var(--fg-subtle);margin-bottom:var(--sp-5);max-width:64ch}
.founders-program .check{margin-bottom:var(--sp-6)}
.btn{min-height:44px;justify-content:center}
.header__cta,.mobile-nav a,.fab{min-height:44px}
.faq__list summary{min-height:44px}
.section__cta .btn{margin:var(--sp-2) var(--sp-2) 0}
@media (max-width:560px){.answer-block{padding:var(--sp-4) var(--sp-5);font-size:var(--fs-sm)}.founder-card{flex-direction:column;gap:var(--sp-4);padding:var(--sp-6)}.founders-program{padding:var(--sp-6)}.trust-grid{grid-template-columns:1fr}.section__cta .btn,.hero__actions .btn{width:100%}}
.glossary{margin-top:var(--sp-8);display:grid;gap:var(--sp-5)}
.glossary__item{padding:var(--sp-5) var(--sp-6);border:1px solid var(--border);border-radius:var(--r-lg);background:var(--surface)}
.glossary__item dt{font-size:var(--fs-lg);font-weight:600;color:var(--fg);margin-bottom:var(--sp-2)}
.glossary__item dd{color:var(--fg-muted);margin:0;line-height:1.65}
.glossary__item a{color:var(--accent-soft)}
