  :root {
    --red: #D10000;
    --red-bright: #FF1A1A;
    --black: #000000;
    --dark: #141414;
    --mid: #1F1F1F;
    --chrome: #C8C8C8;
    --white: #F5F5F5;
    --text-dim: #888;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
    cursor: none;
  }

  #Logo{
    width: 1100px;
    height: 800px;
    padding: 0px;
    margin: 0px;
  }

  /* CUSTOM CURSOR */
  .cursor {
    width: 12px; height: 12px;
    background: var(--red);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: screen;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--red);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.12s ease, width 0.25s, height 0.25s, border-color 0.2s;
    opacity: 0.7;
  }
  body.hovering .cursor { width: 20px; height: 20px; background: var(--red-bright); }
  body.hovering .cursor-ring { width: 56px; height: 56px; border-color: var(--red-bright); opacity: 1; }

  /* NOISE OVERLAY */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 0; opacity: 0.5;
  }

  /* ========== NAV ========== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 60px;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, transparent 100%);
    backdrop-filter: blur(2px);
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    color: var(--white);
  }
  .nav-logo span { color: var(--red); }
  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--chrome);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
    background: var(--red);
    transition: width 0.25s ease;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { width: 100%; }

  /* ========== HERO ========== */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  /* diagonal red split */
  .hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 48%, var(--red) 48%, var(--red) 52%, transparent 52%);
    opacity: 0.06;
    pointer-events: none;
  }

  .hero-left {
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 120px 60px 80px;
    position: relative; z-index: 1;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem; letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 28px;
    opacity: 0; animation: fadeUp 0.7s 0.2s ease forwards;
  }
  .hero-badge::before {
    content: '';
    display: block; width: 32px; height: 1px;
    background: var(--red);
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--white);
    opacity: 0; animation: fadeUp 0.8s 0.35s ease forwards;
  }
  .hero-title .red { color: var(--red); }
  .hero-title .stroke {
    -webkit-text-stroke: 1.5px var(--chrome);
    color: transparent;
  }

  .hero-sub {
    margin-top: 28px;
    font-family: 'Barlow', sans-serif;
    font-size: 1.05rem; font-weight: 300;
    line-height: 1.7;
    color: var(--text-dim);
    max-width: 380px;
    opacity: 0; animation: fadeUp 0.8s 0.5s ease forwards;
  }

  .hero-cta {
    margin-top: 48px;
    display: flex; gap: 16px; align-items: center;
    opacity: 0; animation: fadeUp 0.8s 0.65s ease forwards;
  }
  .btn-primary {
    background: var(--red);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 16px 36px;
    border: none; cursor: none;
    position: relative; overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--red-bright); }
  .btn-secondary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--chrome);
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    transition: color 0.2s;
  }
  .btn-secondary:hover { color: var(--white); }
  .btn-secondary .arrow {
    width: 28px; height: 1px; background: var(--chrome);
    position: relative; transition: width 0.2s;
  }
  .btn-secondary:hover .arrow { width: 40px; background: var(--white); }
  .btn-secondary .arrow::after {
    content: '';
    position: absolute; right: 0; top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px; height: 6px;
    border-right: 1px solid var(--chrome);
    border-top: 1px solid var(--chrome);
  }

  /* hero stats strip */
  .hero-stats {
    position: absolute; bottom: 48px; left: 60px;
    display: flex; gap: 48px;
    opacity: 0; animation: fadeUp 0.8s 0.8s ease forwards;
  }
  .stat-item { display: flex; flex-direction: column; gap: 4px; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem; line-height: 1;
    color: var(--white);
  }
  .stat-num span { color: var(--red); }
  .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-dim);
  }

  /* hero right visual */
  .hero-right {
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }

  .hero-hex-bg {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; animation: fadeIn 1s 0.4s ease forwards;
  }

  /* animated hex grid */
  .hex-grid {
    position: absolute; inset: 0;
    overflow: hidden;
  }
  .hex-grid svg {
    width: 100%; height: 100%;
    opacity: 0.06;
  }

  .hero-logo-wrap {
    position: relative; z-index: 2;
    width: 320px; height: 320px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; animation: scaleIn 0.9s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .hero-logo-wrap::before {
    content: '';
    position: absolute; inset: -40px;
    border: 1px solid rgba(209,0,0,0.2);
    border-radius: 50%;
    animation: rotate 12s linear infinite;
  }
  .hero-logo-wrap::after {
    content: '';
    position: absolute; inset: -70px;
    border: 1px solid rgba(200,200,200,0.08);
    border-radius: 50%;
    animation: rotate 20s linear infinite reverse;
  }
  .hero-logo-wrap img {
    width: 260px; filter: drop-shadow(0 0 40px rgba(209,0,0,0.4));
  }

  .red-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(209,0,0,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  /* vertical text */
  .hero-vertical-text {
    position: absolute; right: 32px; top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem; letter-spacing: 0.35em;
    text-transform: uppercase; color: rgba(136,136,136,0.4);
    white-space: nowrap;
  }

  /* ========== MARQUEE ========== */
  .marquee-wrap {
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: var(--mid);
    padding: 18px 0;
    overflow: hidden;
    position: relative; z-index: 2;
  }
  .marquee-track {
    display: flex; gap: 0;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem; letter-spacing: 0.15em;
    color: var(--text-dim);
    padding: 0 40px;
    flex-shrink: 0;
  }
  .marquee-item .dot { color: var(--red); margin-right: 40px; }

  /* ========== SECTION BASE ========== */
  section { position: relative; z-index: 1; }
  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--red);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before {
    content: ''; display: block; width: 24px; height: 1px; background: var(--red);
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.95; letter-spacing: 0.02em;
  }

  /* ========== ESPECIALIDADES ========== */
  .especialidades {
    padding: 120px 60px;
    background: var(--dark);
  }
  .esp-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 72px;
  }
  .esp-header-text { max-width: 500px; }
  .esp-header-text .section-title { color: var(--white); }
  .esp-header-text .section-title .stroke {
    -webkit-text-stroke: 1.5px var(--chrome);
    color: transparent;
  }
  .esp-count {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem; color: rgba(255,255,255,0.04);
    line-height: 1;
  }

  .esp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .esp-card {
    background: var(--mid);
    padding: 44px 36px;
    position: relative; overflow: hidden;
    transition: background 0.3s;
    cursor: none;
  }
  .esp-card:hover { background: #2a2a2a; }
  .esp-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s ease;
  }
  .esp-card:hover::before { transform: scaleX(1); }

  .esp-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem; letter-spacing: 0.2em;
    color: var(--red); margin-bottom: 20px;
  }
  .esp-icon {
    width: 48px; height: 48px; margin-bottom: 20px;
    opacity: 0.7; transition: opacity 0.2s;
  }
  .esp-card:hover .esp-icon { opacity: 1; }
  .esp-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase;
    color: var(--white); margin-bottom: 12px;
    transition: color 0.2s;
  }
  .esp-card:hover .esp-name { color: var(--chrome); }
  .esp-desc {
    font-size: 0.88rem; line-height: 1.65;
    color: var(--text-dim);
  }

  /* ========== NOSOTROS ========== */
  .nosotros {
    padding: 120px 60px;
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }
  .nosotros-visual {
    position: relative;
  }
  .anos-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 15vw, 14rem);
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.08);
    position: relative; z-index: 1;
    user-select: none;
  }
  .anos-overlay {
    position: absolute; top: 10px; left: 4px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 15vw, 14rem);
    line-height: 0.85;
    background: linear-gradient(135deg, var(--red) 0%, transparent 70%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
  }
  .anos-label {
    position: absolute; bottom: 20px; right: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--chrome);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

  .nosotros-content .section-title {
    color: var(--white);
    margin-bottom: 32px;
  }
  .nosotros-content .section-title .red { color: var(--red); }
  .nosotros-body {
    font-size: 1rem; line-height: 1.8;
    color: var(--text-dim); margin-bottom: 40px;
  }
  .team-strip {
    display: flex; gap: 12px;
  }
  .team-dot {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--mid);
    border: 1.5px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem; color: var(--chrome);
    transition: background 0.2s, border-color 0.2s;
  }
  .team-dot:hover { background: var(--red); border-color: var(--red); color: #fff; }
  .team-dot.plus { background: var(--red); border-color: var(--red); color: #fff; }
  .team-info {
    margin-left: 8px;
    display: flex; flex-direction: column; justify-content: center;
    font-size: 0.8rem; color: var(--text-dim);
  }
  .team-info strong { color: var(--white); font-weight: 500; }

  /* ========== PROCESO ========== */
  .proceso {
    padding: 120px 60px;
    background: var(--mid);
  }
  .proceso-header { margin-bottom: 72px; }
  .proceso-header .section-title .stroke {
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.2);
    color: transparent;
  }
  .proceso-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
  }
  .proceso-steps::before {
    content: '';
    position: absolute; top: 28px; left: 5%; right: 5%; height: 1px;
    background: linear-gradient(to right, transparent, var(--red), transparent);
    opacity: 0.4;
  }
  .step {
    padding: 0 24px;
    position: relative; z-index: 1;
  }
  .step-num {
    width: 56px; height: 56px;
    background: var(--dark);
    border: 1px solid var(--red);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem; color: var(--red);
    margin-bottom: 28px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    transition: background 0.2s, color 0.2s;
  }
  .step:hover .step-num { background: var(--red); color: #fff; }
  .step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--white); margin-bottom: 12px;
  }
  .step-text {
    font-size: 0.85rem; line-height: 1.65;
    color: var(--text-dim);
  }

  /* ========== CTA BAND ========== */
  .cta-band {
    padding: 100px 60px;
    background: var(--red);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px; align-items: center;
    position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: 'JAGASA';
    position: absolute; right: -20px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18rem; line-height: 1;
    color: rgba(0,0,0,0.12); pointer-events: none;
    white-space: nowrap;
  }
  .cta-band-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 0.95; color: #fff;
    position: relative; z-index: 1;
  }
  .cta-band-sub {
    font-size: 1rem; line-height: 1.7;
    color: rgba(255,255,255,0.75); margin-top: 16px;
    position: relative; z-index: 1;
  }
  .btn-white {
    background: #fff;
    color: var(--red);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 18px 44px;
    border: none; cursor: none;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    position: relative; z-index: 1;
    text-decoration: none; display: inline-block;
    transition: transform 0.15s;
  }
  .btn-white:hover { transform: scale(1.03); }

  /* ========== FOOTER ========== */
  footer {
    background: var(--dark);
    padding: 72px 60px 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px;
  }
  .footer-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem; letter-spacing: 0.08em;
    color: var(--white); margin-bottom: 12px;
  }
  .footer-brand-name span { color: var(--red); }
  .footer-brand-tagline {
    font-size: 0.85rem; color: var(--text-dim);
    line-height: 1.6; max-width: 280px;
  }
  .footer-red-line {
    width: 40px; height: 2px; background: var(--red);
    margin: 20px 0;
  }
  .footer-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--red);
    margin-bottom: 20px;
  }
  .footer-col-list {
    list-style: none; display: flex; flex-direction: column; gap: 12px;
  }
  .footer-col-list a {
    font-size: 0.875rem; color: var(--text-dim);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-col-list a:hover { color: var(--white); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copy {
    font-size: 0.78rem; color: rgba(136,136,136,0.5);
  }
  .footer-copy span { color: var(--red); }

  /* ========== ANIMATIONS ========== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }
  @keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
  }
  @keyframes rotate {
    from { transform: rotate(0deg); } to { transform: rotate(360deg); }
  }
  @keyframes marquee {
    from { transform: translateX(0); } to { transform: translateX(-50%); }
  }

  /* scroll reveal */
  .reveal {
    opacity: 0; transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* responsive */
  @media (max-width: 900px) {
    nav { padding: 20px 28px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 120px 28px 100px; }
    .hero-stats { left: 28px; }
    .especialidades, .nosotros, .proceso, .cta-band, footer { padding: 80px 28px; }
    .esp-grid { grid-template-columns: 1fr; }
    .nosotros { grid-template-columns: 1fr; gap: 48px; }
    .proceso-steps { grid-template-columns: 1fr 1fr; row-gap: 48px; }
    .proceso-steps::before { display: none; }
    .cta-band { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .esp-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  }