/* ─────────────────────────────────────────────
   VIOR INC. — K-Style Fine Jewellery
   styles.css
───────────────────────────────────────────── */

/* ── CSS VARIABLES ── */
:root {
  --navy: #0D1B3E;
  --navy-mid: #152244;
  --navy-light: #1E2E55;
  --gold: #C8912A;
  --gold-light: #E8B840;
  --gold-pale: #F5D78E;
  --gold-dim: #8A6015;
  --cream: #FAF7F2;
  --cream-dark: #F0EAE0;
  --text-dark: #1A1208;
  --text-mid: #4A3820;
  --text-muted: #8A7A60;
  --white: #FFFFFF;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.18s ease-out, width 0.3s, height 0.3s;
  opacity: 0.6;
}
.cursor.hovered { width: 20px; height: 20px; }
.cursor-ring.hovered { width: 50px; height: 50px; opacity: 0.3; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
  transition: background 0.5s, padding 0.4s, backdrop-filter 0.5s;
}
nav.scrolled {
  background: rgba(13,27,62,0.92);
  backdrop-filter: blur(18px);
  padding: 16px 60px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--gold-pale);
  text-decoration: none;
}
.nav-logo span { font-size: 10px; letter-spacing: 2px; color: var(--gold-dim); display: block; margin-top: 2px; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,215,142,0.7);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold-light);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s;
}
.nav-links a:hover { color: var(--gold-pale); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--navy);
  background: var(--gold-pale);
  border: none;
  padding: 10px 24px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  cursor: none;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── HERO ── */
#hero {
  height: 100vh; min-height: 700px;
  background: var(--navy);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,145,42,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,145,42,0.05) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(200,145,42,0.8) 79px, rgba(200,145,42,0.8) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(200,145,42,0.8) 79px, rgba(200,145,42,0.8) 80px);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px;
  max-width: 700px;
}
.hero-kicker {
  font-family: 'Jost', sans-serif;
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.hero-kicker::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 1s 0.55s forwards;
}
.hero-title em { color: var(--gold-pale); font-style: italic; }
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 300;
  line-height: 1.7;
  color: rgba(245,215,142,0.55);
  max-width: 440px;
  margin-bottom: 48px;
  opacity: 0; animation: fadeUp 1s 0.75s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 32px;
  opacity: 0; animation: fadeUp 1s 0.95s forwards;
}
.btn-primary {
  font-family: 'Jost', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
  border: none; padding: 16px 40px;
  cursor: none; text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(200,145,42,0.3); }
.btn-primary:hover::after { opacity: 1; }
.btn-ghost {
  font-family: 'Jost', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-pale);
  background: none; border: none; padding: 0;
  cursor: none; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  transition: gap 0.3s, color 0.3s;
}
.btn-ghost::after { content: '→'; font-size: 14px; transition: transform 0.3s; }
.btn-ghost:hover { gap: 14px; color: var(--white); }
.btn-ghost:hover::after { transform: translateX(4px); }
.hero-right {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 45%;
  overflow: hidden;
  opacity: 0; animation: fadeIn 1.5s 0.4s forwards;
}
.hero-right-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) sepia(0.3);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-right:hover .hero-right-img { transform: scale(1.0); }
.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 40%),
              linear-gradient(0deg, var(--navy) 0%, transparent 30%);
}
.hero-badge {
  position: absolute; bottom: 60px; right: 60px;
  width: 100px; height: 100px;
  border: 1px solid rgba(200,145,42,0.4);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  animation: rotateBadge 18s linear infinite;
}
.hero-badge-text {
  font-size: 7.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-family: 'Jost', sans-serif;
  text-align: center; line-height: 1.6;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeIn 1s 1.5s forwards;
}
.hero-scroll span {
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(200,145,42,0.4); font-family: 'Jost', sans-serif;
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ── MARQUEE ── */
.marquee-section {
  background: var(--navy-light);
  padding: 18px 0;
  border-top: 1px solid rgba(200,145,42,0.15);
  border-bottom: 1px solid rgba(200,145,42,0.15);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); padding: 0 40px;
  display: flex; align-items: center; gap: 40px;
}
.marquee-item::after { content: '✦'; font-size: 8px; color: rgba(200,145,42,0.4); }

