/* ================= RESET & BASE ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0a0a0b;
  --navy-2: #161617;
  --navy-3: #212123;
  --gold: #d4af37;
  --gold-light: #f4e2a8;
  --gold-deep: #b8862f;
  --cream: #f2ede3;
  --white: #ffffff;
  --text-muted: #97979b;
  --radius: 18px;
  --ff-serif: 'Cormorant Garamond', serif;
  --ff-sans: 'Manrope', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  background: var(--navy);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.5;
}

img, svg { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--navy); }

.gradient-text {
  background: linear-gradient(100deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* noise overlay for texture */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  left: 0; top: 0;
}

/* ================= PRELOADER ================= */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo { display: flex; align-items: center; gap: 14px; }
.pl-R {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: plPulse 1.6s ease-in-out infinite;
}
.pl-text {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  opacity: 0;
  animation: plFadeIn 1s ease 0.3s forwards;
}
@keyframes plPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
}
@keyframes plFadeIn { to { opacity: 1; } }

/* ================= NAV ================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 22px 5%;
  display: flex;
  transition: all 0.4s var(--ease);
  background: transparent;
}
.nav.scrolled {
  padding: 14px 5%;
  background: rgba(8, 8, 9, 0.82);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.nav::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), transparent);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  animation: navShimmer 4s linear infinite;
  pointer-events: none;
}
.nav.scrolled::after { opacity: 1; }
@keyframes navShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.nav-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 8px; }
.brand-r {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.7rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-text {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.nav-links {
  display: flex;
  gap: 38px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-nav {
  padding: 10px 22px;
  background: transparent;
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold-light);
  font-size: 0.88rem;
}
.btn-nav:hover { background: rgba(212,175,55,0.1); border-color: var(--gold); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--navy);
  box-shadow: 0 8px 30px rgba(212,175,55,0.25);
  position: relative;
  overflow: hidden;
}
.btn-primary svg { transition: transform 0.35s var(--ease); }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(212,175,55,0.4);
}
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}
.btn-primary:hover::before { left: 100%; }

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(250,246,238,0.25);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(212,175,55,0.06); }

.btn-full { width: 100%; justify-content: center; }

/* ================= REVEAL ANIMATIONS ================= */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-up { transform: translateY(36px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.9); }
.reveal-up.in-view, .reveal-left.in-view, .reveal-right.in-view, .reveal-scale.in-view {
  opacity: 1;
  transform: none;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 5% 80px;
  overflow: hidden;
  gap: 40px;
}
.hero-bg {
  position: absolute;
  inset: -20px;
  z-index: 0;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.35), transparent 70%);
  top: -150px; left: -100px;
  animation: floatSlow 14s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(170,170,175,0.16), transparent 70%);
  bottom: -120px; right: -80px;
  animation: floatSlow 18s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,175,55,0.2), transparent 70%);
  top: 40%; right: 15%;
  animation: floatSlow 11s ease-in-out infinite;
}
@keyframes floatSlow {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-40px) scale(1.08); }
}
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1 1 560px;
  max-width: 620px;
  min-width: 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.dot-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(212,175,55,0.6);
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(212,175,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-title .line { display: block; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 38px;
}

.hero-cta { display: flex; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 34px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.trust-row span { position: relative; padding-left: 16px; }
.trust-row span::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-stats { display: flex; align-items: center; gap: 26px; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--ff-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold-light);
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); max-width: 110px; }
.stat-sep { width: 1px; height: 40px; background: rgba(250,246,238,0.15); }

/* HERO VISUAL - tap scene */
.hero-visual {
  position: relative;
  z-index: 2;
  flex: 1 1 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  min-width: 0;
}
.stars-row {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
@keyframes fadeIn { to { opacity: 1; } }
@keyframes ripple {
  0% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%,-50%) scale(2.6); opacity: 0; }
}

.tap-scene {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* rotating gradient ring — the "particle" spin effect */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, var(--gold-light) 18deg, var(--gold) 34deg, transparent 70deg, transparent 360deg);
  -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
          mask: radial-gradient(closest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
}
.orbit-ring-1 { width: 260px; height: 260px; animation: spinRing 7s linear infinite; }
.orbit-ring-2 { width: 320px; height: 320px; opacity: 0.5; animation: spinRing 11s linear infinite reverse; }
@keyframes spinRing { to { transform: rotate(360deg); } }

