:root {
    --primary-color: #B23AE8;
    --secondary-color: #791EC4;
    --accent-color: #FFA5D8;
    --bg-light: #FFF5FB;
    --text-dark: #2F1E40;
    --text-light: #6C5A7D;
    --white: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.7);
    --dark-bg: #141117;
    --dark-surface: #1E1A24;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ======== FOCUS & ACCESSIBILITY ======== */
:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-weight: 700;
    text-decoration: none;
    z-index: 999;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ======== NAVBAR ======== */
.navbar {
    display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 5%;
    position: fixed; width: 100%; top: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.logo-container { display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0; }
.logo { width: 36px; height: auto; flex-shrink: 0; aspect-ratio: 1; }
.brand-name {
    font-size: 1.6rem; font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.header-tagline {
    font-size: 0.9rem; font-weight: 600; font-style: italic;
    color: var(--primary-color); opacity: 0.85;
    flex: 1; text-align: center;
}

.lang-select {
    background: rgba(255, 255, 255, 0.5); border: 1px solid rgba(178, 58, 232, 0.3);
    color: var(--text-dark); padding: 0.4rem 0.6rem; border-radius: 8px;
    font-family: inherit; font-weight: 600; cursor: pointer; outline: none; transition: all 0.2s;
    appearance: none; -webkit-appearance: none;
}
.lang-select:hover { border-color: var(--primary-color); }

.nav-actions { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; justify-content: flex-end; }
.compact-header-form { display: flex; gap: 0.4rem; max-width: 250px; }
.compact-header-form .email-input { padding: 0.4rem 0.8rem; font-size: 0.85rem; border-radius: 20px; border-width: 1px; }
.compact-header-form .email-submit-btn { padding: 0.4rem 0.8rem; font-size: 0.85rem; border-radius: 20px; }

.nav-cta {
    text-decoration: none; color: var(--primary-color); font-weight: 700;
    padding: 0.5rem 1rem; border: 2px solid var(--primary-color); border-radius: 30px;
    font-size: 0.9rem; transition: all 0.3s ease; white-space: nowrap;
}
.nav-cta:hover { background: var(--primary-color); color: white; transform: translateY(-2px); }
.nav-cta-submit { background: none; cursor: pointer; font-family: inherit; }

/* ======== HERO ======== */
.hero {
    min-height: 100vh; display: flex; justify-content: center; align-items: center; text-align: center;
    padding: 8rem 5% 4rem; position: relative;
    background-image:
        radial-gradient(at 0% 0%, hsla(286, 76%, 93%, 1) 0, transparent 40%),
        radial-gradient(at 100% 0%, hsla(333, 100%, 93%, 1) 0, transparent 40%),
        radial-gradient(at 100% 100%, hsla(286, 85%, 85%, 0.4) 0, transparent 40%),
        radial-gradient(at 0% 100%, hsla(333, 85%, 90%, 0.5) 0, transparent 40%);
}

.hero-content { max-width: 800px; z-index: 10; }
.hero-logo { width: 140px; margin-bottom: 2rem; filter: drop-shadow(0px 15px 25px rgba(178, 58, 232, 0.3)); }
.pulsating { animation: pulse 3s infinite ease-in-out; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }

.headline { font-size: 4.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }
.highlight {
    background: linear-gradient(45deg, var(--primary-color), #FF6B9E);
    background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block;
}

.tagline { font-size: 1.3rem; color: var(--text-light); margin-bottom: 3rem; max-width: 600px; margin-inline: auto; }

.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.8rem;
    background: linear-gradient(45deg, #0088cc, #00aaff); color: white;
    padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none;
    font-size: 1.2rem; font-weight: 600; box-shadow: 0 10px 25px rgba(0, 136, 204, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); position: relative; overflow: hidden;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0, 136, 204, 0.5); }
.telegram-icon { width: 24px; height: 24px; }
.glow-effect::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); animation: glow-sweep 3s infinite;
}
@keyframes glow-sweep { 0% { left: -100%; } 50% { left: 200%; } 100% { left: 200%; } }

