:root {
    --bg: #0b0b0f;
    --panel: #15151c;
    --line: #26262f;
    --text: #f4f4f6;
    --muted: #9a9aa6;
    --pink: #fe2c55;
    --cyan: #25f4ee;
    --radius: 18px;
    color-scheme: dark;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font: 16px/1.6 Inter, system-ui, sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
html[lang='ar'] body { font-family: Tajawal, Inter, system-ui, sans-serif; font-size: 17px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.glow { position: fixed; width: 520px; height: 520px; border-radius: 50%; filter: blur(120px); opacity: .22; z-index: -1; pointer-events: none; }
.g1 { background: var(--pink); top: -180px; inset-inline-start: -160px; }
.g2 { background: var(--cyan); bottom: -220px; inset-inline-end: -180px; opacity: .14; }

/* nav */
.nav {
    position: sticky; top: 0; z-index: 10;
    display: flex; align-items: center; gap: 24px;
    padding: 14px max(16px, calc((100% - 1160px) / 2));
    background: rgba(11, 11, 15, .72);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -.02em; }
.brand img { width: 44px; height: auto; }
.links { display: flex; gap: 22px; margin-inline-start: auto; color: var(--muted); font-size: 15px; }
.links a:hover { color: var(--text); }
.lang {
    font: inherit; font-size: 14px; color: var(--text); cursor: pointer;
    background: transparent; border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px;
}
.lang:hover { border-color: var(--pink); }

main, .foot { width: min(1160px, 100% - 32px); margin: 0 auto; }

/* hero */
.hero { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; padding: 64px 0 40px; }
.pill {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--text);
    background: rgba(254, 44, 85, .12); border: 1px solid rgba(254, 44, 85, .35);
    padding: 6px 14px; border-radius: 999px;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 0 rgba(254, 44, 85, .7); animation: pulse 1.6s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(254, 44, 85, 0); } 100% { box-shadow: 0 0 0 0 rgba(254, 44, 85, 0); } }
