/* ══════════════════════════════════════════
   THE LIST — Main Stylesheet
   ══════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

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

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10006;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10007;
  transform: translate(-50%, -50%);
}

.cursor.hover {
  width: 58px;
  height: 58px;
  border-color: rgba(255, 255, 255, 0.7);
}

/* ══════════════════════════════════════════
   LOADER
   ══════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}

#loader.out {
  opacity: 0;
  visibility: hidden;
}

.loader-beam {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg,
      transparent 0%, transparent 35%,
      rgba(255, 255, 255, 0.035) 45%, rgba(255, 255, 255, 0.055) 50%,
      rgba(255, 255, 255, 0.035) 55%, transparent 65%, transparent 100%);
  animation: beam 2.5s linear infinite;
}

@keyframes beam {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

.loader-word {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: .45em;
  color: rgba(255, 255, 255, .65);
  z-index: 1;
  animation: lp 1.8s ease-in-out infinite;
}

.loader-bar {
  width: 1px;
  height: 60px;
  margin: 18px 0;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .3), transparent);
  z-index: 1;
  animation: lp 1.8s ease-in-out infinite reverse;
}

@keyframes lp {

  0%,
  100% {
    opacity: .3;
  }

  50% {
    opacity: 1;
  }
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

/* Black bleeds in from all 4 edges — no center halo */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(to bottom, #000 0%, transparent 18%, transparent 82%, #000 100%),
    linear-gradient(to right, #000 0%, transparent 12%, transparent 88%, #000 100%);
}

#hero canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Legacy classes — hidden */
.hero-atmosphere,
.rose-glow {
  display: none;
}

/* Hairlines — draw from center on load */
.hero-rule {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
      transparent 0%, rgba(255, 255, 255, .09) 20%,
      rgba(255, 255, 255, .09) 80%, transparent 100%);
  z-index: 4;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-rule.drawn {
  transform: scaleX(1);
}

.hero-rule-top {
  top: 18%;
}

.hero-rule-bottom {
  bottom: 18%;
}

/* Corner labels — staggered classified feel */
.hero-corner {
  position: absolute;
  z-index: 6;
  font-size: 0.4rem;
  letter-spacing: 0.55em;
  color: rgba(255, 255, 255, 0);
  pointer-events: none;
  transition: color 0.8s ease;
}

.hero-corner.shown {
  color: rgba(255, 255, 255, 0.18);
}

.hero-corner-tl {
  top: 20%;
  left: 40px;
}

.hero-corner-tr {
  top: 20%;
  right: 40px;
  text-align: right;
}

.hero-corner-bl {
  bottom: 20%;
  left: 40px;
}

.hero-corner-br {
  bottom: 20%;
  right: 40px;
  text-align: right;
}

/* Botanical SVG corners */
.bot {
  position: absolute;
  z-index: 5;
  width: 300px;
  height: 300px;
  opacity: .12;
}

.bot-tl {
  top: 0;
  left: 0;
}

.bot-br {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.bot-tr {
  top: 0;
  right: 0;
  transform: scaleX(-1);
  opacity: .07;
}

/* Hero inner content */
.hero-inner {
  position: relative;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

/* Logo */
.hero-logo {
  width: min(72vw, 780px);
  height: auto;
  display: block;
  position: relative;
  z-index: 7;
  animation: logoIn 3.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes logoIn {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Tagline */
.hero-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(.48rem, 1vw, .62rem);
  letter-spacing: .55em;
  color: rgba(255, 255, 255, .28);
  text-transform: uppercase;
  animation: fu 3s ease 2s both;
  position: relative;
  z-index: 7;
}

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fu 1s ease 2.4s both;
}

.scroll-cue span {
  font-size: .5rem;
  letter-spacing: .45em;
  color: rgba(255, 255, 255, .25);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .4), transparent);
  animation: sl 2s ease-in-out infinite;
}

@keyframes sl {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ══════════════════════════════════════════
   CLASSIFIED DOC
   ══════════════════════════════════════════ */
#classified {
  padding: 130px 40px;
  display: flex;
  justify-content: center;
  background: #000;
  position: relative;
}

#classified::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(10, 0, 0, .6) 50%, transparent);
  pointer-events: none;
}

.doc {
  max-width: 560px;
  width: 100%;
  padding: 56px 52px;
  border: 1px solid rgba(255, 255, 255, .055);
  background: rgba(255, 255, 255, .012);
  position: relative;
}

