@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/* ---------- hero ---------- */
.hero { position: relative; padding: 96px 0 120px; overflow: visible; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Reduzido de 0.9 para 0.5 na extrema esquerda, sumindo suavemente. Cores vivas preservadas! */
  background: linear-gradient(to right, rgba(10, 15, 20, 0.5) 0%, rgba(10, 15, 20, 0.2) 35%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(600px 400px at 80% 10%, rgba(41, 121, 255, .14), transparent 65%),
    radial-gradient(500px 400px at 10% 90%, rgba(245, 180, 38, .06), transparent 65%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; position: relative; z-index: 2; }
.kicker {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 3px;
  color: var(--primary-soft); text-transform: uppercase; margin-bottom: 18px;
}
h1 { color: #FFFFFF; font-size: clamp(38px, 6vw, 60px); line-height: 1.06; font-weight: 900; letter-spacing: -1px; }
.hero p.sub { margin: 22px 0 32px; font-size: 18px; max-width: 480px; color: var(--text-2); }
.hero-actions { display: flex; gap: 32px; align-items: center; margin-bottom: 14px; }
.hero-ctas { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.hero-ctas .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.hero-ctas .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.hero-badges { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  background: #000; border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px; padding: 6px 16px;
  height: 48px; box-sizing: border-box;
  text-decoration: none; color: white;
  position: relative; transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}
.store-btn:hover { transform: scale(1.05); filter: brightness(1.1); border-color: rgba(255, 255, 255, 0.4); }
.store-icon { width: 24px; height: 24px; }
.store-text { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.store-lbl { font-size: 9px; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); letter-spacing: 0.5px; line-height: 1; }
.store-name { font-size: 16px; font-weight: 600; line-height: 1; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; letter-spacing: -0.3px; }
.ios-coming-soon { opacity: 0.5; cursor: default; pointer-events: none; }
.badge-tag {
  position: absolute; top: -8px; right: -10px;
  background: rgba(100, 100, 110, 0.8); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white; font-size: 10px; font-weight: 700; text-transform: uppercase;
  border-radius: 12px; padding: 2px 8px;
}
.store-note { font-size: 13px; color: var(--text-3); margin-top: 14px; }

/* phone mockup */
.phone-col { display: flex; justify-content: center; position: relative; z-index: 10; }
.phone {
  width: 340px; aspect-ratio: 9 / 16; border-radius: 28px; padding: 12px;
  background: linear-gradient(160deg, #1a2330, #0d1218);
  border: 1px solid #2a3648; box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.03) inset;
  transform: scale(1.15) translateY(-20px);
  transform-origin: top right;
}
.screen { width: 100%; height: 100%; border-radius: 20px; overflow: hidden; background: var(--bg-2); position: relative; }
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%); z-index: 5;
  width: 30%; height: 14px; background: #000000; border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.phone-home-indicator {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); z-index: 5;
  width: 35%; height: 4px; background: rgba(255, 255, 255, 0.8); border-radius: 10px;
}

/* Botão de Play (Glassmorphism) */
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s ease;
  animation: pulse-play 2s infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.play-btn svg { width: 26px; height: 26px; margin-left: 4px; /* compensação visual para triângulo */ fill: #ffffff; }
.play-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translate(-50%, -50%) scale(1.05);
}
@keyframes pulse-play {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2); }
  70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ---------- sections ---------- */
section { padding: 88px 0; position: relative; }

/* ---------- faction spotlight grid ---------- */
.bg-faction-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: transparent; 
  /* Refinamento: Fade nas bordas top e bottom */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.bg-faction-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  
  /* Camada Única: Territórios orgânicos com bordas rígidas (Hard Stops) */
  background: 
    /* Território Solaris */
    radial-gradient(circle at 20% 25%, var(--solaris) 0%, var(--solaris) 5%, transparent 20%),
    radial-gradient(circle at 28% 18%, var(--solaris) 0%, var(--solaris) 2%, transparent 17%),
    radial-gradient(circle at 75% 55%, var(--solaris) 0%, var(--solaris) 8%, transparent 23%),
    radial-gradient(circle at 65% 65%, var(--solaris) 0%, var(--solaris) 2%, transparent 17%),
    
    /* Território Umbra */
    radial-gradient(circle at 80% 20%, var(--umbra) 0%, var(--umbra) 6%, transparent 21%),
    radial-gradient(circle at 68% 30%, var(--umbra) 0%, var(--umbra) 4%, transparent 19%),
    radial-gradient(circle at 25% 75%, var(--umbra) 0%, var(--umbra) 10%, transparent 25%),
    radial-gradient(circle at 18% 62%, var(--umbra) 0%, var(--umbra) 0%, transparent 15%),
    
    /* Território Verdant */
    radial-gradient(circle at 45% 70%, var(--verdant) 0%, var(--verdant) 12%, transparent 27%),
    radial-gradient(circle at 58% 78%, var(--verdant) 0%, var(--verdant) 5%, transparent 20%),
    radial-gradient(circle at 35% 45%, var(--verdant) 0%, var(--verdant) 2%, transparent 17%),
    
    /* Território Aurora */
    radial-gradient(circle at 50% 15%, var(--aurora) 0%, var(--aurora) 8%, transparent 23%),
    radial-gradient(circle at 38% 22%, var(--aurora) 0%, var(--aurora) 2%, transparent 17%),
    radial-gradient(circle at 85% 85%, var(--aurora) 0%, var(--aurora) 5%, transparent 20%),
    
    rgba(255, 255, 255, 0.15); /* Território Neutro (Fundo) */
  
  background-size: 1500px 1500px;
  background-repeat: repeat;
  animation: flow-gradient 25s linear infinite;
  opacity: 0.9; /* Territórios um pouco mais fortes */

  /* A Grande Sacada: O Spotlight nunca fica 100% transparente, ele para em 4% (0.04) de opacidade. 
     Isso garante que a malha continue visível no fundo todo, sem precisar de uma segunda camada estática! */
  -webkit-mask-image: 
    radial-gradient(
      800px circle at calc(var(--mouse-x, 50%)) calc(var(--mouse-y, 50%)), 
      rgba(0, 0, 0, 0.8) 0%, 
      rgba(0, 0, 0, 0.3) 40%, 
      rgba(0, 0, 0, 0.04) 100% 
    ),
    url("data:image/svg+xml,%3Csvg width='90' height='52' viewBox='0 0 90 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 52 L0 26 L15 0 L45 0 L60 26 L90 26 M60 26 L45 52' fill='none' stroke='%23ffffff' stroke-width='2' stroke-opacity='1'/%3E%3C/svg%3E");
  
  mask-image: 
    radial-gradient(
      800px circle at calc(var(--mouse-x, 50%)) calc(var(--mouse-y, 50%)), 
      rgba(0, 0, 0, 0.8) 0%, 
      rgba(0, 0, 0, 0.3) 40%, 
      rgba(0, 0, 0, 0.04) 100% 
    ),
    url("data:image/svg+xml,%3Csvg width='90' height='52' viewBox='0 0 90 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 52 L0 26 L15 0 L45 0 L60 26 L90 26 M60 26 L45 52' fill='none' stroke='%23ffffff' stroke-width='2' stroke-opacity='1'/%3E%3C/svg%3E");
    
  -webkit-mask-composite: source-in; 
  mask-composite: intersect;

  -webkit-mask-size: 100% 100%, 135px 78px;
  mask-size: 100% 100%, 135px 78px;
  
  -webkit-mask-repeat: no-repeat, repeat;
  mask-repeat: no-repeat, repeat;

  /* Performance GSAP */
  will-change: mask-position, -webkit-mask-position, mask-image, -webkit-mask-image;
}

/* Corredor Fantasma (Rastro de luz intenso mascarado pela malha) */
.bg-faction-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  /* Transformado de elipse vertical para um Orbe Circular. 
     Isso permite que a luz corra em QUALQUER ângulo perfeitamente! */
  background: radial-gradient(circle 50px at var(--runner-x, -50%) var(--runner-y, -50%), rgba(255, 255, 255, 0.95) 0%, rgba(100, 200, 255, 0.5) 40%, transparent 100%);
  
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='90' height='52' viewBox='0 0 90 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 52 L0 26 L15 0 L45 0 L60 26 L90 26 M60 26 L45 52' fill='none' stroke='%23ffffff' stroke-width='2' stroke-opacity='1'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='90' height='52' viewBox='0 0 90 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 52 L0 26 L15 0 L45 0 L60 26 L90 26 M60 26 L45 52' fill='none' stroke='%23ffffff' stroke-width='2' stroke-opacity='1'/%3E%3C/svg%3E");
  
  -webkit-mask-size: 135px 78px;
  mask-size: 135px 78px;
  
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
  
  /* Performance GSAP */
  will-change: background;
}