.hero-disc {
  position: relative;
  z-index: 3;
  width: 148px; height: 148px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--navy-3), var(--navy));
  border: 2px solid rgba(212,175,55,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.55), inset 0 0 30px rgba(212,175,55,0.08);
}
.hero-r {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 2.3rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-disc-wifi { color: var(--gold); opacity: 0.8; }

.tap-flash-wrap { position: absolute; z-index: 2; inset: 0; display: flex; align-items: center; justify-content: center; }
.tap-flash {
  position: absolute;
  width: 148px; height: 148px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: tapFlash 5s ease-out infinite;
}
.tap-flash.f2 { animation-delay: 0.2s; }
.tap-flash.f3 { animation-delay: 0.4s; }
@keyframes tapFlash {
  0%, 48% { transform: scale(1); opacity: 0; }
  52% { transform: scale(1); opacity: 0.7; }
  75% { transform: scale(1.9); opacity: 0; }
  100% { opacity: 0; }
}

.hero-phone {
  position: absolute;
  z-index: 4;
  animation: approachTap 5s ease-in-out infinite;
}
@keyframes approachTap {
  0%   { transform: translate(150px, 60px) scale(0.78) rotate(14deg); opacity: 0; }
  14%  { opacity: 1; }
  45%  { transform: translate(6px, 4px) scale(1) rotate(3deg); opacity: 1; }
  50%  { transform: translate(2px, 2px) scale(0.93) rotate(2deg); }
  57%  { transform: translate(6px, 4px) scale(1.04) rotate(3deg); }
  63%  { transform: translate(6px, 4px) scale(1) rotate(3deg); }
  86%  { transform: translate(6px, 4px) scale(1) rotate(3deg); opacity: 1; }
  100% { transform: translate(150px, 60px) scale(0.78) rotate(14deg); opacity: 0; }
}
.hero-phone-body {
  width: 88px; height: 148px;
  border-radius: 20px;
  background: linear-gradient(160deg, #2b2b2f, #0d0d0e);
  border: 2px solid rgba(212,175,55,0.35);
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-phone-wifi { color: var(--gold-light); animation: wifiBlink 5s ease-in-out infinite; }

.star-burst { position: absolute; z-index: 5; inset: 0; pointer-events: none; }
.burst-star {
  position: absolute;
  color: var(--gold);
  font-size: 1.3rem;
  opacity: 0;
  animation: starPop 5s ease-out infinite;
  text-shadow: 0 0 12px rgba(212,175,55,0.7);
}
.burst-star.bs1 { top: 30%; left: 20%; animation-delay: 2.55s; }
.burst-star.bs2 { top: 18%; left: 45%; animation-delay: 2.65s; }
.burst-star.bs3 { top: 28%; left: 68%; animation-delay: 2.75s; }
.burst-star.bs4 { top: 55%; left: 15%; animation-delay: 2.85s; }
.burst-star.bs5 { top: 58%; left: 72%; animation-delay: 2.95s; }
@keyframes starPop {
  0% { transform: scale(0) rotate(-35deg) translateY(0); opacity: 0; }
  12% { transform: scale(1.4) rotate(10deg) translateY(-6px); opacity: 1; }
  24% { transform: scale(1) rotate(0deg) translateY(-6px); opacity: 1; }
  70% { transform: scale(1) rotate(0deg) translateY(-14px); opacity: 1; }
  90% { transform: scale(0.7) rotate(-10deg) translateY(-22px); opacity: 0; }
  100% { opacity: 0; }
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: rgba(250,246,238,0.15); position: relative; overflow: hidden; }
.scroll-dot { width: 100%; height: 10px; background: var(--gold); position: absolute; top: -10px; animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot {
  0% { top: -10px; }
  60% { top: 40px; }
  100% { top: 40px; opacity: 0; }
}

/* ================= MARQUEE ================= */
.marquee {
  border-top: 1px solid rgba(212,175,55,0.15);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  padding: 20px 0;
  overflow: hidden;
  background: rgba(212,175,55,0.03);
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-light);
  opacity: 0.75;
  white-space: nowrap;
}
.marquee-track span:nth-child(2n) { color: var(--text-muted); font-style: normal; font-size: 1rem; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================= SECTIONS ================= */
.section {
  padding: 120px 5%;
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}
.tag-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}
.tag-label::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.tag-label.light { color: var(--gold-light); }
.section-head h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* ================= SERVICE CARDS ================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(212,175,55,0.14);
  border-radius: var(--radius);
  padding: 40px 32px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s;
}
.service-card:hover { border-color: rgba(212,175,55,0.4); }
.card-glow {
  position: absolute;
  top: -50%; left: -20%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}
.service-card:hover .card-glow { opacity: 1; }
.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease);
}
.service-card:hover .card-icon { transform: scale(1.1) rotate(-6deg); }
.service-card h3 { font-family: var(--ff-serif); font-size: 1.4rem; margin-bottom: 12px; font-weight: 600; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ================= NFC SECTION ================= */
.nfc-section { padding-top: 60px; padding-bottom: 60px; }
.nfc-inner {
  display: flex;
  align-items: center;
  gap: 70px;
}
.nfc-text { flex: 1 1 480px; min-width: 0; }
.nfc-desc { color: var(--text-muted); font-size: 1.05rem; margin: 20px 0 30px; max-width: 480px; }
.feature-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
}
.feature-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.nfc-visual { flex: 1 1 420px; display: flex; justify-content: center; min-width: 0; }
.tag-scene {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tag-disc {
  position: relative;
  width: 170px; height: 170px;
}
.tag-disc-inner {
  width: 170px; height: 170px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--navy-3), var(--navy));
  border: 2px solid rgba(212,175,55,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 30px rgba(212,175,55,0.08);
  position: relative;
  z-index: 3;
}
.tag-r {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 2.6rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tag-wifi { color: var(--gold); opacity: 0.8; }
.disc-ring {
  position: absolute;
  top: 50%; left: 50%;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.dr1 { width: 200px; height: 200px; animation: ripple 3s ease-out infinite; }
.dr2 { width: 200px; height: 200px; animation: ripple 3s ease-out infinite 1s; }
.dr3 { width: 200px; height: 200px; animation: ripple 3s ease-out infinite 2s; }

.tap-phone {
  position: absolute;
  right: 20px;
  bottom: 30px;
  animation: tapMove 3.4s ease-in-out infinite;
}
@keyframes tapMove {
  0%, 100% { transform: translate(30px, 30px) rotate(8deg); }
  45% { transform: translate(-30px, -20px) rotate(-4deg); }
  55% { transform: translate(-30px, -20px) rotate(-4deg); }
}
.tap-phone-body {
  width: 90px; height: 150px;
  border-radius: 20px;
  background: linear-gradient(160deg, #2b2b2f, #0d0d0e);
  border: 2px solid rgba(212,175,55,0.35);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tap-wifi { color: var(--gold-light); animation: wifiBlink 3.4s ease-in-out infinite; }
@keyframes wifiBlink {
  0%, 40% { opacity: 0.3; }
  50%, 55% { opacity: 1; }
  65%, 100% { opacity: 0.3; }
}
.tap-phone-glow {
  position: absolute;
  inset: -10px;
  border-radius: 26px;
  background: radial-gradient(circle, rgba(212,175,55,0.3), transparent 70%);
  opacity: 0;
  animation: glowPulse 3.4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 40% { opacity: 0; }
  50%, 55% { opacity: 1; }
  65%, 100% { opacity: 0; }
}

.floating-stars { position: absolute; inset: 0; pointer-events: none; }
.fstar {
  position: absolute;
  color: var(--gold);
  opacity: 0;
  font-size: 1.2rem;
  animation: starFloat 4s ease-in infinite;
}
.fstar.s1 { top: 20%; left: 10%; animation-delay: 0.2s; }
.fstar.s2 { top: 60%; left: 5%; animation-delay: 1s; }
.fstar.s3 { top: 15%; right: 10%; animation-delay: 1.8s; }
.fstar.s4 { top: 75%; right: 15%; animation-delay: 2.6s; }
.fstar.s5 { top: 45%; left: 50%; animation-delay: 3.2s; }
@keyframes starFloat {
  0% { opacity: 0; transform: translateY(0) scale(0.6); }
  20% { opacity: 1; transform: translateY(-10px) scale(1); }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-60px) scale(0.8); }
}

/* ================= MODELS ================= */
.models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 560px;
  margin: 0 auto;
}
.model-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(212,175,55,0.14);
  background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.model-card:hover { transform: translateY(-8px); border-color: rgba(212,175,55,0.35); }
.model-card h3 { font-family: var(--ff-serif); font-size: 1.3rem; margin-bottom: 8px; font-weight: 600; }
.model-card p { color: var(--text-muted); font-size: 0.9rem; }

/* product stand mockup — shows the real product photo, with a graceful fallback */
.product-mock {
  position: relative;
  width: 190px;
  height: 285px;
  margin: 0 auto 32px;
  transform: rotate(-3deg);
  transition: transform 0.5s var(--ease);
}
.model-card:hover .product-mock { transform: rotate(-5deg) scale(1.04); }
.product-photo {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 8px 8px 3px 3px;
  box-shadow: 0 22px 38px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
  display: block;
  background: #f6f2e8;
}
.product-photo-fallback {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(160deg, var(--navy-3), var(--navy));
  border: 1px dashed rgba(212,175,55,0.3);
  font-size: 0.72rem;
  color: var(--text-muted);
}
.product-mock.img-missing .product-photo { display: none; }
.product-mock.img-missing .product-photo-fallback { display: flex; }
.product-foot {
  position: absolute;
  bottom: -9px; left: 24px;
  width: 70px; height: 20px;
  background: #e3dcc9;
  transform: perspective(60px) rotateX(58deg);
  transform-origin: top;
  border-radius: 0 0 3px 3px;
  z-index: 1;
  box-shadow: 0 10px 18px rgba(0,0,0,0.35);
}

.product-mock--black .product-photo { filter: blur(6px) brightness(0.42) saturate(0.75); }
.product-mock--black .product-foot { background: #1c1c1c; }
.coming-soon-badge {
  position: absolute;
  z-index: 3;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(10,10,11,0.88);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* ================= PRICING ================= */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  text-align: center;
  padding: 44px 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(212,175,55,0.16);
  background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.price-card--highlight {
  border-color: rgba(212,175,55,0.5);
  background: linear-gradient(160deg, rgba(212,175,55,0.09), rgba(255,255,255,0.01));
  animation: priceGlow 3.2s ease-in-out infinite;
}
@keyframes priceGlow {
  0%, 100% { box-shadow: 0 20px 60px rgba(212,175,55,0.1); }
  50% { box-shadow: 0 20px 70px rgba(212,175,55,0.28); }
}
.price-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.price-tag {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.price-amount {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 10px;
}
.price-currency { font-size: 1.6rem; vertical-align: top; margin-right: 2px; }
.price-decimal { font-size: 1.8rem; }
.price-unit { font-size: 1rem; color: var(--text-muted); font-family: var(--ff-sans); }
.price-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 26px; }

/* ================= STEPS ================= */
.steps-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.steps-line {
  position: absolute;
  top: 24px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: rgba(212,175,55,0.15);
  z-index: 0;
}
.steps-line-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 1.6s var(--ease);
}
.steps-line-fill.animate { width: 100%; }
.step { position: relative; z-index: 1; }
.step-num {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 700;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-3), var(--navy-2));
  border: 1.5px solid rgba(212,175,55,0.4);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step h3 { font-family: var(--ff-serif); font-size: 1.25rem; margin-bottom: 10px; font-weight: 600; }
.step p { color: var(--text-muted); font-size: 0.92rem; }

/* ================= RANKING ================= */
.rank-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}
.rank-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(212,175,55,0.1);
  will-change: transform;
}
.rank-badge {
  width: 30px; height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  transition: background 0.4s, color 0.4s;
}
.rank-badge.gold { background: linear-gradient(135deg, var(--gold-light), var(--gold-deep)); color: var(--navy); }
.rank-badge.silver { background: linear-gradient(135deg, #e6e6ea, #a8a8ae); color: #17171a; }
.rank-badge.bronze { background: linear-gradient(135deg, #d9a06a, #a06432); color: #17171a; }
.rank-photo {
  width: 44px; height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #3c3c40, #1a1a1c);
}
.rank-photo.blurred { filter: blur(2.5px) brightness(0.75) saturate(0.6); }
.rank-photo.rp1 { background: linear-gradient(135deg, #4a3c30, #201812); }
.rank-photo.rp2 { background: linear-gradient(135deg, #3a4038, #151815); }
.rank-photo.rp3 { background: linear-gradient(135deg, #43362c, #1c1610); }
.rank-photo.rp4 { background: linear-gradient(135deg, #383438, #161416); }
.rank-photo.rp5 { background: linear-gradient(135deg, #3e372c, #191510); }
.rank-photo.you {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--navy);
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.35rem;
  transition: width 0.5s var(--ease), height 0.5s var(--ease);
}
.rank-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.rank-info strong { font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rank-count { font-size: 0.8rem; color: var(--text-muted); transition: color 0.4s; }
.rank-stars { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; letter-spacing: 1px; display: inline-block; }
.rank-stars.star-bump { animation: starBump 0.5s var(--ease); }
@keyframes starBump {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); text-shadow: 0 0 14px rgba(212,175,55,0.8); }
  100% { transform: scale(1); }
}

.rank-item--you {
  z-index: 2;
  transform: scale(1.08);
  margin-block: -3px;
  border-width: 2px;
  border-color: var(--gold);
  animation: youCardGlow 2s ease-in-out infinite;
}
.rank-item--you .rank-count { color: var(--gold-light); font-weight: 600; }
.rank-item--you .rank-photo.you { animation: youGlow 1.8s ease-in-out infinite; }
.rank-item--you.is-first {
  z-index: 3;
  transform: scale(1.12);
  margin-block: -6px;
}
.rank-item--you.is-first .rank-photo.you { width: 60px; height: 60px; }
@keyframes youCardGlow {
  0%, 100% { box-shadow: 0 16px 40px rgba(212,175,55,0.16), 0 0 0 2px rgba(212,175,55,0.3); }
  50% { box-shadow: 0 20px 55px rgba(212,175,55,0.38), 0 0 0 3px rgba(212,175,55,0.65); }
}
@keyframes youGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.55); }
  50% { box-shadow: 0 0 0 12px rgba(212,175,55,0); }
}

/* ================= REVIEWS ================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card-el {
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(212,175,55,0.14);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.review-card-el:hover { border-color: rgba(212,175,55,0.35); }
.stars-row.small { font-size: 0.95rem; color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; }
.review-card-el p { font-size: 0.98rem; color: var(--cream); margin-bottom: 22px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--ff-serif);
}
.review-author strong { display: block; font-size: 0.92rem; }
.review-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ================= PREORDER FORM ================= */
.preorder-section {
  position: relative;
  max-width: 100%;
  padding: 120px 5%;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  overflow: hidden;
}
.preorder-bg { position: absolute; inset: 0; z-index: 0; }
.orb-4 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 70%);
  top: 10%; left: 50%;
  transform: translateX(-50%);
  filter: blur(100px);
  border-radius: 50%;
}
.preorder-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 70px;
  align-items: flex-start;
}
.preorder-text { flex: 1 1 420px; padding-top: 20px; min-width: 0; }
.preorder-text p { color: var(--text-muted); font-size: 1.05rem; margin: 18px 0 34px; max-width: 440px; }
.contact-mini { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.98rem;
}
.contact-item svg { color: var(--gold); }

.preorder-form {
  flex: 1 1 480px;
  min-width: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  position: relative;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; min-width: 0; }
.field input, .field select, .field textarea { width: 100%; }
.form-row .field { margin-bottom: 0; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.field input, .field select, .field textarea {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(250,246,238,0.15);
  background: rgba(255,255,255,0.04);
  color: var(--cream);
  transition: border-color 0.3s, background 0.3s;
  resize: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212,175,55,0.06);
}
.field select option { background: var(--navy-2); color: var(--cream); }
.field input::placeholder, .field textarea::placeholder { color: rgba(154,163,192,0.6); }

/* Campo honeypot anti-spam: fuori schermo ma presente nel DOM, non
   display:none (alcuni bot ignorano i campi con display:none). */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-consent { margin-bottom: 18px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.consent-label a { color: var(--gold-light); text-decoration: underline; }

.preorder-form .btn-primary { margin-top: 6px; }

.form-error {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(224,96,90,0.1);
  border: 1px solid rgba(224,96,90,0.3);
  color: #e0605a;
  font-size: 0.88rem;
  text-align: center;
}
.form-error.show { display: block; animation: fadeIn 0.4s var(--ease); }

.form-success {
  display: none;
  text-align: center;
  padding: 20px 0 4px;
  color: var(--gold-light);
}
.form-success.show { display: block; animation: fadeIn 0.6s var(--ease); }
.form-success svg { margin: 0 auto 14px; color: var(--gold); }
.form-success h4 { font-family: var(--ff-serif); font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: 0.92rem; }
.preorder-form.submitted .field,
.preorder-form.submitted .hp-field,
.preorder-form.submitted .btn-primary { display: none; }

/* ================= FOOTER ================= */
.footer {
  padding: 50px 5% 40px;
  text-align: center;
  border-top: 1px solid rgba(212,175,55,0.1);
  position: relative;
  z-index: 2;
}
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 14px; }
.footer p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 8px; }
.footer-contacts { display: flex; justify-content: center; gap: 10px; font-size: 0.85rem; color: var(--text-muted); }

/* ================= ACCESSIBILITY ================= */
.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 2000;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: 100px;
  transition: top 0.3s var(--ease);
}
.skip-link:focus {
  top: 16px;
  outline: none;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ================= SCROLL PROGRESS ================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  z-index: 900;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(212,175,55,0.6);
}

/* ================= CARD TILT (3D hover) ================= */
.service-card, .price-card, .review-card-el {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ================= FAQ ================= */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1px solid rgba(212,175,55,0.14);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  padding: 4px 24px;
  transition: border-color 0.4s, background 0.4s;
}
.faq-item.is-open {
  border-color: rgba(212,175,55,0.4);
  background: linear-gradient(160deg, rgba(212,175,55,0.05), rgba(255,255,255,0.01));
}
.faq-summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--cream);
  background: none;
  border: none;
  text-align: left;
}
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 22px; height: 22px;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--gold);
  transition: transform 0.4s var(--ease);
}
.faq-icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.faq-content {
  overflow: hidden;
  height: 0;
  transition: height 0.35s var(--ease);
}
.faq-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 0 0 22px;
  margin: 0;
}

