:root {
  --bg: #0a0a0a;          /* deep black */
  --fg: #ffffff;          /* white */
  --muted: #bfc2c7;       /* cool gray */
  --accent: #2e36ff;      /* saga blue */
  --line: rgba(255, 255, 255, .12);
  --glass: rgba(255, 255, 255, .04);
  --pad: clamp(16px, 4vw, 32px);
  --maxw: 1100px;
  --h1: clamp(2.2rem, 6vw, 4rem);
  --h2: clamp(1.2rem, 3.2vw, 1.8rem);
  --lead: clamp(1.05rem, 2.4vw, 1.25rem);
  --radius: 16px;
  --shadow: 0 10px 28px rgba(46, 54, 255, .08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Urbanist", system-ui, -apple-system, Segoe UI, Roboto, Inter, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
}

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

.container {
  width: min(100%, var(--maxw));
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* NAV (si usas navbar.html, el contenedor se llena por JS) */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(6px);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem var(--pad);
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, 0));
}

.brand {
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.brand .dot {
  color: var(--accent);
}



/* HERO */
header.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__bg {
    position: absolute;
  inset: 0;
  z-index: -1;
  background: url("img/HOME-img01.jpg") center / cover no-repeat;
  opacity: .4;
  filter: saturate(0);
}


.hero__wrap {
  min-height: 68vh;
  display: grid;
  place-items: center;
  padding-block: clamp(72px, 10vw, 128px);
}

.hero__content {
  text-align: center;
}
.hero__content span{
    color: #2e36ff;
}

.eyebrow {
  display: inline-block;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
  opacity: .95;
  font-size: .8rem;
}

.hero__title {
  font-size: var(--h1);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin: .4rem 0 .35rem;
}

.hero__sub {
  font-size: var(--lead);
    font-weight: 700;
  color: var(--muted);
  max-width: 70ch;
  margin-inline: auto;
}

.hero__copy {
  color: var(--muted);
    font-weight: 700;
    font-size: 14pt;
  max-width: 65ch;
  margin: .8rem auto 0;
}



/* STRIPES GRID */
.stripes {
  padding-block: clamp(40px, 9vw, 88px);
}

.grid {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  grid-template-columns: repeat(12, 1fr);
}

.stripe {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: clamp(18px, 2.6vw, 24px);
  border-radius: 16px;
  border: 1px solid var(--line);
  background:url(img/lineasBlancas.png) center / cover no-repeat;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.stripe:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: var(--shadow);
}

.stripe__eyebrow {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .9;
  color: #cfd3ff;
  font-size: .75rem;
}

.stripe__title {
  font-weight: 900;
  font-size: var(--h2);
}

.stripe__text {
  color: var(--muted);
    font-weight: 700;
    font-size: 14pt;
}

#magazine__btn{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50pt;
}

#magazine {
    width: 200pt;
  display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10pt;
  border-radius: 5pt;
  font-weight: 900;
  letter-spacing: .04em;
  border: 2px solid white;
  background: transparent;
  color: white;
}

#magazine:hover {
  background: white;
  color: black;
}

/* Footer placeholder (rellenado por JS con footer.html) */
footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px var(--pad) 36px;
}

.foot small {
  opacity: .9;
}

/* Responsiveness */
@media (max-width: 960px) {
  .stripe {
    grid-column: span 12;
  }

  .hero__wrap {
    min-height: 56vh;
  }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .stripe,
  .hero__cta {
    transition: none;
  }

  .hero__bg::before {
    filter: none;
  }
}