.hero-form-container { margin-top: 2.5rem; width: 100%; display: flex; justify-content: center; }
.hero-waitlist-form { max-width: 500px; box-shadow: 0 15px 35px rgba(178, 58, 232, 0.15); border-radius: 40px; background: white; padding: 4px; }
.hero-waitlist-form .email-input { border: none; background: transparent; padding-left: 1.5rem; }
.hero-waitlist-form .email-submit-btn { padding: 1rem 2rem; border-radius: 35px; }

/* ======== FLOATING ITEMS ======== */
.floating-items { position: absolute; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; z-index: 1; }
.float-item {
    position: absolute; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
    animation: float 6s infinite ease-in-out;
    user-select: none;
}
.fi-1  { top: 8%;  left: 3%;   font-size: 3.2rem; animation-duration: 6.0s; animation-delay: 0.0s; }
.fi-2  { top: 15%; right: 5%;  font-size: 4.0rem; animation-duration: 7.2s; animation-delay: 0.8s; }
.fi-3  { top: 45%; left: 2%;   font-size: 2.8rem; animation-duration: 5.5s; animation-delay: 1.5s; }
.fi-4  { top: 40%; right: 3%;  font-size: 2.5rem; animation-duration: 8.0s; animation-delay: 0.3s; }
.fi-5  { top: 72%; left: 8%;   font-size: 3.5rem; animation-duration: 6.8s; animation-delay: 2.2s; }
.fi-6  { top: 70%; right: 7%;  font-size: 4.5rem; animation-duration: 7.5s; animation-delay: 1.0s; }
.fi-7  { top: 28%; left: 12%;  font-size: 2.2rem; animation-duration: 5.8s; animation-delay: 3.0s; }
.fi-8  { top: 55%; right: 12%; font-size: 3.0rem; animation-duration: 9.0s; animation-delay: 0.5s; }
.fi-9  { top: 85%; left: 40%;  font-size: 2.6rem; animation-duration: 6.3s; animation-delay: 1.8s; }
@keyframes float {
    0%   { transform: translateY(0px)   rotate(0deg); }
    33%  { transform: translateY(-18px) rotate(10deg); }
    66%  { transform: translateY(-8px)  rotate(-8deg); }
    100% { transform: translateY(0px)   rotate(0deg); }
}

/* ======== WAITLIST FORM ======== */
.waitlist-container { margin-top: 3.5rem; display: flex; flex-direction: column; align-items: center; z-index: 10; position: relative; }
.waitlist-form { display: flex; gap: 0.8rem; width: 100%; max-width: 450px; }
.email-input {
    flex: 1; padding: 1.1rem 1.5rem; border-radius: 30px; border: 2px solid rgba(178, 58, 232, 0.2);
    outline: none; font-size: 1.1rem; font-family: inherit; transition: all 0.3s;
    background: rgba(255,255,255,0.7); backdrop-filter: blur(5px); color: var(--text-dark);
}
.email-input:focus { border-color: var(--primary-color); box-shadow: 0 0 15px rgba(178, 58, 232, 0.2); background: white; }
.email-submit-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white; border: none; padding: 1.1rem 2.2rem; border-radius: 30px; font-weight: 700; font-size: 1.1rem;
    cursor: pointer; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.email-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(178, 58, 232, 0.3); }