.doc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(140, 0, 0, .5), transparent);
}

.stamp {
  font-size: .52rem;
  letter-spacing: .5em;
  color: rgba(160, 20, 20, .75);
  border: 1px solid rgba(140, 0, 0, .3);
  display: inline-block;
  padding: 4px 14px;
  margin-bottom: 48px;
}

.doc-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0;
  margin-bottom: 26px;
}

.doc-lbl {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: rgba(255, 255, 255, .85);
}

.doc-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .65);
}

.doc-val.script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.45rem;
  color: rgba(255, 255, 255, .85);
}

.doc-val.red {
  font-size: .72rem;
  letter-spacing: .2em;
  color: rgba(200, 40, 40, .7);
}

.doc-sep {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .05);
  margin: 24px 0;
}

/* ══════════════════════════════════════════
   COUNTDOWN
   ══════════════════════════════════════════ */
#countdown {
  padding: 90px 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  background: rgba(255, 255, 255, .01);
}

.cd-eyebrow {
  font-size: .55rem;
  letter-spacing: .5em;
  color: rgba(255, 255, 255, .22);
  margin-bottom: 44px;
}

.cd-grid {
  display: flex;
  justify-content: center;
  gap: 44px;
  align-items: flex-start;
}

.cd-item {
  text-align: center;
  perspective: 400px;
}

.cd-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, .9);
  display: inline-block;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.cd-num.flip {
  animation: numFlip 0.35s ease forwards;
}

@keyframes numFlip {
  0% {
    transform: rotateX(0deg);
    opacity: 1;
  }

  45% {
    transform: rotateX(-90deg);
    opacity: 0;
  }

  55% {
    transform: rotateX(90deg);
    opacity: 0;
  }

  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

.cd-unit {
  font-size: .52rem;
  letter-spacing: .4em;
  color: rgba(255, 255, 255, .2);
  margin-top: 8px;
}

.cd-sep {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: rgba(255, 255, 255, .1);
  line-height: 1;
}

/* ══════════════════════════════════════════
   DETAILS GRID
   ══════════════════════════════════════════ */
#details {
  padding: 100px 40px 50px;
  max-width: 900px;
  margin: 0 auto;
}

.sec-eye {
  font-size: .57rem;
  letter-spacing: .5em;
  color: rgba(255, 255, 255, .22);
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sec-eye::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .05);
}

.det-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .05);
}

.det-cell {
  padding: 50px 40px;
  background: #000;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease, background 0.4s ease;
}

.det-cell.in {
  opacity: 1;
  transform: translateY(0);
}

.det-cell:hover {
  background: rgba(255, 255, 255, .018);
}

.det-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(65, 0, 0, .18), transparent 60%);
  pointer-events: none;
}

.det-lbl {
  font-size: .57rem;
  letter-spacing: .42em;
  color: rgba(255, 255, 255, .28);
  margin-bottom: 18px;
}

.det-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
}

.det-sub {
  font-size: .68rem;
  color: rgba(255, 255, 255, .3);
  margin-top: 10px;
  letter-spacing: .12em;
}

.ast {
  text-align: center;
  margin: 40px 0 0;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, .18);
}

/* ══════════════════════════════════════════
   PREVENTA / CTA
   ══════════════════════════════════════════ */
#preventa {
  padding: 50px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#preventa::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(90, 5, 5, .13) 0%, transparent 70%);
  pointer-events: none;
}

.pv-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(140, 0, 0, .38);
  padding: 7px 20px;
  margin-bottom: 52px;
}

.pv-dot {
  width: 6px;
  height: 6px;
  background: rgba(180, 0, 0, .8);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.pv-badge-txt {
  font-size: .57rem;
  letter-spacing: .4em;
  color: rgba(200, 50, 50, .75);
}

.pv-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, .92);
  margin-bottom: 22px;
  line-height: 1.1;
}

.pv-sub {
  font-size: .65rem;
  letter-spacing: .42em;
  color: rgba(255, 255, 255, .22);
  margin-bottom: 64px;
}

.cta {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 16px 52px;
  font-size: .68rem;
  letter-spacing: .38em;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: border-color .4s ease, color .4s ease, transform 0.2s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  font-family: 'Space Grotesk', sans-serif;
  will-change: transform;
}