/* ── COLLECTION (SERVICES) ── */
#collection {
  padding: 120px 60px;
  background: var(--cream);
}
.section-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end;
  margin-bottom: 80px;
}
.section-kicker {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); font-family: 'Jost', sans-serif;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.section-kicker::before { content: ''; width: 30px; height: 1px; background: var(--gold); display: block; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400; line-height: 1.1;
  color: var(--navy);
}
.section-title em { font-style: italic; color: var(--gold-dim); }
.section-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 300; line-height: 1.8;
  color: var(--text-mid);
  padding-top: 8px;
}
.collection-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}
.col-card {
  position: relative; overflow: hidden;
  background: var(--navy);
  cursor: none;
}
.col-card:first-child { grid-row: span 2; }
.col-card-img {
  width: 100%; height: 100%; min-height: 280px;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s;
  filter: brightness(0.65) sepia(0.2);
  display: block;
}
.col-card:first-child .col-card-img { min-height: 580px; }
.col-card:hover .col-card-img { transform: scale(1.06); filter: brightness(0.5) sepia(0.3); }
.col-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.1) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
}
.col-card-tag {
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-family: 'Jost', sans-serif;
  margin-bottom: 10px;
}
.col-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  transition: color 0.3s;
}
.col-card:first-child .col-card-name { font-size: 32px; }
.col-card:hover .col-card-name { color: var(--gold-pale); }
.col-card-price {
  font-family: 'Jost', sans-serif;
  font-size: 12px; letter-spacing: 1px;
  color: rgba(245,215,142,0.6);
}
.col-card-arrow {
  position: absolute; top: 24px; right: 24px;
  width: 36px; height: 36px;
  border: 1px solid rgba(200,145,42,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 14px;
  transform: translate(10px, -10px); opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
}
.col-card:hover .col-card-arrow { transform: translate(0,0); opacity: 1; }

/* ── ABOUT ── */
#about {
  background: var(--navy);
  padding: 130px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
  position: relative; overflow: hidden;
}
.about-bg-orb {
  position: absolute; width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,145,42,0.06) 0%, transparent 70%);
  right: -200px; top: -100px;
  pointer-events: none;
}
.about-img-wrap { position: relative; }
.about-img-frame {
  position: absolute;
  top: -24px; left: -24px; right: 24px; bottom: 24px;
  border: 1px solid rgba(200,145,42,0.25);
  pointer-events: none;
}
.about-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.75) sepia(0.15);
  display: block;
}
.about-stat-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold-pale);
  padding: 24px 28px;
  text-align: center;
}
.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 400;
  color: var(--navy); line-height: 1;
}
.about-stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy); opacity: 0.6;
  margin-top: 6px;
}
.about-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 300; line-height: 1.85;
  color: rgba(245,215,142,0.5);
  margin: 28px 0 40px;
}
.about-features { display: flex; flex-direction: column; gap: 20px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(200,145,42,0.1);
}
.about-feature:last-child { border-bottom: none; }
.feature-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid rgba(200,145,42,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 14px;
}
.feature-title {
  font-family: 'Jost', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-pale); margin-bottom: 4px;
}
.feature-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 300;
  color: rgba(245,215,142,0.45); line-height: 1.6;
}

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 120px 60px;
  background: var(--cream-dark);
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 80px;
}
.testi-card {
  background: var(--cream);
  padding: 44px 36px;
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.testi-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 80px; line-height: 0.8;
  color: var(--gold); opacity: 0.15;
  position: absolute; top: 28px; left: 28px;
}
.testi-stars { color: var(--gold); font-size: 12px; letter-spacing: 3px; margin-bottom: 20px; }
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: var(--text-mid); margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 14px; color: var(--gold-pale);
  flex-shrink: 0;
}
.testi-name {
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--text-dark); margin-bottom: 2px;
}
.testi-role {
  font-family: 'Jost', sans-serif;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted);
}