@keyframes flow-gradient {
  0% { background-position: 0px 0px; }
  100% { background-position: -1500px 1500px; }
}

/* Brilho isolado da seção de Facções (GSAP Hover) */
.factions-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1; /* Acima do fundo da section, mas abaixo do .wrap/.faction */
  background-color: var(--active-faction-color, transparent);
  
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='90' height='52' viewBox='0 0 90 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 52 L0 26 L15 0 L45 0 L60 26 L90 26 M60 26 L45 52' fill='none' stroke='%23ffffff' stroke-width='2' stroke-opacity='1'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='90' height='52' viewBox='0 0 90 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 52 L0 26 L15 0 L45 0 L60 26 L90 26 M60 26 L45 52' fill='none' stroke='%23ffffff' stroke-width='2' stroke-opacity='1'/%3E%3C/svg%3E");
  
  -webkit-mask-size: 135px 78px;
  mask-size: 135px 78px;
  
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
  
  transition: opacity 0.5s ease, background-color 0.5s ease;
  will-change: opacity, background-color;
}

/* Proteção de contraste para os textos da seção de facções */
#faccoes::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2; /* Acima do factions-glow (1), abaixo do conteúdo */
  pointer-events: none;
  /* Um brilho escuro e suave no topo da seção, abafando as cores vivas atrás do texto */
  background: radial-gradient(ellipse 140% 75% at center top, rgba(10, 15, 20, 0.85) 0%, rgba(10, 15, 20, 0.4) 55%, transparent 100%);
}