/* ======== SECTION LABEL ======== */
.section-label {
    text-align: center;
    color: rgba(178, 58, 232, 0.7);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

/* ======== HOW IT WORKS ======== */
.how-it-works {
    padding: 6rem 5%;
    background: var(--dark-bg);
    text-align: center;
}

/* ======== SEQUENTIAL FLOW DEMO ======== */
.flow-demo-wrap {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Step progress bar */
.flow-steps-bar {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    justify-content: center;
}
.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    opacity: 0.35;
    transition: opacity 0.4s;
}
.flow-step.active-step { opacity: 1; }
.fstep-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.4s;
}
.flow-step.active-step .fstep-dot {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(178,58,232,0.6);
}
.flow-step span {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.4s;
}
.flow-step.active-step span { color: white; }
.fstep-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 0.5rem;
    margin-bottom: 1.1rem;
    min-width: 40px;
    position: relative;
    overflow: hidden;
}
.fstep-line::after {
    content: '';
    position: absolute; inset: 0;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.fstep-line.line-active::after { transform: scaleX(1); }

/* Phone container */
.flow-phone {
    width: 100%;
    background: #1a1620;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.5);
    position: relative;
    min-height: 420px;
}

/* Individual screens */
.flow-screen {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
.flow-screen.active-screen {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    position: relative;
}

/* Phone topbar */
.phone-topbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.6rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.phone-brand {
    font-weight: 800; font-size: 0.9rem;
    background: linear-gradient(45deg, #B23AE8, #FF6B9E);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.phone-status { font-size: 0.75rem; color: #6a6280; font-weight: 600; }

/* ======== CAROUSEL ======== */
.profile-carousel { position: relative; height: 220px; overflow: hidden; }
.flow-phone .profile-carousel { height: 240px; }
.profile-slide {
    position: absolute; inset: 0; opacity: 0; transform: translateX(60px);
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); pointer-events: none;
}
.profile-slide.active-slide { opacity: 1; transform: translateX(0); pointer-events: auto; }
.profile-slide img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.profile-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.profile-overlay h3 { color: white; font-size: 1rem; font-weight: 700; margin: 0; }
.profile-overlay p { color: rgba(255,255,255,0.7); font-size: 0.75rem; margin: 0.2rem 0 0.5rem; }
.bid-chip {
    display: inline-block; background: rgba(178,58,232,0.25);
    border: 1px solid rgba(178,58,232,0.4); color: #e0aaff;
    font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 20px;
}
.carousel-btns { display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1rem; }
.car-btn {
    background: rgba(255,255,255,0.08); border: none; color: white; font-size: 1.4rem;
    width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
    transition: background 0.2s; display: flex; align-items: center; justify-content: center;
}
.car-btn:hover { background: rgba(178,58,232,0.3); }
.carousel-dots { display: flex; gap: 5px; }
.dot {
    width: 6px; height: 6px; background: rgba(255,255,255,0.2); border-radius: 50%;
    transition: background 0.3s; border: none; padding: 0; cursor: pointer;
}
.active-dot { background: var(--primary-color); }

/* Screen 0 CTA button */
.screen0-cta { padding: 0.8rem 1rem 1rem; }
.flow-cta-btn {
    width: 100%; padding: 0.85rem;
    background: linear-gradient(45deg, var(--primary-color), #791EC4);
    border: none; border-radius: 14px; color: white;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    font-family: inherit; transition: all 0.25s;
    box-shadow: 0 6px 20px rgba(178,58,232,0.4);
}
.flow-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(178,58,232,0.55); }
.flow-cta-btn:active { transform: scale(0.97); }

/* Back button */
.back-btn {
    background: transparent; border: none;
    color: rgba(255,255,255,0.6); font-size: 1.3rem;
    cursor: pointer; padding: 0 0.3rem; line-height: 1;
    transition: color 0.2s;
}
.back-btn:hover { color: white; }

/* ======== BID UI ======== */
.bid-profile-mini {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.8rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bid-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; object-position: top; border: 2px solid rgba(178,58,232,0.5); }
.bid-profile-mini strong { color: white; font-size: 0.9rem; display: block; }
.bid-profile-mini small { color: #6a6280; font-size: 0.75rem; }
.gift-row { display: flex; gap: 0.5rem; padding: 0.8rem 0.8rem 0; }
.gift-pill {
    flex: 1; padding: 0.5rem 0; border-radius: 30px; border: 1px solid rgba(255,255,255,0.1);
    background: transparent; color: #8A8199; font-size: 0.75rem; font-weight: 600;
    cursor: pointer; transition: all 0.25s; font-family: inherit;
}
.gift-pill.active-gift, .gift-pill:hover { background: rgba(178,58,232,0.2); border-color: var(--primary-color); color: white; }
.amount-row { display: flex; justify-content: space-between; padding: 0.8rem 1rem 0.2rem; }
.amount-label { color: #6a6280; font-size: 0.8rem; }
.amount-val { color: white; font-weight: 800; font-size: 1rem; transition: transform 0.15s; }
.amount-val.pop { transform: scale(1.4); }
.demo-slider { width: calc(100% - 2rem); margin: 0 1rem; accent-color: var(--primary-color); cursor: pointer; }
.demo-bid-btn {
    margin: 0.8rem 1rem; width: calc(100% - 2rem); padding: 0.8rem;
    background: linear-gradient(45deg, var(--primary-color), #791EC4); border: none;
    border-radius: 12px; color: white; font-size: 0.95rem; font-weight: 700;
    cursor: pointer; font-family: inherit; transition: all 0.25s;
    box-shadow: 0 6px 20px rgba(178,58,232,0.35);
}
.demo-bid-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(178,58,232,0.5); }
.demo-bid-btn:active { transform: scale(0.97); }
.bid-toast {
    margin: 0 1rem 0.8rem; background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3); color: #4ade80;
    font-size: 0.8rem; font-weight: 600; text-align: center;
    padding: 0.5rem; border-radius: 8px; display: none;
}
.bid-toast.show { display: block; animation: fadeInUp 0.3s ease; }
@keyframes fadeInUp { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }

/* ======== WIN SCREEN ======== */
.flow-phone .flow-screen:last-child {
    background: radial-gradient(ellipse at center, #1a0a2e 0%, #0d0d1a 100%);
}
#confettiCanvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.win-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; padding: 1.8rem 1rem; }
.trophy-anim { font-size: 3rem; animation: trophyBounce 1s cubic-bezier(0.34, 1.56, 0.64, 1) both; display: block; }
@keyframes trophyBounce { from { opacity:0; transform: scale(0) rotate(-20deg); } to { opacity:1; transform: scale(1) rotate(0); } }
.win-title { color: #ffd700; font-size: 1.6rem; font-weight: 800; margin: 0; animation: glowPulse 2s infinite; text-shadow: 0 0 20px rgba(255,215,0,0.5); }
@keyframes glowPulse { 0%,100% { text-shadow: 0 0 15px rgba(255,215,0,0.4); } 50% { text-shadow: 0 0 30px rgba(255,215,0,0.8); } }
.win-title-sub {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    margin: -0.3rem 0 0.2rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.win-sub { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }
.win-sub strong { color: white; }
.win-avatar-wrap { position: relative; margin: 0.4rem 0; }
.win-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: top; border: 3px solid #ffd700; box-shadow: 0 0 20px rgba(255,215,0,0.4); }
.win-badge { position: absolute; bottom: -4px; right: -4px; background: #ffd700; color: #1a0a2e; font-size: 0.6rem; font-weight: 900; padding: 0.15rem 0.35rem; border-radius: 10px; }
.win-chat-btn {
    background: linear-gradient(45deg, #22c55e, #16a34a); border: none; color: white;
    font-size: 0.9rem; font-weight: 700; padding: 0.7rem 1.5rem; border-radius: 30px;
    cursor: pointer; font-family: inherit; box-shadow: 0 8px 20px rgba(34,197,94,0.4); transition: all 0.25s;
}
.win-chat-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(34,197,94,0.5); }
.win-timer { color: rgba(255,255,255,0.35); font-size: 0.7rem; margin: 0; }
.try-again-btn {
    background: transparent; border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5); font-size: 0.8rem; font-weight: 600;
    padding: 0.4rem 1rem; border-radius: 20px; cursor: pointer;
    font-family: inherit; transition: all 0.2s; margin-top: 0.3rem;
}
.try-again-btn:hover { color: white; border-color: rgba(255,255,255,0.4); }

/* ======== SCREEN HINTS ======== */
.screen-hint {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.6rem 0.9rem;
    background: rgba(255, 214, 0, 0.08);
    border-bottom: 1px solid rgba(255, 214, 0, 0.15);
    animation: hintFadeIn 0.45s ease 0.2s both, hintPulse 0.6s ease 0.8s both;
}
@keyframes hintFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hintPulse {
    0%   { transform: scaleY(1)    scaleX(1);    box-shadow: none; }
    35%  { transform: scaleY(1.14) scaleX(1.02); box-shadow: 0 4px 18px rgba(255,214,0,0.28); }
    100% { transform: scaleY(1)    scaleX(1);    box-shadow: none; }
}
.hint-icon { font-size: 0.85rem; flex-shrink: 0; margin-top: 1px; }
.hint-text { color: rgba(255, 220, 80, 0.75); font-size: 0.72rem; line-height: 1.5; }
.hint-text strong { color: rgba(255, 230, 100, 0.95); }
.screen-hint-win {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 3;
    background: rgba(0, 0, 0, 0.45);
    border-bottom: 1px solid rgba(255, 214, 0, 0.2);
    backdrop-filter: blur(4px);
}

/* ======== GIFT POWER SECTION ======== */
.gift-power-section {
    padding: 5rem 5% 4rem;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #100d1a 100%);
    text-align: center;
}
.gift-power-sub {
    color: #6a6280;
    font-size: 1rem;
    max-width: 480px;
    margin: -1.5rem auto 2.5rem;
    line-height: 1.6;
}
.gift-power-grid {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.gift-power-card {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 1.6rem 1.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}
.gift-power-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.gift-power-mid {
    border-color: rgba(178,58,232,0.2);
    background: rgba(178,58,232,0.04);
}
.gift-power-top {
    border-color: rgba(255,214,0,0.35);
    background: rgba(255,214,0,0.05);
    box-shadow: 0 0 30px rgba(255,214,0,0.08);
}
.gift-power-top:hover { box-shadow: 0 16px 40px rgba(255,214,0,0.15); }
.gift-power-icon { font-size: 2.6rem; line-height: 1; }
.gift-power-name { color: white; font-size: 1rem; font-weight: 700; margin-top: 0.1rem; }
.gift-power-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.1rem;
}
.gift-power-mid .gift-power-label { color: rgba(178,58,232,0.7); }
.gift-power-top .gift-power-label { color: rgba(251,191,36,0.7); }
.gift-power-desc {
    color: #6a6280;
    font-size: 0.8rem;
    line-height: 1.6;
    text-align: center;
    margin-top: 0.2rem;
}
.gift-match-note {
    margin-top: 2.5rem;
    color: rgba(255,220,80,0.6);
    font-size: 0.85rem;
    font-style: italic;
}

/* ======== DUAL CTA SECTION ======== */
.cta-section {
    padding: 6rem 5%;
    background: var(--bg-light);
    background-image:
        radial-gradient(at 0% 100%, hsla(286, 76%, 93%, 0.6) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(333, 100%, 93%, 0.4) 0, transparent 50%);
}
.cta-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-block {
    flex: 1;
    min-width: 280px;
    border-radius: 28px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cta-block:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(178, 58, 232, 0.1); }

.cta-left {
    background: linear-gradient(135deg, #ffffff 0%, #fff0fa 100%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(178, 58, 232, 0.1);
}
.cta-right {
    background: linear-gradient(135deg, #ffffff 0%, #f5f0ff 100%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(178, 58, 232, 0.1);
}
.cta-block h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 0.2rem; color: var(--text-dark); }
.cta-block p { color: var(--text-light); font-size: 1.1rem; margin-bottom: 1.5rem; max-width: 320px; }

.cta-icon-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}
.telegram-icon-cta { width: 32px; height: 32px; color: #29b6f6; }
.cta-badge {
    background: rgba(41, 182, 246, 0.15);
    color: #29b6f6;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.cta-main-btn { margin-top: 0.5rem; width: 100%; justify-content: center; }

.cta-right .waitlist-container { margin-top: 0.5rem; width: 100%; }
.cta-right .waitlist-form { flex-direction: column; max-width: 100%; }
.cta-right .email-submit-btn { width: 100%; }

/* ======== FOOTER ======== */
footer {
    color: var(--text-light);
    border-top: 1px solid rgba(0,0,0,0.05);
    background: var(--bg-light);
}

/* FAQ */
.faq-section {
    max-width: 720px;
    margin: 0 auto;
    padding: 3.5rem 2rem 2rem;
}

.faq-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(178, 58, 232, 0.12);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item[open] {
    border-color: rgba(178, 58, 232, 0.35);
}

.faq-question {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.3rem;
    font-weight: 600;
    font-size: 0.97rem;
    color: var(--text-dark);
    cursor: pointer;
    user-select: none;
    gap: 1rem;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.3rem 1.2rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* Footer bottom row */
.footer-bottom {
    text-align: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--primary-color); }

/* ======== RESPONSIVE ======== */
@media (max-width: 850px) {
    .cta-inner { flex-direction: column; }
    .nav-actions { gap: 0.5rem; }
    .compact-header-form { display: none; }
    .header-tagline { display: none; }
}

@media (max-width: 768px) {
    .headline { font-size: 2.4rem; }
    .tagline { font-size: 1.1rem; margin-bottom: 2rem; }
    .hero { padding-top: 7rem; padding-bottom: 3rem; min-height: auto; }
    .hero-logo { width: 100px; margin-bottom: 1.2rem; }
    .floating-items { opacity: 0.3; }
    .waitlist-form { flex-direction: column; }
    .email-submit-btn { width: 100%; padding: 0.9rem 1.5rem; font-size: 1rem; }
    .email-input { padding: 0.9rem 1.2rem; font-size: 1rem; }
    .hero-waitlist-form { padding: 3px; }
    .hero-waitlist-form .email-submit-btn { padding: 0.85rem 1.5rem; border-radius: 30px; }
    .hero-form-container { margin-top: 1.5rem; }

    /* How It Works */
    .how-it-works { padding: 3.5rem 5% 3rem; }
    .flow-demo-wrap { max-width: 100%; }

    /* Gift Power */
    .gift-power-section { padding: 3rem 5% 2.5rem; }
    .gift-power-sub { margin: -1rem auto 1.5rem; font-size: 0.9rem; }
    .gift-power-grid { flex-direction: column; align-items: center; gap: 1rem; }
    .gift-power-card { max-width: 100%; width: 100%; padding: 1.3rem 1rem 1.1rem; }
    .gift-power-icon { font-size: 2.2rem; }
    .gift-match-note { margin-top: 1.5rem; font-size: 0.8rem; }
    .section-label { margin-bottom: 1.5rem; font-size: 0.8rem; }

    /* CTA */
    .cta-section { padding: 3rem 5%; }
    .cta-inner { gap: 1.2rem; }
    .cta-block { padding: 2rem 1.5rem; border-radius: 22px; min-width: unset; }
    .cta-block h2 { font-size: 1.6rem; }
    .cta-block p { font-size: 0.95rem; margin-bottom: 1rem; }
    .cta-block:hover { transform: none; }
    .btn-primary { padding: 0.85rem 1.8rem; font-size: 1.05rem; }

    /* Footer */
    .faq-section { padding: 2.5rem 1.2rem 1.5rem; }
    .faq-title { font-size: 1.2rem; margin-bottom: 1.3rem; }
    .faq-question { font-size: 0.9rem; padding: 1rem 1.1rem; }
    .faq-answer { font-size: 0.85rem; padding: 0 1.1rem 1rem; }
    .footer-bottom { padding: 1.2rem 1rem; font-size: 0.82rem; }
    .footer-bottom a { display: block; margin: 0.5rem 0 0 0; }
}