/* Diagonal clip-path fill on hover */
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .05);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta:hover::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.cta:hover {
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  margin-top: 20px;
}

.barra {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.barra::before,
.barra::after {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, .12);
}

.barra span {
  font-size: .57rem;
  letter-spacing: .5em;
  color: rgba(255, 255, 255, .22);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.f-bot {
  position: absolute;
  width: 240px;
  height: 240px;
  opacity: .1;
}

.f-bot.l {
  bottom: 0;
  left: 0;
}

.f-bot.r {
  bottom: 0;
  right: 0;
  transform: scaleX(-1);
}

.f-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, .22);
  margin-bottom: 38px;
}

.f-brand {
  font-size: .55rem;
  letter-spacing: .55em;
  color: rgba(255, 255, 255, .1);
}


/* ══════════════════════════════════════════
   MODAL & PORTAL (AUTH)
   ══════════════════════════════════════════ */
.modal-overlay,
.portal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content,
.portal-content {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 450px;
  padding: 60px 40px;
  position: relative;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.8rem;
  cursor: pointer;
}

.auth-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.auth-sub {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 40px;
}

.auth-input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  margin-bottom: 25px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.1em;
  transition: border-color 0.3s ease;
}

.auth-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
}

.auth-btn {
  width: 100%;
  padding: 15px;
  background: #fff;
  color: #000;
  border: none;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  font-weight: 700;
  cursor: pointer;
  margin-top: 15px;
}

.auth-toggle {
  margin-top: 30px;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
}

.auth-toggle span {
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

/* ── PORTAL STYLES ── */
/* ── DASHBOARD SIDEBAR STYLES ── */
.nav-trigger {
  position: fixed;
  top: 35px;
  left: 45px;
  z-index: 9990;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
}

.nav-trigger:hover {
  color: #fff;
  transform: translateX(3px);
}

.dashboard-sidebar {
  position: fixed;
  top: 0;
  left: -420px;
  width: 420px;
  max-width: 100%;
  height: 100vh;
  background: #000;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 10005;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 20px 0 50px rgba(0,0,0,0.9);
}

.dashboard-sidebar.open {
  transform: translateX(420px);
}

.dashboard-header {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#portalUser {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
}

.dash-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.3s;
}

.dash-close:hover {
  color: #fff;
}

.dashboard-nav {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-btn {
  flex: 1;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  padding: 20px 0;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Space Grotesk', sans-serif;
}

.nav-btn.active, .nav-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.dashboard-content {
  flex: 1;
  padding: 40px;
  overflow-y: auto;
}

.logout-btn {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  padding: 15px;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Space Grotesk', sans-serif;
}

.logout-btn:hover {
  color: #fff;
  border-color: #fff;
}
.dashboard-footer {
  padding: 30px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ticket-view {
  padding: 20px 0;
}

.ticket-code {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  letter-spacing: 0.15em;
  color: #fff;
  margin: 20px 0;
}

.admin-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 30px;
}

/* ── ESTILOS EXCLUSIVOS VISTA ADMIN ── */
.dashboard-sidebar.admin-mode {
  width: 100vw;
  /* El sidebar se mantendrá a la izq gracias al translateX(420px) nativo de .open,
     y su ancho cubrirá toda la pantalla */
}

.dashboard-sidebar.admin-mode .dashboard-content {
  padding: 40px 10vw; 
}

.admin-list {
  text-align: left;
}

.admin-grid-users {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.admin-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.6);
  transition: background 0.3s;
}

.admin-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.admin-item span {
  color: #fff;
  font-weight: bold;
}

.action-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 6px 14px;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  font-weight: bold;
}

.action-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

/* REVEAL UTILITY */
.r {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s ease;
}

.r.on {
  opacity: 1;
  transform: translateY(0);
}

.r.d1 {
  transition-delay: .1s;
}

.r.d2 {
  transition-delay: .2s;
}

.r.d3 {
  transition-delay: .3s;
}

.r.d4 {
  transition-delay: .4s;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 680px) {
  .det-grid {
    grid-template-columns: 1fr;
  }

  .cd-grid {
    gap: 20px;
  }

  .doc {
    padding: 36px 26px;
  }

  .doc-row {
    grid-template-columns: 90px 1fr;
  }

  .bot {
    width: 180px;
    height: 180px;
  }
}