/* ── PERKS STRIP ── */
.perks-strip {
  background: var(--navy);
  padding: 60px;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px;
  border-top: 1px solid rgba(200,145,42,0.1);
}
.perk {
  padding: 40px 36px;
  border-right: 1px solid rgba(200,145,42,0.08);
  text-align: center;
}
.perk:last-child { border-right: none; }
.perk-icon { font-size: 22px; margin-bottom: 16px; color: var(--gold); }
.perk-title {
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-pale); margin-bottom: 8px;
}
.perk-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-weight: 300;
  color: rgba(245,215,142,0.35); line-height: 1.6;
}

/* ── FAQ ── */
.faq-list { margin-top: 70px; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none;
  text-align: left; cursor: none;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 400;
  color: var(--navy);
  transition: color 0.3s;
}
.faq-q:hover { color: var(--gold-dim); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gold);
  transition: transform 0.4s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: var(--text-mid);
  transition: max-height 0.5s ease, padding 0.4s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }

/* ── CONTACT ── */
#contact {
  background: var(--navy);
  padding: 130px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start;
}
.contact-info .section-title { color: var(--white); }
.contact-info .section-title em { color: var(--gold-pale); font-style: italic; }
.contact-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 300; line-height: 1.8;
  color: rgba(245,215,142,0.45);
  margin: 24px 0 48px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid rgba(200,145,42,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 14px;
}
.contact-detail-label {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-family: 'Jost', sans-serif;
  margin-bottom: 4px;
}
.contact-detail-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 300;
  color: rgba(245,215,142,0.6);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-family: 'Jost', sans-serif;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,145,42,0.2);
  color: var(--cream);
  padding: 14px 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 300;
  outline: none; resize: none;
  transition: border-color 0.3s, background 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,215,142,0.2); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(200,145,42,0.5);
  background: rgba(255,255,255,0.07);
}
.form-group.full { margin-bottom: 16px; }
.form-submit {
  width: 100%; padding: 18px;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
  border: none; cursor: none;
  font-family: 'Jost', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--navy); font-weight: 500;
  margin-top: 8px;
  transition: opacity 0.3s, transform 0.3s;
}
.form-submit:hover { opacity: 0.88; transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: #07112B;
  padding: 60px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  border-top: 1px solid rgba(200,145,42,0.1);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 500; letter-spacing: 5px;
  color: var(--gold-pale); margin-bottom: 4px;
}
.footer-tagline {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
}
.footer-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 300; line-height: 1.7;
  color: rgba(245,215,142,0.3); max-width: 260px;
}
.footer-col-title {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-family: 'Jost', sans-serif;
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 300;
  color: rgba(245,215,142,0.35);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-pale); }
.footer-bottom {
  background: #050E20;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(200,145,42,0.06);
}
.footer-copy {
  font-size: 10px; letter-spacing: 1.5px;
  color: rgba(200,145,42,0.25); font-family: 'Jost', sans-serif;
}

/* ── PLACEHOLDER IMAGE BACKGROUNDS ── */
.img-jewelry-hero {
  background: linear-gradient(160deg, #1a2a4a 0%, #2a3a5a 40%, #1a2030 100%);
}
.img-gold-earring {
  background: linear-gradient(160deg, #2a1a0a 0%, #4a3010 50%, #1a0a00 100%);
}
.img-pearl {
  background: linear-gradient(160deg, #f0e8e0 0%, #d8c8b8 50%, #b8a898 100%);
}
.img-diamond {
  background: linear-gradient(160deg, #0a1020 0%, #1a2040 50%, #080810 100%);
}
.img-ring {
  background: linear-gradient(160deg, #1a1000 0%, #3a2800 50%, #0a0800 100%);
}
.img-bracelet {
  background: linear-gradient(160deg, #080818 0%, #181028 60%, #080808 100%);
}
.img-about {
  background: linear-gradient(160deg, #150a00 0%, #2a1500 50%, #0a0500 100%);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes scrollLine {
  0%       { transform: scaleY(0); transform-origin: top; }
  50%      { transform: scaleY(1); transform-origin: top; }
  50.001%  { transform: scaleY(1); transform-origin: bottom; }
  100%     { transform: scaleY(0); transform-origin: bottom; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