#faccoes .wrap {
  position: relative;
  z-index: 3;
}


section.alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sec-kicker { text-align: center; font-size: 12px; font-weight: 800; letter-spacing: 3px; color: var(--primary-soft); text-transform: uppercase; }
h2 { color: var(--text); font-size: clamp(28px, 4vw, 40px); font-weight: 900; text-align: center; margin: 10px 0 14px; letter-spacing: -.5px; }
.sec-sub { text-align: center; max-width: 560px; margin: 0 auto 56px; color: var(--text-2); font-size: 16px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { 
  background: rgba(19, 26, 36, 0.4); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 20px; padding: 30px 26px; position: relative; 
  box-shadow: 0 15px 35px rgba(0,0,0,0.2); transition: transform .3s ease, box-shadow .3s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(41, 121, 255, 0.1); }
.step .n {
  width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: rgba(41, 121, 255, .12); color: var(--primary-soft); font-weight: 900; font-size: 18px; margin-bottom: 18px;
}
.step h3 { color: var(--text); font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-2); }

.factions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.faction { 
  position: relative; z-index: 10;
  background: rgba(19, 26, 36, 0.4); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 20px; padding: 26px 20px; text-align: center; 
  transition: transform .3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color .3s ease, box-shadow .3s ease; 
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.faction:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 25px 50px rgba(0,0,0,0.3); }
.faction img { width: 96px; height: 96px; margin: 0 auto 14px; }
.faction h3 { font-size: 18px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.faction p { font-size: 13px; color: var(--text-3); font-style: italic; }
.faction.solaris:hover { border-color: var(--solaris); } .faction.solaris h3 { color: var(--solaris); }
.faction.umbra:hover { border-color: var(--umbra); } .faction.umbra h3 { color: var(--umbra); }
.faction.verdant:hover { border-color: var(--verdant); } .faction.verdant h3 { color: var(--verdant); }
.faction.aurora:hover { border-color: var(--aurora); } .faction.aurora h3 { color: var(--aurora); }
.factions-note {
  display: block;
  width: fit-content;
  margin: 26px auto 0;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #E8E8E8;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.feature:nth-child(1) { --feat-color: #00d2ff; --feat-glow: rgba(0, 210, 255, 0.15); }
.feature:nth-child(2) { --feat-color: #ff007f; --feat-glow: rgba(255, 0, 127, 0.15); }
.feature:nth-child(3) { --feat-color: #00ff87; --feat-glow: rgba(0, 255, 135, 0.15); }
.feature:nth-child(4) { --feat-color: #ff9f00; --feat-glow: rgba(255, 159, 0, 0.15); }
.feature:nth-child(5) { --feat-color: #ffd700; --feat-glow: rgba(255, 215, 0, 0.15); }
.feature:nth-child(6) { --feat-color: #a020f0; --feat-glow: rgba(160, 32, 240, 0.15); }

.feature { 
  background: rgba(15, 15, 20, 0.7); 
  backdrop-filter: blur(5px); 
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.05); 
  border-radius: 18px; 
  padding: 24px; 
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}
.feature:hover { 
  transform: translateY(-6px); 
  border-color: var(--feat-color);
  box-shadow: 0 10px 30px var(--feat-glow); 
}
.feature .ic { 
  width: 48px; height: 48px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--feat-color);
}
.feature .ic svg {
  width: 24px; height: 24px;
  stroke: var(--feat-color);
  filter: drop-shadow(0 0 8px var(--feat-color));
}
.feature h3 { color: var(--text); font-size: 16px; margin-bottom: 6px; }
.feature p { font-size: 13.5px; color: var(--text-2); }

/* --- Monumento VIP (Prestígio) --- */
#prestige-section {
  position: relative;
  background-image: linear-gradient(to bottom, #05050a 0%, rgba(5,5,10,0.2) 20%, rgba(5,5,10,0.2) 80%, #05050a 100%), url('../fundo-lenda.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#prestige-section .wrap { position: relative; z-index: 1; }

.prestige {
  position: relative;
  background: rgba(10, 10, 15, 0.45);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 24px;
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  box-shadow: 0 0 50px rgba(255, 200, 0, 0.1), inset 0 0 30px rgba(255, 200, 0, 0.05);
}

.prestige::before {
  content: ""; position: absolute;
  top: 0; left: 50%; transform: translate(-50%, -50%);
  z-index: 2; pointer-events: none;
  width: 450px; height: 6px;
  background: 
    radial-gradient(ellipse at center, rgba(255,255,255,1) 0%, rgb(255, 196, 0) 20%, rgba(255,215,0,0) 70%),
    radial-gradient(ellipse at center, rgba(255,200,50,0.3) 0%, rgba(255,200,50,0) 80%);
  filter: blur(2px);
}

.prestige::after {
  content: ""; position: absolute;
  bottom: 0; left: 50%; transform: translate(-50%, 50%);
  z-index: 2; pointer-events: none;
  width: 420px; height: 4px;
  background: 
    radial-gradient(ellipse at center, rgb(255, 230, 147) 0%, rgba(255,215,0,0.6) 20%, rgba(255,215,0,0) 70%),
    radial-gradient(ellipse at center, rgba(255,200,50,0.2) 0%, rgba(255,200,50,0) 80%);
  filter: blur(2px);
}

.prestige-icon svg {
  width: 72px; height: 72px;
  fill: url(#gold-gradient);
  stroke: none;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
  margin-bottom: 8px; /* O gap da section já adiciona mais espaço */
}

.prestige h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 6vw, 4.5rem);
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  color: #E8E8E8;
  font-weight: 400; /* Anton é 400 por padrão */
  letter-spacing: 2px;
  line-height: 0.8;
}

.gold-text {
  display: block;
  font-size: clamp(72px, 11vw, 8.2rem);
  letter-spacing: 3px;
  background: linear-gradient(to bottom, #d6d1aa 0%, #EAA923 25%, #C28613 50%, #EAA923 75%, #eedf6c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 0.8;
  margin-top: 5px;
  padding-top: 12px;
}

.prestige h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
  background: url('../separador1.png') center/contain no-repeat;
  margin-top: 36px;
  margin-bottom: -12px;
  opacity: 0.9;
}

.prestige-separator {
  display: none;
}

.prestige p {
  color: var(--text-2);
  max-width: 600px;
  font-size: 0.9rem;
  margin: 24px auto;
  line-height: 1.6;
  opacity: 0.8;
}
.prestige strong { color: #FFDF73; font-weight: 700; }

.btn-premium-wrap {
  display: inline-block;
  background: linear-gradient(135deg, #FFDF73 0%, #B8860B 100%);
  padding: 2px;
  clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0 50%);
  text-decoration: none;
  transition: transform 0.3s ease, filter 0.3s ease;
  margin-top: 10px;
}

.btn-premium-inner {
  display: block;
  background: #0a0a0f;
  color: #FFDF73;
  padding: 16px 36px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0 50%);
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-premium-wrap:hover {
  transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 15px 30px rgba(255, 215, 0, 0.3));
}

.btn-premium-wrap:hover .btn-premium-inner {
  background: transparent;
  color: #05050A;
}

.final-cta { text-align: center; }
.final-cta .btn { margin-top: 8px; }

@media (max-width: 900px) {
  .hero { padding: 64px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .phone { transform: rotate(0); width: 270px; height: 550px; }
  .steps, .features { grid-template-columns: 1fr; }
  .factions { grid-template-columns: repeat(2, 1fr); }
  .prestige { padding: 40px 24px; }
}