h1 { font-size: clamp(38px, 5.6vw, 64px); line-height: 1.05; letter-spacing: -.035em; margin: 20px 0 18px; font-weight: 800; }
html[lang='ar'] h1 { line-height: 1.25; letter-spacing: 0; }
.grad {
    background: linear-gradient(90deg, var(--pink), #ff6a88 40%, var(--cyan));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    text-shadow: none;
}
.lead { font-size: 18px; color: #c9c9d2; max-width: 520px; margin: 0 0 28px; }
.cta { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 26px; border-radius: 14px; font-weight: 700; font-size: 16px;
    transition: transform .15s, box-shadow .15s, border-color .15s;
}
.btn.primary { background: var(--pink); color: #fff; box-shadow: 0 10px 30px -8px rgba(254, 44, 85, .7), 4px 4px 0 -1px rgba(37, 244, 238, .55); }
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(254, 44, 85, .8), 5px 5px 0 -1px rgba(37, 244, 238, .7); }
.btn.ghost { border: 1px solid var(--line); background: rgba(255, 255, 255, .03); }
.btn.ghost:hover { border-color: var(--cyan); }
.note { color: var(--muted); font-size: 14px; margin-top: 14px; }

.hero-art { position: relative; }
.hero-art img {
    border-radius: 24px; width: 100%; height: auto;
    box-shadow: 0 40px 80px -30px rgba(254, 44, 85, .45), 0 0 0 1px rgba(255, 255, 255, .06);
    -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, #000 60%, transparent 100%);
    mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, #000 60%, transparent 100%);
}
.float {
    position: absolute; display: flex; align-items: center; gap: 8px;
    background: rgba(21, 21, 28, .85); border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 10px 14px; border-radius: 14px; font-size: 13px; color: var(--muted);
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .7);
    animation: bob 5s ease-in-out infinite;
}
.float b { color: var(--text); font-size: 15px; }
.f1 { top: 8%; inset-inline-start: -4%; }
.f2 { bottom: 14%; inset-inline-start: 2%; animation-delay: -1.7s; }
.f3 { top: 40%; inset-inline-end: -3%; flex-direction: column; align-items: flex-start; gap: 0; animation-delay: -3.2s; }
.f3 b { color: var(--pink); font-size: 20px; }
.lvl { font-size: 11px; font-weight: 800; color: #fff; background: linear-gradient(90deg, #ff8a00, #ff4d4d); padding: 2px 7px; border-radius: 6px; }
@keyframes bob { 50% { transform: translateY(-8px); } }

/* numbers strip */
.strip {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
    margin: 24px 0 20px;
}
.strip div { background: var(--panel); padding: 22px 18px; text-align: center; }
.strip b { display: block; font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.strip div:nth-child(odd) b { color: var(--pink); }
.strip div:nth-child(even) b { color: var(--cyan); }
.strip span { color: var(--muted); font-size: 14px; }

/* sections */
.section { padding: 72px 0 24px; }
.section, .strip { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
.section.in, .strip.in { opacity: 1; transform: none; }
h2 { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.15; letter-spacing: -.025em; margin: 0 0 12px; font-weight: 800; }
html[lang='ar'] h2 { letter-spacing: 0; line-height: 1.35; }
.sub { color: var(--muted); font-size: 18px; margin: 0 0 36px; max-width: 640px; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01));
    border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
    transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(254, 44, 85, .5); transform: translateY(-3px); }
.ic {
    width: 48px; height: 48px; display: grid; place-items: center; font-size: 24px;
    border-radius: 14px; background: rgba(254, 44, 85, .12); margin-bottom: 14px;
}
.card:nth-child(even) .ic { background: rgba(37, 244, 238, .1); }
.card h3 { margin: 0 0 6px; font-size: 19px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.gifts-art { border-radius: 28px; box-shadow: 0 30px 70px -30px rgba(37, 244, 238, .35); }
.ticks { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 14px; }
.ticks li { position: relative; padding-inline-start: 36px; font-size: 18px; color: #d6d6de; }
.ticks li::before {
    content: '✓'; position: absolute; inset-inline-start: 0; top: 1px;
    width: 24px; height: 24px; display: grid; place-items: center; font-size: 13px; font-weight: 800;
    border-radius: 8px; background: var(--pink); color: #fff;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.step { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: relative; overflow: hidden; }
.step span {
    font-size: 64px; font-weight: 800; line-height: 1; position: absolute; top: 10px; inset-inline-end: 18px;
    color: transparent; -webkit-text-stroke: 1.5px rgba(254, 44, 85, .45);
}
.step h3 { margin: 0 0 6px; font-size: 19px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; max-width: 85%; }

.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { cursor: pointer; font-weight: 600; font-size: 18px; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--pink); font-size: 24px; line-height: 1; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); margin: 10px 0 0; }

.final { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; padding-bottom: 80px; }
.final img { border-radius: 32px; box-shadow: 0 20px 60px -20px rgba(254, 44, 85, .6); }

.foot { border-top: 1px solid var(--line); padding: 28px 0 40px; color: var(--muted); font-size: 13px; text-align: center; }
.foot p { margin: 4px 0; }

@media (max-width: 900px) {
    .hero, .split { grid-template-columns: 1fr; }
    .hero { padding-top: 36px; }
    .grid, .steps { grid-template-columns: 1fr 1fr; }
    .strip { grid-template-columns: 1fr 1fr; }
    .links { display: none; }
    .lang { margin-inline-start: auto; }
    .gifts-art { max-width: 420px; margin: 0 auto; }
    .f1 { inset-inline-start: 8px; }
    .f3 { inset-inline-end: 8px; }
}
@media (max-width: 560px) {
    .grid, .steps { grid-template-columns: 1fr; }
    .f1 { inset-inline-start: 0; }
    .f3 { inset-inline-end: 0; }
    .float { font-size: 12px; padding: 8px 10px; }
    .cta .btn { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .section, .strip { opacity: 1; transform: none; }
}
