:root{
--gold: #FFD700;
--gold-light: #FFE44D;
--black: #000000;
--dark: #111111;
--white: #FFFFFF;
--white-80: rgba(255,255,255,0.8);
--white-50: rgba(255,255,255,0.5);
--white-15: rgba(255,255,255,0.15);
--white-08: rgba(255,255,255,0.08);
--white-04: rgba(255,255,255,0.04);
--nav-h: 64px;
}
*, *::before, *::after{ margin: 0; padding: 0; box-sizing: border-box; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body{
font-family: 'DM Sans', system-ui, sans-serif;
background: var(--black);
color: var(--white);
overflow-x: hidden;
line-height: 1.6;
}
::selection{ background: rgba(201,168,76,0.3); color: #fff; }
::-webkit-scrollbar{ width: 4px; }
::-webkit-scrollbar-track{ background: var(--black); }
::-webkit-scrollbar-thumb{ background: var(--gold); }
.display{
font-family: 'Bebas Neue', sans-serif;
line-height: 0.92;
letter-spacing: 0.02em;
}
.nav{
position: fixed;
top: 0; left: 0; right: 0;
z-index: 1000;
height: var(--nav-h);
display: flex;
flex-direction: column;
border-bottom: 1px solid transparent;
transition: background 0.4s ease, border-color 0.4s ease, top 0.4s ease, max-width 0.4s ease, left 0.4s ease, right 0.4s ease, border-radius 0.4s ease, box-shadow 0.4s ease;
max-width: 100%;
margin: 0 auto;
}
@media (min-width: 900px){
.nav{
left: 0; right: 0;
margin: 0 auto;
}
.nav.scrolled{
top: 1rem;
left: 50%;
right: auto;
transform: translateX(-50%);
width: calc(100% - 4rem);
max-width: 960px;
border-radius: 12px;
border: 1px solid var(--white-15);
background: rgba(8,8,8,0.85);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
}
.nav.scrolled:not(.nav-mobile-open){
top: 0.75rem;
left: 50%;
right: auto;
transform: translateX(-50%);
width: calc(100% - 2rem);
border-radius: 12px;
border: 1px solid var(--white-15);
background: rgba(8,8,8,0.85);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
@media (min-width: 900px){
.nav.scrolled:not(.nav-mobile-open){
top: 1rem;
width: calc(100% - 4rem);
max-width: 960px;
}
}
.nav-bar{
height: var(--nav-h);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 1.25rem;
max-width: 1280px;
margin: 0 auto;
width: 100%;
transition: padding 0.4s ease, height 0.4s ease;
}
@media (min-width: 900px){
.nav.scrolled .nav-bar{
height: calc(var(--nav-h) - 8px);
padding: 0 1rem;
}
}
.logo{
font-family: 'Bebas Neue', sans-serif;
font-size: 1.25rem;
letter-spacing: 0.08em;
color: var(--white);
text-decoration: none;
flex-shrink: 0;
}
.nav-links{
display: none;
align-items: center;
gap: 2.5rem;
}
@media (min-width: 900px){
.nav-links{ display: flex; }
.nav-bar{ padding: 0 2rem; }
}
.nav-link{
background: none; border: none; cursor: pointer;
font-family: 'DM Sans', sans-serif;
font-size: 0.75rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--white-50);
transition: color 0.2s;
padding: 0;
position: relative;
}
.nav-link::after{
content: '';
position: absolute;
bottom: -4px; left: 0; right: 100%;
height: 1px;
background: var(--gold);
transition: right 0.3s ease;
}
.nav-link:hover{ color: var(--white); }
.nav-link:hover::after{ right: 0; }
.nav-right{
display: flex;
align-items: center;
gap: 0.75rem;
}
.lang-toggle{
position: relative;
display: flex;
align-items: center;
gap: 0;
padding: 4px;
border: 1px solid var(--white-15);
background: transparent;
cursor: pointer;
border-radius: 2px;
flex-shrink: 0;
}
.lang-option{
padding: 3px 8px;
font-size: 0.7rem;
font-weight: 600;
font-family: 'DM Sans', sans-serif;
letter-spacing: 0.05em;
transition: color 0.2s;
z-index: 1;
position: relative;
}
.lang-option.active{ color: var(--black); }
.lang-option:not(.active){ color: var(--white-50); }
.lang-divider{ color: var(--white-15); font-size: 0.7rem; }
.lang-indicator{
position: absolute;
height: calc(100% - 8px);
background: var(--gold);
transition: left 0.3s cubic-bezier(0.16,1,0.3,1);
z-index: 0;
border-radius: 1px;
}
.hamburger{
display: flex;
flex-direction: column;
justify-content: center;
gap: 5px;
background: none;
border: 1px solid var(--white-15);
cursor: pointer;
padding: 8px 10px;
width: 42px;
height: 38px;
border-radius: 2px;
}
@media (min-width: 900px){ .hamburger{ display: none; } }
.hamburger span{
display: block;
width: 100%;
height: 1.5px;
background: var(--white);
transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
transform-origin: center;
}
.hamburger.open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }
.mobile-drawer{
position: fixed;
top: var(--nav-h);
left: 0; right: 0;
background: rgba(8,8,8,0.98);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--white-15);
z-index: 999;
max-height: 0;
overflow: hidden;
transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1);
border-radius: 0 0 12px 12px;
}
.nav.scrolled ~ .mobile-drawer{
position: fixed;
top: calc(0.75rem + var(--nav-h));
left: 1rem;
right: 1rem;
border-radius: 0 0 12px 12px;
border: 1px solid var(--white-15);
border-top: none;
}
.mobile-drawer.open{ max-height: 500px; }
.mobile-drawer-inner{
padding: 1.5rem 1.25rem 2rem;
display: flex;
flex-direction: column;
gap: 0;
}
.mobile-nav-link{
background: none; border: none; cursor: pointer;
font-family: 'Bebas Neue', sans-serif;
font-size: 2rem;
letter-spacing: 0.06em;
color: var(--white-50);
text-align: left;
padding: 0.75rem 0;
border-bottom: 1px solid var(--white-08);
transition: color 0.2s;
width: 100%;
}
.mobile-nav-link:last-child{ border-bottom: none; }
.mobile-nav-link:hover{ color: var(--gold); }
.hero{
position: relative;
min-height: 100svh;
display: flex;
align-items: flex-start;
padding-top: calc(var(--nav-h) + 2.5rem);
padding-bottom: 4rem;
overflow: hidden;
}
.hero-img{
position: absolute;
inset: 0;
z-index: 0;
}
.hero-img img{
width: 100%;
height: 100%;
object-fit: cover;
object-position: center center;
}
.hero-grad{
position: absolute;
inset: 0;
z-index: 1;
background:
linear-gradient(to bottom,
rgba(8,8,8,0.88) 0%,
rgba(8,8,8,0.55) 30%,
rgba(8,8,8,0.15) 55%,
rgba(8,8,8,0.50) 100%
);
}
.hero-content{
position: relative;
z-index: 2;
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding: 0 1.25rem;
}
@media (max-width: 899px){
.hero-content{
display: flex;
flex-direction: column;
min-height: calc(100svh - var(--nav-h) - 2.5rem - 4rem);
}
.hero-bottom{ margin-top: auto; }
}
@media (min-width: 900px){
.hero-content{ padding: 0 2rem; }
.hero-bottom{ display: contents; }
}
.hero-eyebrow{
display: inline-block;
font-size: 0.7rem;
font-weight: 500;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 1rem;
}
.hero-title{
font-size: clamp(3.5rem, 14vw, 9rem);
margin-bottom: 1rem;
color: var(--white);
}
.hero-subtitle{
font-size: clamp(0.875rem, 3vw, 1.05rem);
color: var(--white-80);
max-width: 440px;
line-height: 1.65;
margin-bottom: 2rem;
font-weight: 300;
}
.hero-ctas{
display: flex;
flex-direction: column;
gap: 0.75rem;
}
@media (min-width: 480px){
.hero-ctas{ flex-direction: row; }
}
.btn{
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.875rem 1.75rem;
font-family: 'DM Sans', sans-serif;
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
border: none;
cursor: pointer;
transition: all 0.25s ease;
text-decoration: none;
white-space: nowrap;
}
.btn-gold{
background: var(--gold);
color: var(--black);
}
.btn-gold:hover{
background: var(--gold-light);
transform: translateY(-1px);
}
.btn-outline{
background: transparent;
color: var(--white);
border: 1px solid var(--white-15);
}
.btn-outline:hover{
border-color: var(--white-50);
background: var(--white-04);
}
.scroll-hint{
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
z-index: 2;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.4rem;
color: var(--white-50);
}
.scroll-hint span{
font-size: 0.65rem;
letter-spacing: 0.15em;
text-transform: uppercase;
}
.scroll-hint svg{ animation: scrollBounce 1.8s ease-in-out infinite; }
@keyframes scrollBounce{
0%, 100%{ transform: translateY(0); }
50%{ transform: translateY(6px); }
}
.stats{
background: var(--dark);
border-top: 1px solid var(--white-08);
border-bottom: 1px solid var(--white-08);
padding: 2.5rem 1.25rem;
}
.stats-inner{
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem 1rem;
}
@media (min-width: 640px){
.stats-inner{ grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stats{ padding: 2.5rem 2rem; }
}
.stat{ text-align: center; }
.stat-num{
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(2.5rem, 8vw, 4rem);
color: var(--gold);
line-height: 1;
margin-bottom: 0.35rem;
}
.stat-label{
font-size: 0.65rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--white-50);
font-weight: 500;
}
.section{
padding: 5rem 1.25rem;
position: relative;
overflow: hidden;
}
@media (min-width: 900px){
.section{ padding: 7rem 2rem; }
}
.section-inner{
max-width: 1280px;
margin: 0 auto;
position: relative;
z-index: 2;
}
.section-ghost{
position: absolute;
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(8rem, 22vw, 20rem);
color: rgba(255,255,255,0.025);
line-height: 1;
pointer-events: none;
user-select: none;
top: 50%;
transform: translateY(-50%);
}
.section-ghost.right{ right: -1rem; }
.section-ghost.left{ left: -1rem; }
.section-tag{
display: inline-block;
font-size: 0.68rem;
font-weight: 600;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 0.75rem;
}
.section-title{
font-size: clamp(2.2rem, 8vw, 5rem);
color: var(--white);
margin-bottom: 1.25rem;
}
.section-sub{
font-size: clamp(0.875rem, 2.5vw, 1rem);
color: var(--white-50);
line-height: 1.7;
font-weight: 300;
max-width: 560px;
}
.about-grid{
display: grid;
gap: 3rem;
max-width: 760px;
margin: 0 auto;
}
@media (min-width: 900px){
.about-grid{
grid-template-columns: 1fr;
gap: 3rem;
align-items: center;
text-align: center;
}
}
.about-body p{
margin-left: auto;
margin-right: auto;
}
.about-quote{
margin-left: auto !important;
margin-right: auto !important;
}
.about-img-wrap{
margin: 0 auto;
max-width: 480px;
}
.about-img-wrap::before{
display: none;
}
.section-tag,
.section-title,
.section-sub{
display: block;
text-align: center;
}
.about-img-wrap{
position: relative;
}
.about-img-wrap::before{
content: '';
position: absolute;
left: -0.75rem;
top: 15%;
width: 3px;
height: 60%;
background: var(--gold);
}
.about-img-wrap img{
width: 100%;
aspect-ratio: 16/10;
object-fit: contain;
object-position: center center;
display: block;
}
.about-body p{
color: var(--white-80);
font-size: clamp(0.875rem, 2.5vw, 1rem);
line-height: 1.75;
font-weight: 300;
margin-bottom: 1.25rem;
}
.about-quote{
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(1.4rem, 4vw, 2rem);
color: var(--gold);
letter-spacing: 0.04em;
border-left: 2px solid var(--gold);
padding-left: 1rem;
margin-top: 1.5rem;
line-height: 1.2;
}
.programs-hd{
text-align: center;
margin-bottom: 3rem;
}
.programs-hd .section-sub{
margin: 0 auto;
}
.programs-grid{
display: grid;
gap: 1.25rem;
}
@media (min-width: 700px){
.programs-grid{ grid-template-columns: repeat(3, 1fr); }
}
.prog-card{
position: relative;
padding: 2rem 1.5rem;
border: 1px solid rgba(255,255,255,0.12);
background: rgba(255,255,255,0.05);
backdrop-filter: blur(20px) saturate(160%);
-webkit-backdrop-filter: blur(20px) saturate(160%);
border-radius: 24px;
display: flex;
flex-direction: column;
box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.prog-card:hover{
box-shadow: 0 16px 48px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.12);
}
.prog-card .prog-features{
flex: 1;
}
.prog-card:hover{ transform: translateY(-6px); }
.prog-card.featured{
border-color: rgba(255, 215, 0, 0.4);
background: rgba(201,168,76,0.08);
box-shadow: 0 8px 32px rgba(201,168,76,0.12), inset 0 1px 0 rgba(255,215,0,0.15);
}
.prog-card.featured:hover{
box-shadow: 0 16px 48px rgba(201,168,76,0.2), inset 0 1px 0 rgba(255,215,0,0.2);
}
.prog-badge{
position: absolute;
top: -1px; left: 50%;
transform: translateX(-50%);
background: var(--gold);
color: var(--black);
font-size: 0.6rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
padding: 3px 12px;
white-space: nowrap;
}
.prog-name{
font-family: 'Bebas Neue', sans-serif;
font-size: 1.75rem;
letter-spacing: 0.05em;
margin-bottom: 0.25rem;
}
.prog-for{
font-size: 0.8rem;
color: var(--white-50);
margin-bottom: 1.5rem;
font-weight: 300;
}
.prog-price{
display: flex;
align-items: baseline;
gap: 0.25rem;
margin-bottom: 1.75rem;
}
.prog-amount{
font-family: 'Bebas Neue', sans-serif;
font-size: 3rem;
line-height: 1;
color: var(--white);
}
.prog-period{
font-size: 0.8rem;
color: var(--white-50);
}
.prog-features{
list-style: none;
margin-bottom: 1.75rem;
display: flex;
flex-direction: column;
gap: 0.6rem;
}
.prog-features li{
display: flex;
align-items: flex-start;
gap: 0.6rem;
font-size: 0.85rem;
color: var(--white-80);
font-weight: 300;
}
.prog-features li::before{
content: '—';
color: var(--gold);
flex-shrink: 0;
font-size: 0.75rem;
margin-top: 2px;
}
.process-hd{ text-align: center; margin-bottom: 3.5rem; }
.process-grid{
display: grid;
gap: 2rem;
}
@media (min-width: 600px){ .process-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .process-grid{ grid-template-columns: repeat(4, 1fr); } }
.process-step{ position: relative; }
.process-num{
font-family: 'Bebas Neue', sans-serif;
font-size: 3.5rem;
color: var(--white-08);
line-height: 1;
margin-bottom: 0.5rem;
}
.process-icon-wrap{
width: 3rem;
height: 3rem;
border: 1px solid var(--white-15);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
background: var(--white-04);
}
.process-icon-wrap svg{
width: 1.25rem;
height: 1.25rem;
color: var(--gold);
}
.process-step-title{
font-family: 'Bebas Neue', sans-serif;
font-size: 1.35rem;
letter-spacing: 0.05em;
margin-bottom: 0.4rem;
}
.process-step-desc{
font-size: 0.85rem;
color: var(--white-50);
line-height: 1.6;
font-weight: 300;
}
.testi-hd{ text-align: center; margin-bottom: 3rem; }
.testi-wrap{
max-width: 760px;
margin: 0 auto;
text-align: center;
}
.testi-quote-mark{
font-family: 'Bebas Neue', sans-serif;
font-size: 5rem;
color: rgba(201,168,76,0.2);
line-height: 0.6;
margin-bottom: 1.5rem;
display: block;
}
.testi-body{
font-size: clamp(1rem, 3vw, 1.3rem);
color: var(--white-80);
line-height: 1.7;
font-weight: 300;
margin-bottom: 2rem;
min-height: 100px;
}
.testi-name{
font-family: 'Bebas Neue', sans-serif;
font-size: 1.2rem;
letter-spacing: 0.08em;
margin-bottom: 0.2rem;
}
.testi-detail{
font-size: 0.75rem;
color: var(--white-50);
letter-spacing: 0.1em;
text-transform: uppercase;
}
.testi-nav{
display: flex;
align-items: center;
justify-content: center;
gap: 1.5rem;
margin-top: 2.5rem;
}
.testi-btn{
width: 2.5rem;
height: 2.5rem;
border: 1px solid var(--white-15);
background: transparent;
color: var(--white-50);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s;
}
.testi-btn:hover{ border-color: var(--gold); color: var(--gold); }
.testi-dots{ display: flex; gap: 0.5rem; }
.testi-dot{
width: 6px; height: 6px;
background: var(--white-15);
border: none; cursor: pointer;
transition: all 0.3s;
}
.testi-dot.active{ background: var(--gold); width: 20px; }
.faq-layout{
display: grid;
gap: 3rem;
}
@media (min-width: 900px){
.faq-layout{
grid-template-columns: 1fr 1.6fr;
gap: 5rem;
align-items: start;
}
}
.faq-sticky{
position: sticky;
top: calc(var(--nav-h) + 2rem);
}
@media (max-width: 899px){
.faq-sticky{
position: static;
}
}
.faq-list{ display: flex; flex-direction: column; gap: 0; }
.faq-item{
border-bottom: 1px solid var(--white-08);
overflow: hidden;
}
.faq-item:first-child{ border-top: 1px solid var(--white-08); }
.faq-q{
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
padding: 1.25rem 0;
background: none;
border: none;
color: var(--white);
font-family: 'DM Sans', sans-serif;
font-size: 0.95rem;
font-weight: 500;
text-align: left;
cursor: pointer;
transition: color 0.2s;
}
.faq-q:hover{ color: var(--gold); }
.faq-icon{
width: 1.1rem; height: 1.1rem;
flex-shrink: 0;
transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
color: var(--white-50);
}
.faq-item.open .faq-icon{ transform: rotate(45deg); color: var(--gold); }
.faq-a{
max-height: 0;
overflow: hidden;
transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-a{ max-height: 200px; }
.faq-a-inner{
padding-bottom: 1.25rem;
font-size: 0.88rem;
color: var(--white-50);
line-height: 1.7;
font-weight: 300;
}
.cta-section{
position: relative;
padding: 6rem 1.25rem;
text-align: center;
overflow: hidden;
}
@media (min-width: 900px){ .cta-section{ padding: 8rem 2rem; } }
.cta-bg{
position: absolute;
inset: 0;
background: radial-gradient(ellipse at 50% 60%, rgba(201,168,76,0.1) 0%, transparent 65%);
}
.cta-rings{
position: absolute;
inset: 0;
pointer-events: none;
}
.cta-ring{
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
border: 1px solid rgba(201,168,76,0.08);
animation: ripple 4s ease-out infinite;
}
.cta-ring:nth-child(1){ width: 300px; height: 300px; animation-delay: 0s; }
.cta-ring:nth-child(2){ width: 500px; height: 500px; animation-delay: 1s; }
.cta-ring:nth-child(3){ width: 700px; height: 700px; animation-delay: 2s; }
@keyframes ripple{
0%{ opacity: 0.6; }
100%{ opacity: 0; }
}
.cta-inner{ position: relative; z-index: 2; }
.cta-title{
font-size: clamp(2.5rem, 10vw, 6rem);
color: var(--white);
margin-bottom: 1rem;
line-height: 0.9;
}
.cta-sub{
font-size: clamp(0.875rem, 2.5vw, 1.05rem);
color: var(--white-50);
max-width: 460px;
margin: 0 auto 2.5rem;
font-weight: 300;
line-height: 1.7;
}
.cta-note{
margin-top: 1.25rem;
font-size: 0.75rem;
color: var(--white-50);
letter-spacing: 0.08em;
}
.footer{
background: var(--dark);
border-top: 1px solid var(--white-08);
padding: 3.5rem 1.25rem 2rem;
}
@media (min-width: 900px){ .footer{ padding: 4rem 2rem 2rem; } }
.footer-inner{
max-width: 1280px;
margin: 0 auto;
}
.footer-grid{
display: grid;
gap: 2.5rem;
margin-bottom: 3rem;
}
@media (min-width: 640px){
.footer-grid{ grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand h3{
font-family: 'Bebas Neue', sans-serif;
font-size: 1.4rem;
letter-spacing: 0.08em;
margin-bottom: 0.4rem;
}
.footer-brand p{
font-size: 0.8rem;
color: var(--white-50);
margin-bottom: 1.5rem;
font-weight: 300;
}
.footer-socials{ display: flex; gap: 0.75rem; }
.social-link{
width: 2.2rem; height: 2.2rem;
border: 1px solid var(--white-15);
display: flex;
align-items: center;
justify-content: center;
color: var(--white-50);
text-decoration: none;
transition: all 0.2s;
}
.social-link svg{ width: 1rem; height: 1rem; }
.social-link:hover{ border-color: var(--gold); color: var(--gold); }
.footer-col h4{
font-size: 0.7rem;
font-weight: 600;
letter-spacing: 0.15em;
text-transform: uppercase;
margin-bottom: 1rem;
color: var(--white-50);
}
.footer-links{ list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a{
color: var(--white-50);
text-decoration: none;
font-size: 0.85rem;
font-weight: 300;
transition: color 0.2s;
}
.footer-links a:hover{ color: var(--white); }
.footer-bottom{
border-top: 1px solid var(--white-08);
padding-top: 1.5rem;
text-align: center;
}
.footer-bottom p{
font-size: 0.75rem;
color: var(--white-50);
font-weight: 300;
}
@keyframes debris-fall{
0%{ transform: translateY(0) rotate(0deg); opacity: 1; }
100%{ transform: translateY(120px) rotate(240deg); opacity: 0; }
}
@keyframes hover-wiggle{
0%, 100%{ transform: translate(var(--bx,0), var(--by,0)) rotate(-1deg); }
50%{ transform: translate(var(--bx,0), var(--by,0)) rotate(1deg); }
}
.bcard-wrap{
position: relative;
height: 220px;
}
.bcard-ghost{
position: absolute;
inset: 0;
border: 2px dashed rgba(255,215,0,0.18);
border-radius: 16px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.5rem;
z-index: 0;
}
.bcard-ghost-label{
font-family: 'Bebas Neue', sans-serif;
font-size: 1rem;
letter-spacing: 0.15em;
color: rgba(255,215,0,0.2);
}
.bcard-respawn-bar{
width: 64px; height: 2px;
background: rgba(255,255,255,0.06);
border-radius: 2px;
overflow: hidden;
}
.bcard-respawn-fill{
height: 100%;
background: var(--gold);
width: 0%;
}
.bcard{
position: absolute;
inset: 0;
border-radius: 16px;
border: 1px solid rgba(255,255,255,0.1);
background: rgba(255,255,255,0.04);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
padding: 1.25rem 1.25rem 1rem;
display: flex;
flex-direction: column;
justify-content: space-between;
cursor: grab;
user-select: none;
z-index: 1;
overflow: hidden;
transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1), opacity 0.8s ease;
}
.bcard:active{ cursor: grabbing; }
.bcard-header{ display: flex; align-items: flex-start; gap: 0.75rem; }
.bcard-avatar{
width: 40px; height: 40px;
border-radius: 50%;
border: 1.5px solid rgba(255,215,0,0.35);
object-fit: cover;
flex-shrink: 0;
pointer-events: none;
}
.bcard-author{ font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 0.08em; color: var(--gold); line-height: 1.1; }
.bcard-role{ font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-50); margin-top: 2px; }
.bcard-quote{
font-size: 0.78rem;
color: var(--white-80);
font-style: italic;
line-height: 1.6;
font-weight: 300;
margin-top: 0.6rem;
flex: 1;
}
.bcard-footer{
display: flex;
justify-content: space-between;
margin-top: 0.6rem;
padding-top: 0.5rem;
border-top: 1px solid rgba(255,255,255,0.06);
font-size: 0.58rem;
font-family: monospace;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--white-50);
}
.bcard-dmg{ transition: color 0.2s; }
.bcard-dmg.warn{ color: var(--gold); }
.bcard-dmg.critical{ color: #ff5555; font-weight: bold; }
.bcard-cracks{
position: absolute;
inset: 0;
pointer-events: none;
overflow: visible;
z-index: 2;
width: 100%; height: 100%;
}
.bcard-tint{
position: absolute;
inset: 0;
pointer-events: none;
z-index: 3;
border-radius: 16px;
background: rgba(255,80,80,0.0);
transition: background 0.1s;
}
.bcard-debris{
position: absolute;
pointer-events: none;
z-index: 20;
animation: debris-fall 0.9s cubic-bezier(0.55,0,1,0.45) forwards;
}
.fade{
opacity: 0;
transform: translateY(24px);
transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade.visible{ opacity: 1; transform: translateY(0); }
.fade-l{
opacity: 0;
transform: translateX(-30px);
transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-l.visible{ opacity: 1; transform: translateX(0); }
@keyframes shimmer-slide{
from{ transform: translate(-100%, 0); }
to{ transform: translate(calc(100cqw - 0%), 0); }
}
@keyframes spin-around{
0%{ transform: translateZ(0) rotate(0deg); }
15%, 35%{ transform: translateZ(0) rotate(90deg); }
65%, 85%{ transform: translateZ(0) rotate(270deg); }
100%{ transform: translateZ(0) rotate(360deg); }
}
.btn-shimmer{
--shimmer-color: rgba(255, 215, 0, 0.9);
--shimmer-bg: rgba(0, 0, 0, 0.92);
--shimmer-border: rgba(255, 215, 0, 0.35);
--shimmer-speed: 3s;
--shimmer-spread: 90deg;
--shimmer-cut: 2px;
position: relative;
z-index: 0;
display: inline-flex;
align-items: center;
justify-content: center;
overflow: hidden;
cursor: pointer;
border: 1px solid var(--shimmer-border);
background: var(--shimmer-bg);
border-radius: 100px;
color: var(--white);
font-family: 'DM Sans', sans-serif;
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
white-space: nowrap;
padding: 0.875rem 1.75rem;
transition: transform 0.25s ease, border-color 0.25s ease;
}
.btn-shimmer:hover{
border-color: rgba(255, 215, 0, 0.7);
transform: translateY(-1px);
}
.btn-shimmer:active{ transform: translateY(0px); }
.btn-shimmer .shimmer-spark{
position: absolute;
inset: 0;
overflow: visible;
z-index: -1;
filter: blur(3px);
pointer-events: none;
container-type: size;
}
.btn-shimmer .shimmer-spark::before{
content: '';
position: absolute;
inset: -50%;
width: 200%;
height: 100cqh;
aspect-ratio: 1;
animation:
shimmer-slide var(--shimmer-speed) ease-in-out infinite alternate,
spin-around calc(var(--shimmer-speed) * 2) linear infinite;
background: conic-gradient(
from calc(270deg - var(--shimmer-spread) * 0.5),
transparent 0deg,
var(--shimmer-color) var(--shimmer-spread),
transparent var(--shimmer-spread)
);
}
.btn-shimmer .shimmer-highlight{
position: absolute;
inset: 0;
border-radius: inherit;
box-shadow: inset 0 -8px 12px rgba(255,215,0,0.12);
transition: box-shadow 0.3s ease;
pointer-events: none;
}
.btn-shimmer:hover .shimmer-highlight{
box-shadow: inset 0 -6px 12px rgba(255,215,0,0.25);
}
.btn-shimmer .shimmer-backdrop{
position: absolute;
inset: var(--shimmer-cut);
border-radius: inherit;
background: var(--shimmer-bg);
z-index: -1;
pointer-events: none;
}
.btn-shimmer-gold{
--shimmer-color: rgba(0, 0, 0, 0.7);
--shimmer-bg: var(--gold);
--shimmer-border: var(--gold);
color: var(--black);
}
.btn-shimmer-gold:hover{
--shimmer-bg: var(--gold-light);
border-color: var(--gold-light);
}
.btn-shimmer-gold .shimmer-highlight{
box-shadow: inset 0 -8px 12px rgba(255,255,255,0.18);
}
.btn-shimmer-gold:hover .shimmer-highlight{
box-shadow: inset 0 -6px 12px rgba(255,255,255,0.32);
}
.btn-shimmer-gold .shimmer-backdrop{
background: var(--shimmer-bg);
}
.flip-stack-wrapper{
margin-top: 4.5rem;
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
}
.flip-stack-container{
position: relative;
width: 300px;
height: 200px;
perspective: 1000px;
cursor: pointer;
}
.flip-card{
position: absolute;
width: 300px;
height: 200px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0,0,0,0.4);
transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
box-shadow 0.5s ease,
filter 0.4s ease,
z-index 0s;
transform-style: preserve-3d;
transform-origin: left center;
background: var(--dark);
background-size: cover;
background-position: center;
}
.flip-card[data-index="0"]{ background-image: url('img/img2.jpg'); }
.flip-card[data-index="1"]{ background-image: url('img/img1.jpg'); }
.flip-card[data-index="2"]{ background-image: url('img/img3.jpg'); }
.flip-card[data-index="3"]{ background-image: url('img/img4.jpg'); }
.flip-card::after{
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, transparent 60%);
border-radius: 12px;
border: 1px solid rgba(255,215,0,0.15);
}
.flip-stack-container.hovered .flip-card[data-index="0"]{
transform: rotateY(-45deg) translateX(0px) translateY(-5px);
box-shadow: 10px 20px 40px rgba(0,0,0,0.5);
transition-delay: 0s;
}
.flip-stack-container.hovered .flip-card[data-index="1"]{
transform: rotateY(-45deg) translateX(55px) translateY(-10px);
box-shadow: 12px 22px 44px rgba(0,0,0,0.45);
transition-delay: 0.05s;
}
.flip-stack-container.hovered .flip-card[data-index="2"]{
transform: rotateY(-45deg) translateX(110px) translateY(-15px);
box-shadow: 14px 24px 48px rgba(0,0,0,0.4);
transition-delay: 0.1s;
}
.flip-stack-container.hovered .flip-card[data-index="3"]{
transform: rotateY(-45deg) translateX(165px) translateY(-20px);
box-shadow: 16px 26px 52px rgba(0,0,0,0.35);
transition-delay: 0.15s;
}
.flip-card.focused{
transform: scale(1.15) translateY(-20px) rotateY(0deg) !important;
box-shadow: 0 30px 60px rgba(0,0,0,0.6) !important;
z-index: 20 !important;
transition-delay: 0s !important;
}
.flip-stack-container.has-focus .flip-card:not(.focused){
filter: blur(3px);
opacity: 0.5;
}
.flip-stack-hint{
font-size: 0.65rem;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--white-50);
font-weight: 500;
}
@media (max-width: 480px){
.flip-stack-container{
width: 260px;
height: 174px;
}
.flip-card{ width: 260px; height: 174px; }
.flip-stack-container.hovered .flip-card[data-index="1"]{ transform: rotateY(-45deg) translateX(45px) translateY(-10px); }
.flip-stack-container.hovered .flip-card[data-index="2"]{ transform: rotateY(-45deg) translateX(90px) translateY(-15px); }
.flip-stack-container.hovered .flip-card[data-index="3"]{ transform: rotateY(-45deg) translateX(135px) translateY(-20px); }
}