:root {
    --ink: #f7f9fc;
    --ink-soft: rgba(247, 249, 252, 0.72);
    --accent: #6ee7ff;
    --accent-2: #8b7bff;
    --accent-3: #3ddc97;

    --glass: rgba(16, 18, 26, 0.65);
    --glass-strong: rgba(16, 18, 26, 0.8);
    --glass-border: rgba(255, 255, 255, 0.12);
    --shadow: rgba(0, 0, 0, 0.45);

    --max: 1120px;
    --r: 22px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background:
        radial-gradient(circle at 15% 10%, rgba(110, 231, 255, 0.20), transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(139, 123, 255, 0.24), transparent 48%),
        radial-gradient(circle at 50% 90%, rgba(61, 220, 151, 0.10), transparent 55%),
        linear-gradient(135deg, #07080c 0%, #0b1018 45%, #06070b 100%);
    color: var(--ink);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .05) 1px, transparent 0);
    background-size: 22px 22px;
    opacity: .12;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 0;
}

.wrap {
    width: min(var(--max), calc(100% - 2.2rem));
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

/* ---------------- NAV ---------------- */
nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 80px;
    display: flex;
    align-items: center;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    isolation: isolate;
    z-index: 1000;
}

nav::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.12) 45%, transparent 70%);
    opacity: 0.45;
    transform: translateX(-100%);
    animation: navShine 8s ease-in-out infinite;
    pointer-events: none;
}

.nav-inner {
    width: min(var(--max), calc(100% - 2.2rem));
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    user-select: none;
    color: var(--ink);
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background:
        radial-gradient(circle at 25% 20%, rgba(110, 231, 255, .92), transparent 55%),
        radial-gradient(circle at 85% 25%, rgba(139, 123, 255, .92), transparent 55%),
        radial-gradient(circle at 55% 90%, rgba(61, 220, 151, .75), transparent 58%),
        rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}

.brand b {
    letter-spacing: -.02em;
    font-weight: 700;
}

.brand small {
    display: block;
    color: var(--ink-soft);
    font-weight: 600;
    margin-top: -2px;
}

.menu {
    display: flex;
    gap: 0;
    padding: .35rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(12, 14, 20, .32);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .20);
}

.menu a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    padding: .55rem .95rem;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    transition: color .25s ease, transform .25s ease, background .25s ease;
    letter-spacing: .01em;
    white-space: nowrap;
    border: none;
}

.menu a:hover {
    color: var(--accent);
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .06);
}

.menu a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

.menu a:hover::before {
    opacity: .30;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 8px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transform: scaleX(0.6);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
}

.menu a:hover::after {
    opacity: .7;
    transform: scaleX(1);
}

.menu a.is-active {
    background: linear-gradient(135deg, rgba(110, 231, 255, .16), rgba(139, 123, 255, .14));
    border: 1px solid rgba(255, 255, 255, .10);
}

.menu a.is-active::after {
    opacity: .45;
    transform: scaleX(1);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .7rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .05);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .01em;
    user-select: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
    color: var(--ink);
}

.btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .20);
}

.btn.primary {
    background:
        radial-gradient(160px 140px at 20% 20%, rgba(110, 231, 255, .22), transparent 55%),
        radial-gradient(180px 150px at 90% 20%, rgba(139, 123, 255, .18), transparent 55%),
        rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .18);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: background 0.25s ease, transform 0.25s ease;
    position: relative;
    overflow: hidden;
}

.menu-toggle::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.25) 50%, transparent 80%);
    opacity: 0;
    transform: translateX(-60%);
    transition: opacity 0.3s ease, transform 0.35s ease;
    pointer-events: none;
}

.menu-toggle:hover::after {
    opacity: .55;
    transform: translateX(60%);
}

.menu-toggle span {
    background: var(--ink);
    height: 2px;
    width: 26px;
    border-radius: 999px;
    position: absolute;
    transition: transform .35s ease, opacity .25s ease;
    transform-origin: center;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
}

.menu-toggle span:nth-child(2) {
    transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(7px);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.6);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* ---------------- Sections (reveal/blur) ---------------- */
section {
    min-height: 100vh;
    padding: 110px 0 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;

    opacity: 0;
    transform: translateY(60px) scale(0.985);
    filter: blur(6px);
    transition:
        opacity 0.9s ease-out,
        transform 1s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.05s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 10%, var(--section-glow-1, rgba(255, 255, 255, 0.08)), transparent 45%),
        radial-gradient(circle at 80% 12%, var(--section-glow-2, rgba(255, 255, 255, 0.06)), transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%);
    opacity: 0.9;
    pointer-events: none;
}