/* ================= BACK TO TOP ================= */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 400;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--navy);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(212,175,55,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px) scale(1.06); }

/* ================= STICKY MOBILE CTA ================= */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 450;
  padding: 12px 5% calc(12px + env(safe-area-inset-bottom));
  background: rgba(8,8,9,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(212,175,55,0.18);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  display: none;
}
.mobile-cta.visible { transform: translateY(0); }
.mobile-cta .btn { padding: 13px 24px; font-size: 0.9rem; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .cards-grid, .reviews-grid, .models-grid { grid-template-columns: 1fr 1fr; }
  .steps-track { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps-line { display: none; }
  .nfc-inner { flex-direction: column; }
  .preorder-inner { flex-direction: column; }
  .nav-links { display: none; }
}
@media (max-width: 720px) {
  .mobile-cta { display: block; }
  .back-to-top { right: 16px; bottom: 84px; width: 42px; height: 42px; }
  .hero { flex-direction: column; padding-top: 120px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .hero-visual { min-height: 340px; }
  .tap-scene { width: 300px; height: 300px; }
  .orbit-ring-1 { width: 200px; height: 200px; }
  .orbit-ring-2 { width: 250px; height: 250px; }
  .cards-grid, .reviews-grid, .steps-track, .models-grid, .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 340px; }
  .form-row { grid-template-columns: 1fr; }
  .preorder-form { padding: 28px 22px; }
  .section { padding: 80px 5%; }
  .tag-scene { width: 300px; height: 300px; }
  .nav { padding: 16px 4%; }
  .nav-inner { gap: 10px; }
  .brand-text { font-size: 1.1rem; }
  .btn-nav { padding: 8px 14px; font-size: 0.78rem; }
  .rank-item { padding: 12px 14px; gap: 12px; }
  .rank-stars { display: none; }
}

@media (max-width: 380px) {
  .brand-text { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