section>* {
    position: relative;
    z-index: 1;
}

.panel {
    border-radius: var(--r);
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
    overflow: hidden;
}

h1,
h2 {
    letter-spacing: -0.03em;
    line-height: 1.02;
    margin: 0 0 1rem;
}

h1 {
    font-size: clamp(2.2rem, 4.8vw, 4.1rem);
}

h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

p {
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0;
}

.outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .55);
    text-shadow: 0 18px 50px rgba(0, 0, 0, .32);
}

/* ---------- HERO ---------- */
.hero {
    --section-glow-1: rgba(110, 231, 255, 0.18);
    --section-glow-2: rgba(139, 123, 255, 0.16);
    background: linear-gradient(135deg, #0a111b 0%, #0d1a29 55%, #0a111a 100%);
    text-align: left;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
    align-items: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .35rem .7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    color: rgba(247, 249, 252, .78);
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .72rem;
}

.hero-actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-top: 1.3rem;
}

/* Code layer ambiental (sin recuadro, sin blur, sin mask) */
.code-screen{
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: none;
  height: auto;
  overflow: visible;

  white-space: pre-wrap;
  overflow-wrap: anywhere;

  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 500;

  /* legibilidad baja por transparencia, no por blur */
  opacity: .92; /* deja el contenedor estable */
  filter: none;

  /* “haze” sutil sin lavar tanto */
  text-shadow:
    0 0 10px rgba(110,231,255,.08),
    0 0 18px rgba(139,123,255,.07);

  transition: opacity 220ms ease, transform 220ms ease;
}

/* overlay MUY sutil, detrás del texto */
.code-screen::after{
  content:"";
  position:absolute;
  inset:-40px;
  pointer-events:none;
  z-index: -1;

  background:
    radial-gradient(circle at 30% 30%, rgba(110,231,255,.10), transparent 10%),
    radial-gradient(circle at 70% 30%, rgba(139,123,255,.10), transparent 10%),
    radial-gradient(circle at 50% 85%, rgba(61,220,151,.07), transparent 10%);

  filter: blur(80px);
  opacity:.10;            /* antes era demasiado */
  mix-blend-mode: normal; /* screen lava el contraste */
}

/* wipe transición */
.code-screen.wipe{
  opacity: 0;
  transform: translateY(10px);
}

/* Colores con alpha (esto es lo que “difumina” sin blur) */
.kw { color: rgba(139,123,255,.10); }
.id { color: rgba(110,231,255,.10); }
.str{ color: rgba(61,220,151,.10); }
.pun{ color: rgba(247,249,252,.10); }

/* opcional: el texto normal (sin clase) más suave */
.code-screen{
  color: rgba(247,249,252,.10);
}

.cursor {
    display: inline-block;
    background-color: #b9fff1;
    width: 10px;
    height: 1em;
    animation: blink 0.7s steps(1) infinite;
    vertical-align: middle;
    margin-left: 2px;
}

.hero-blobs {
    position: absolute;
    inset: -60px -40px -40px -40px;
    pointer-events: none;
    opacity: .9;
}

.blob {
    position: absolute;
    width: 340px;
    height: 260px;
    border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
    background:
        radial-gradient(circle at 30% 30%, rgba(110, 231, 255, .70), transparent 55%),
        radial-gradient(circle at 65% 35%, rgba(139, 123, 255, .60), transparent 58%),
        radial-gradient(circle at 55% 75%, rgba(61, 220, 151, .45), transparent 58%);
    mix-blend-mode: screen;
    opacity: .55;
    animation: floaty 10s ease-in-out infinite;
}

.blob.b2 {
    width: 360px;
    height: 300px;
    left: 46%;
    top: 10%;
    opacity: .48;
    animation-duration: 12s;
    animation-delay: -2s;
}

.blob.b3 {
    width: 420px;
    height: 340px;
    left: 10%;
    top: 48%;
    opacity: .42;
    animation-duration: 14s;
    animation-delay: -5s;
}

@keyframes floaty {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(18px, -12px) rotate(2deg) scale(1.03);
    }
}

/* ---------- SERVICES ---------- */
.services {
    --section-glow-1: rgba(139, 123, 255, 0.18);
    --section-glow-2: rgba(61, 220, 151, 0.12);
    background: linear-gradient(135deg, #0b141f 0%, #0f2133 60%, #0b1420 100%);
}

.sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 18px;
    text-align: left;
}

.sec-head p {
    max-width: 60ch;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 18px;
}

.card {
    padding: 16px;
    border-radius: var(--r);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(12, 14, 20, .45);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .28);
    position: relative;
    overflow: hidden;
    min-height: 170px;
    text-align: left;
}

.card::before {
    content: "";
    position: absolute;
    inset: -60px -60px auto -60px;
    height: 160px;
    background:
        radial-gradient(circle at 25% 50%, rgba(110, 231, 255, .16), transparent 60%),
        radial-gradient(circle at 65% 45%, rgba(139, 123, 255, .14), transparent 60%);
    opacity: .9;
    pointer-events: none;
}

.card>* {
    position: relative;
    z-index: 1;
}

.num {
    font-weight: 900;
    letter-spacing: .08em;
    color: rgba(247, 249, 252, .55);
    text-transform: uppercase;
    font-size: .78rem;
}

.card h3 {
    margin: .45rem 0 .55rem;
    font-size: 1.05rem;
    letter-spacing: -.01em;
}

.card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: .95rem;
}

/* ---------- NEO ---------- */
.neo {
    --section-glow-1: rgba(110, 231, 255, 0.22);
    --section-glow-2: rgba(139, 123, 255, 0.18);
    background: linear-gradient(135deg, #070b12 0%, #0f1926 65%, #080c13 100%);
}

.neo-inner {
    display: grid;
    gap: 18px;
    place-items: center;
}

.neo-container {
    position: relative;
    font-family: 'Space Grotesk', 'Arial', sans-serif;
    font-size: clamp(64px, 9vw, 120px);
    color: white;
    text-transform: uppercase;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    gap: 0.04em;
    --neo-letter-width: 0.6em;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .45));
}

.neo-container::after{
  display: none;
}

.neo-letter,
.neo-letter-o-new-move,
.neo-letter-o-move {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: var(--neo-letter-width);
    height: 1em;
}

#neo-letter-o,
#neo-letter-o-new {
    position: absolute;
    left: 50%;
    top: 50%;
    transition: transform .5s ease, opacity .5s ease;
    opacity: 1;
}

#neo-letter-o {
    transform: translate(-50%, -50%);
}

#neo-letter-o-new {
    transform: translate(-50%, calc(-50% - 1.2em));
    opacity: 0;
}

.animate-down #neo-letter-o {
    transform: translate(-50%, calc(-50% + 1.5em));
    opacity: 0;
}

.animate-down #neo-letter-o-new {
    transform: translate(-50%, -50%);
    opacity: 1;
}

/* ---------- PROJECTS ---------- */
.projects {
    --section-glow-1: rgba(61, 220, 151, 0.18);
    --section-glow-2: rgba(110, 231, 255, 0.16);
    background: linear-gradient(135deg, #09131f 0%, #0d2030 60%, #091420 100%);
}

.projects-scroll {
    width: 100%;
    max-width: 1100px;
    overflow: hidden;
}

.projects-track {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1.5rem 1rem 2rem;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.projects-track::-webkit-scrollbar {
    display: none;
}

.project-card {
    flex: 0 0 280px;
    height: 220px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 50px var(--shadow);
    position: relative;
    overflow: hidden;
    background: rgba(16, 18, 26, 0.5);
}

.project-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 1.1rem 1.1rem;
    text-align: left;
    background: linear-gradient(180deg, rgba(8, 10, 16, 0) 0%, rgba(8, 10, 16, 0.8) 70%);
}

.project-info h3 {
    margin: 0 0 .35rem;
    font-size: 1.05rem;
}

.project-info p {
    margin: 0;
    font-size: .9rem;
    color: rgba(255, 255, 255, .85);
}

/* ---------- FAQS (NEW) ---------- */
.faqs {
    --section-glow-1: rgba(139, 123, 255, 0.14);
    --section-glow-2: rgba(110, 231, 255, 0.12);
    background: linear-gradient(135deg, #0b141f 0%, #0f2133 60%, #0b1420 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 18px;
}

.faq-item {
    border-radius: var(--r);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(12, 14, 20, .45);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .22);
    overflow: hidden;
    text-align: left;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 800;
    color: rgba(247, 249, 252, .90);
}

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

.faq-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(247, 249, 252, .75);
    font-weight: 900;
    transition: transform .2s ease, background .2s ease;
    flex: 0 0 auto;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: rgba(255, 255, 255, .06);
}

.faq-body {
    padding: 0 16px 16px;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* ---------- CONTACT ---------- */
.contact {
    --section-glow-1: rgba(255, 214, 130, 0.16);
    --section-glow-2: rgba(139, 123, 255, 0.14);
    background: linear-gradient(135deg, #0a111b 0%, #0f1b2a 60%, #0a111a 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 1rem;
    align-items: stretch;
    width: 100%;
}

.contact-box {
    padding: 18px;
    text-align: left;
    border-radius: var(--r);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(12, 14, 20, .45);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .28);
}

.field {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.field label {
    font-weight: 700;
    color: rgba(247, 249, 252, .85);
    font-size: .92rem;
}

.field input,
.field textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    color: var(--ink);
    padding: 12px 12px;
    outline: none;
    font-family: inherit;
}

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

.field input:focus,
.field textarea:focus {
    border-color: rgba(110, 231, 255, .35);
}

/* ---------- TICKER (now as its own SECTION) ---------- */
.ticker-section {
    min-height: auto;
    padding: 92px 0 42px;
    text-align: center;
    --section-glow-1: rgba(110, 231, 255, 0.10);
    --section-glow-2: rgba(139, 123, 255, 0.10);
}

.ticker {
    margin-top: 0;
    border-radius: 999px;
    border: none;
    background: rgba(12, 14, 20, .32);
    backdrop-filter: blur(12px);
    overflow: hidden;
    position: relative;
}

.ticker::before,
.ticker::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    pointer-events: none;
    z-index: 2;
}

.ticker::before {
    left: 0;
    background: linear-gradient(90deg, rgba(10, 15, 24, .90), rgba(10, 15, 24, 0));
}

.ticker::after {
    right: 0;
    background: linear-gradient(270deg, rgba(10, 15, 24, .90), rgba(10, 15, 24, 0));
}

.ticker-track {
    display: flex;
    gap: 26px;
    padding: 14px 18px;
    width: max-content;
    animation: tickerScroll 18s linear infinite;
    will-change: transform;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .82rem;
    color: rgba(247, 249, 252, .70);
    white-space: nowrap;
}

.ticker-item .dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(110, 231, 255, .95), rgba(139, 123, 255, .95));
    box-shadow: 0 0 0 6px rgba(255, 255, 255, .02);
    flex: 0 0 auto;
}

@keyframes tickerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker:hover .ticker-track {
    animation-play-state: paused;
}

/* ---------- FOOTER ---------- */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(6, 7, 11, .55);
    backdrop-filter: blur(12px);
    padding: 22px 0;
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-left {
    color: rgba(247, 249, 252, .70);
    font-weight: 600;
    letter-spacing: .01em;
}

.footer-right {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    align-items: center;
}

.social-pill {
    text-decoration: none;
    padding: .55rem .85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    color: rgba(247, 249, 252, .78);
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
    font-size: .72rem;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.social-pill:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .20);
}

.social-pill.is-icon {
    width: 38px;
    height: 38px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    text-transform: none;
    font-size: .85rem;
}

/* ---------- animations ---------- */
@keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes navShine {
    0% {
        transform: translateX(-100%);
    }

    45% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 820px) {
    nav {
        height: 72px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 10px);
        left: 1.1rem;
        right: 1.1rem;
        padding: .6rem;
        border-radius: 18px;
        background: var(--glass-strong);
        border: 1px solid rgba(255, 255, 255, .12);
        box-shadow: 0 24px 50px rgba(0, 0, 0, .45);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity .2s ease, transform .25s ease, visibility .2s ease;
    }

    .menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-cta {
        display: none;
    }

    section {
        padding: 100px 0 78px;
    }

    .projects-track {
        gap: 1.5rem;
        padding: 1rem .5rem 1.5rem;
    }

    .project-card {
        flex-basis: 240px;
        height: 200px;
    }

    .ticker-section {
        padding: 78px 0 26px;
    }

    .ticker-track {
        padding: 12px 14px;
        gap: 18px;
        animation-duration: 16s;
    }

    .ticker-item {
        font-size: .76rem;
        letter-spacing: .10em;
    }
}

/* ticker dentro del hero */
.ticker-wrap{
  margin-top: 120px;
  transform: translateY(30px);
}

/* en mobile suele quedar mejor un poco menos */
@media (max-width: 820px){
  .ticker-wrap{ margin-top: 18px; }
}
