/* ============================
   OBSIDIAN FORGE — SyNx Tweaks
   A premium, one-of-a-kind design
   ============================ */

/* ---------- VARIABLES ---------- */
:root {
    --bg: #07070A;
    --bg-2: #0D0D12;
    --bg-card: #111116;
    --bg-card-2: #16161D;
    --border: rgba(255, 255, 255, .05);
    --border-hover: rgba(255, 255, 255, .1);
    --text: #F5F5F7;
    --text-2: rgba(245, 245, 247, .55);
    --text-3: rgba(245, 245, 247, .3);

    --amber: #F59E0B;
    --gold: #FBBF24;
    --orange: #F97316;
    --blue: #3B82F6;
    --cyan: #22D3EE;
    --green: #34D399;
    --red: #EF4444;
    --purple: #A78BFA;

    --gradient-warm: linear-gradient(135deg, #F97316, #FBBF24, #F59E0B);
    --gradient-cool: linear-gradient(135deg, #3B82F6, #22D3EE);
    --gradient-mix: linear-gradient(135deg, #F97316 0%, #FBBF24 30%, #22D3EE 70%, #3B82F6 100%);

    --font: 'Space Grotesk', 'Tajawal', sans-serif;
    --font-ar: 'Tajawal', 'Space Grotesk', sans-serif;
    --mono: 'IBM Plex Mono', monospace;

    --r-xs: 6px;
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 18px;
    --r-xl: 24px;
    --r-full: 9999px;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px
}

body {
    font-family: var(--font-ar);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

html[lang="en"] body {
    font-family: var(--font)
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

::selection {
    background: var(--amber);
    color: var(--bg)
}

::-webkit-scrollbar {
    width: 4px
}

::-webkit-scrollbar-track {
    background: var(--bg)
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .08);
    border-radius: 2px
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, .15)
}

/* ---------- ANIMATED MESH BACKGROUND ---------- */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .12;
    animation: orbFloat 18s ease-in-out infinite alternate;
}

.mesh-orb:nth-child(1) {
    width: 600px;
    height: 600px;
    background: var(--orange);
    top: -10%;
    right: -5%;
    animation-duration: 22s;
}

.mesh-orb:nth-child(2) {
    width: 500px;
    height: 500px;
    background: var(--blue);
    bottom: -10%;
    left: -5%;
    animation-duration: 18s;
    animation-delay: -5s;
}

.mesh-orb:nth-child(3) {
    width: 400px;
    height: 400px;
    background: var(--amber);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation-duration: 25s;
    animation-delay: -10s;
    opacity: .06;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1)
    }

    33% {
        transform: translate(40px, -30px) scale(1.08)
    }

    66% {
        transform: translate(-20px, 40px) scale(.95)
    }

    100% {
        transform: translate(30px, 20px) scale(1.03)
    }
}

/* ---------- NOISE OVERLAY ---------- */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* ---------- PARTICLE CANVAS ---------- */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ---------- SNOW CONTAINER ---------- */
#snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none !important;
    z-index: 1;
    overflow: hidden;
}

#snow-container * {
    pointer-events: none !important
}

/* ---------- DISCORD FAB ---------- */
.discord-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    background: rgba(88, 101, 242, .12);
    border: 1px solid rgba(88, 101, 242, .25);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all .35s var(--ease);
    backdrop-filter: blur(12px);
}

.discord-fab:hover {
    background: #5865F2;
    border-color: #5865F2;
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 8px 30px rgba(88, 101, 242, .45);
}

/* ============================
   NAVBAR — Floating Pill
   ============================ */
.header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    transition: all .5s var(--ease);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: rgba(17, 17, 22, .7);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--r-full);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}

.header.scrolled .header-inner {
    background: rgba(11, 11, 14, .88);
    border-color: rgba(255, 255, 255, .08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    font-weight: 700;
    font-size: .95rem;
}

.logo-icon {
    font-size: 1.1rem
}

.logo-text {
    font-family: var(--mono);
    font-weight: 700;
    letter-spacing: -.02em
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1px
}

.nav-item {
    padding: 6px 10px;
    font-size: .76rem;
    font-weight: 500;
    color: var(--text-2);
    border-radius: var(--r-full);
    transition: all .25s var(--ease);
    white-space: nowrap;
}

.nav-item:hover {
    color: var(--text);
    background: rgba(255, 255, 255, .06)
}

.nav-item.active {
    color: var(--bg);
    background: var(--text);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 6px
}

.lang-switch {
    display: flex;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    overflow: hidden;
}

.lang-opt {
    border: none;
    background: none;
    color: var(--text-3);
    font-size: .75rem;
    padding: 6px 10px;
    cursor: pointer;
    font-family: var(--font-ar);
    transition: all .2s var(--ease);
}

.lang-opt.active {
    background: rgba(255, 255, 255, .1);
    color: var(--text)
}

.header-cta {
    padding: 7px 14px;
    background: var(--gradient-warm);
    background-size: 200% 200%;
    color: var(--bg);
    font-size: .76rem;
    font-weight: 700;
    white-space: nowrap;
    border-radius: var(--r-full);
    transition: all .35s var(--ease);
    font-family: var(--font-ar);
    border: none;
    cursor: pointer;
}

html[lang="en"] .header-cta {
    font-family: var(--font)
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(249, 115, 22, .35);
}

/* ============================
   HERO — Dramatic Full-Screen
   ============================ */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(249, 115, 22, .06);
    border: 1px solid rgba(249, 115, 22, .15);
    border-radius: var(--r-full);
    font-size: .8rem;
    color: var(--amber);
    margin-bottom: 28px;
    font-family: var(--mono);
    letter-spacing: .03em;
}

.hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--amber);
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(.8)
    }
}

.hero-heading {
    font-size: clamp(2.4rem, 4.8vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -.03em;
}

.hero-gradient {
    background: var(--gradient-mix);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroGradient 6s ease infinite;
}

@keyframes heroGradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.hero-sub {
    color: var(--text-2);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 34px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 52px;
    flex-wrap: wrap
}

.btn-main {
    padding: 15px 34px;
    background: var(--gradient-warm);
    background-size: 200% 200%;
    color: var(--bg);
    font-weight: 700;
    border-radius: var(--r-sm);
    font-size: .95rem;
    transition: all .35s var(--ease);
    font-family: var(--font-ar);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(249, 115, 22, .2);
}

html[lang="en"] .btn-main {
    font-family: var(--font)
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(249, 115, 22, .35);
}

.btn-secondary {
    padding: 15px 34px;
    border: 1px solid var(--border-hover);
    color: var(--text-2);
    border-radius: var(--r-sm);
    font-size: .95rem;
    transition: all .3s var(--ease);
    font-family: var(--font-ar);
    background: transparent;
    cursor: pointer;
}

html[lang="en"] .btn-secondary {
    font-family: var(--font)
}

.btn-secondary:hover {
    border-color: rgba(249, 115, 22, .3);
    color: var(--amber);
    background: rgba(249, 115, 22, .04);
}

/* Metrics */
.hero-metrics {
    display: flex;
    gap: 40px
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.metric-num {
    font-family: var(--mono);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-sym {
    font-family: var(--mono);
    font-size: 1rem;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-text {
    font-size: .8rem;
    color: var(--text-3);
    margin-top: 2px
}

/* Terminal */
.terminal-window {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .03);
    position: relative;
}

.terminal-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-warm);
    opacity: .6;
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .02);
    border-bottom: 1px solid var(--border);
}

.term-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.term-dot.red {
    background: #ff5f57
}

.term-dot.yellow {
    background: #febc2e
}

.term-dot.green {
    background: #28c840
}

.term-title {
    margin-right: auto;
    margin-left: 12px;
    font-family: var(--mono);
    font-size: .72rem;
    color: var(--text-3);
}

html[dir="ltr"] .term-title {
    margin-left: auto;
    margin-right: 12px
}

.terminal-body {
    padding: 22px;
    font-family: var(--mono);
    font-size: .8rem;
    line-height: 2;
}

.term-line {
    white-space: nowrap;
    overflow: hidden
}

.term-prompt {
    color: var(--amber);
    font-weight: 600
}

.term-cmd {
    color: var(--text)
}

.term-output {
    color: var(--text-2)
}

.term-line.dim {
    opacity: .55
}

.term-line.success .term-output {
    color: var(--green)
}

.term-cursor {
    animation: cursorBlink 1s step-end infinite;
    color: var(--amber);
}

@keyframes cursorBlink {
    50% {
        opacity: 0
    }
}

/* ============================
   OPTIMIZED FOR — Dual Vertical Ticker
   ============================ */
.trusted {
    position: relative;
    z-index: 2;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trusted-label {
    text-align: center;
    color: var(--text-3);
    font-size: .8rem;
    margin-bottom: 10px;
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: .1em;
}

.ticker-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    height: 200px;
    overflow: hidden;
}

.ticker-fade {
    position: absolute;
    left: 0;
    right: 0;
    height: 50px;
    z-index: 3;
    pointer-events: none;
}

.ticker-fade-top {
    top: 0;
    background: linear-gradient(to bottom, var(--bg), transparent);
}

.ticker-fade-bottom {
    bottom: 0;
    background: linear-gradient(to top, var(--bg), transparent);
}

.ticker-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 100%;
    padding: 0 20px;
}

.ticker-col {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.ticker-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ticker-up .ticker-inner {
    animation: tickUp 12s linear infinite;
}

.ticker-down .ticker-inner {
    animation: tickDown 12s linear infinite;
}

.ticker-game {
    font-family: var(--mono);
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--gc);
    opacity: .3;
    white-space: nowrap;
    text-align: center;
    padding: 8px 0;
    transition: opacity .3s var(--ease);
    cursor: default;
}

.ticker-game:hover {
    opacity: 1;
}

@keyframes tickUp {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-50%)
    }
}

@keyframes tickDown {
    0% {
        transform: translateY(-50%)
    }

    100% {
        transform: translateY(0)
    }
}

/* ============================
   SECTION COMMONS
   ============================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.section-header {
    text-align: center;
    margin-bottom: 64px
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border: 1px solid rgba(249, 115, 22, .12);
    background: rgba(249, 115, 22, .04);
    border-radius: var(--r-full);
    font-size: .72rem;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 18px;
    font-family: var(--mono);
}

.section-heading {
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -.03em;
}

.section-desc {
    color: var(--text-2);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
}

/* ============================
   FEATURES — Bento Grid
   ============================ */
.features {
    position: relative;
    z-index: 2;
    padding: 110px 0
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.feat-span-2 {
    grid-column: span 2
}

.feat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: all .45s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(249, 115, 22, .04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .4s var(--ease);
    pointer-events: none;
}

.feat-card:hover {
    border-color: rgba(249, 115, 22, .15);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.feat-card:hover::before {
    opacity: 1
}

.feat-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 0 0 2px 2px;
    opacity: .6;
}

html[dir="rtl"] .feat-accent {
    left: auto;
    right: 0
}

.cyan-accent {
    background: var(--gradient-cool)
}

.orange-accent {
    background: var(--gradient-warm)
}

.feat-number {
    font-family: var(--mono);
    font-size: .7rem;
    color: var(--text-3);
    margin-bottom: 14px;
    letter-spacing: .06em;
}

.feat-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feat-card p {
    color: var(--text-2);
    font-size: .88rem;
    line-height: 1.75;
}

.feat-span-2 {
    flex-direction: row;
    align-items: center;
    gap: 40px
}

.feat-span-2 .feat-content {
    flex: 1
}

.feat-span-2 .feat-visual {
    flex: 0 0 auto
}

.feat-visual {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-span-2 .feat-visual {
    margin-top: 0
}

/* Windows Blocks */
.win-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    width: 70px;
    height: 70px;
}

.win-blocks span {
    background: var(--gradient-warm);
    border-radius: 5px;
    opacity: .3;
    transition: all .35s var(--ease);
}

.feat-card:hover .win-blocks span {
    opacity: 1;
    box-shadow: 0 0 16px rgba(249, 115, 22, .3);
}

/* Latency */
.latency-display {
    display: flex;
    align-items: center;
    gap: 12px
}

.lat-before {
    font-family: var(--mono);
    font-size: 1.5rem;
    color: var(--text-3)
}

.lat-before small,
.lat-after small {
    font-size: .7rem;
    color: var(--text-3)
}

.lat-arrow {
    color: var(--text-3);
    font-size: 1.2rem
}

.lat-after {
    font-family: var(--mono);
    font-size: 1.5rem;
    color: var(--amber)
}

/* Hz */
.hz-display {
    display: flex;
    align-items: baseline;
    gap: 4px
}

.hz-val {
    font-family: var(--mono);
    font-size: 2rem;
    font-weight: 700
}

.hz-unit {
    font-family: var(--mono);
    font-size: .9rem;
    color: var(--text-3)
}

/* FPS */
.fps-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, .04);
    border-radius: 4px;
    overflow: hidden;
}

.fps-fill {
    height: 100%;
    background: var(--gradient-warm);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s var(--ease);
    font-size: .6rem;
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 6px;
    font-family: var(--mono);
    font-weight: 700;
}

.fps-fill.animated {
    width: 97%
}

/* ============================
   HOW IT WORKS
   ============================ */
.how-section {
    position: relative;
    z-index: 2;
    padding: 110px 0
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 40px 28px;
    text-align: center;
    position: relative;
    transition: all .4s var(--ease);
}

.step-card:hover {
    border-color: rgba(249, 115, 22, .12);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.step-num {
    font-family: var(--mono);
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
}

.step-line {
    position: absolute;
    top: 50%;
    left: -20px;
    width: 20px;
    height: 2px;
    background: var(--border);
}

html[dir="rtl"] .step-line {
    left: auto;
    right: -20px
}

.step-card:first-child .step-line {
    display: none
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px
}

.step-card p {
    color: var(--text-2);
    font-size: .86rem;
    line-height: 1.75
}

/* ============================
   PRICING
   ============================ */
.pricing {
    position: relative;
    z-index: 2;
    padding: 110px 0
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.p-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 34px 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .4s var(--ease);
}

.p-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.p-top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
}

.cyan-line {
    background: var(--gradient-cool)
}

.orange-line {
    background: var(--gradient-warm)
}

.purple-line {
    background: linear-gradient(90deg, #7C3AED, var(--purple))
}

.p-popular {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: .68rem;
    padding: 4px 14px;
    background: rgba(249, 115, 22, .08);
    border: 1px solid rgba(249, 115, 22, .2);
    border-radius: var(--r-full);
    color: var(--amber);
    white-space: nowrap;
    font-family: var(--mono);
    font-weight: 600;
}

.p-label {
    font-family: var(--mono);
    font-size: .68rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 8px;
    display: block;
    margin-top: 24px;
}

.p-featured .p-label {
    margin-top: 38px
}

.p-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px
}

.p-desc {
    color: var(--text-2);
    font-size: .84rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.p-list {
    flex: 1;
    margin-bottom: 24px
}

.p-list li {
    padding: 7px 0;
    font-size: .84rem;
    color: var(--text-2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.p-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: .5;
}

.p-btn {
    display: block;
    text-align: center;
    padding: 13px;
    border: 1px solid var(--border-hover);
    border-radius: var(--r-sm);
    font-size: .86rem;
    font-weight: 600;
    color: var(--text);
    transition: all .3s var(--ease);
    font-family: var(--font-ar);
    background: transparent;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
}

html[lang="en"] .p-btn {
    font-family: var(--font)
}

.p-btn:hover {
    border-color: rgba(249, 115, 22, .3);
    color: var(--amber);
    background: rgba(249, 115, 22, .04);
}

.p-btn-primary {
    background: var(--gradient-warm);
    background-size: 200% 200%;
    color: var(--bg);
    border-color: transparent;
    font-weight: 700;
}

.p-btn-primary:hover {
    box-shadow: 0 6px 25px rgba(249, 115, 22, .3);
    color: var(--bg);
    border-color: transparent;
    background: var(--gradient-warm);
}

.p-featured {
    border-color: rgba(249, 115, 22, .1)
}

.p-featured:hover {
    border-color: rgba(249, 115, 22, .25);
    box-shadow: 0 20px 50px rgba(249, 115, 22, .08);
}

/* ============================
   DETAILS (Accordion)
   ============================ */
.details-section {
    position: relative;
    z-index: 2;
    padding: 110px 0
}

.accordion-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.acc-item {
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color .3s var(--ease);
}

.acc-item.open {
    border-color: rgba(249, 115, 22, .15)
}

.acc-trigger {
    width: 100%;
    background: var(--bg-card);
    border: none;
    color: var(--text);
    padding: 22px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: right;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-ar);
    transition: background .2s var(--ease);
}

html[dir="ltr"] .acc-trigger {
    text-align: left
}

html[lang="en"] .acc-trigger {
    font-family: var(--font)
}

.acc-trigger:hover {
    background: var(--bg-card-2)
}

.acc-trigger::after {
    content: '+';
    font-family: var(--mono);
    font-size: 1.2rem;
    color: var(--text-3);
    transition: transform .3s var(--ease), color .3s;
}

.acc-item.open .acc-trigger::after {
    transform: rotate(45deg);
    color: var(--amber);
}

.acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
    background: rgba(255, 255, 255, .01);
}

.acc-item.open .acc-content {
    max-height: 600px
}

.acc-grid {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.acc-info {
    padding: 14px 18px;
    background: rgba(255, 255, 255, .02);
    border-radius: var(--r-sm);
    border: 1px solid var(--border);
    font-size: .86rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.acc-info strong {
    font-size: .88rem
}

.acc-info span {
    color: var(--text-2);
    font-size: .84rem
}

.acc-info.warn {
    border-color: rgba(249, 115, 22, .12);
    background: rgba(249, 115, 22, .03);
}

.acc-disabled-grid {
    padding: 20px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.acc-disabled-grid div strong {
    display: block;
    margin-bottom: 8px;
    font-size: .86rem;
}

.acc-disabled-grid ul li {
    font-size: .78rem;
    color: var(--text-2);
    padding: 3px 0;
}

/* ============================
   REVIEWS
   ============================ */
.reviews {
    position: relative;
    z-index: 2;
    padding: 110px 0
}

.rev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.rev-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 30px 24px;
    transition: all .4s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.rev-card:hover {
    border-color: rgba(249, 115, 22, .12);
    transform: translateY(-4px);
}

.rev-stars {
    color: var(--amber);
    font-size: .85rem;
    letter-spacing: 4px;
}

.rev-text {
    color: var(--text-2);
    font-size: .88rem;
    line-height: 1.75;
    flex: 1;
    font-style: italic;
}

.rev-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.rev-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .82rem;
    color: var(--bg);
}

.rev-author span {
    font-weight: 500;
    font-size: .88rem
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--text-3);
    font-size: .86rem;
    max-width: 280px
}

.footer-col h4 {
    font-size: .84rem;
    font-weight: 700;
    margin-bottom: 14px
}

.footer-col a {
    display: block;
    color: var(--text-2);
    font-size: .84rem;
    padding: 4px 0;
    transition: color .2s var(--ease);
}

.footer-col a:hover {
    color: var(--amber)
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-3);
    font-size: .75rem
}

/* ============================
   ANIMATIONS
   ============================ */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ============================
   RESPONSIVE
   ============================ */
@media(max-width:1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center
    }

    .hero-sub {
        margin: 0 auto 32px
    }

    .hero-actions {
        justify-content: center
    }

    .hero-metrics {
        justify-content: center
    }

    .price-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .feat-grid {
        grid-template-columns: 1fr 1fr
    }

    .feat-span-2 {
        grid-column: span 2
    }

    .acc-disabled-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .header-inner {
        padding: 6px 8px
    }

    .nav-menu {
        display: none
    }

    .hero-grid {
        text-align: right
    }

    html[dir="ltr"] .hero-grid {
        text-align: left
    }

    .hero-actions,
    .hero-metrics {
        justify-content: flex-start
    }

    .feat-grid {
        grid-template-columns: 1fr
    }

    .feat-span-2 {
        grid-column: span 1;
        flex-direction: column
    }

    .steps-row {
        grid-template-columns: 1fr
    }

    .step-line {
        display: none !important
    }

    .price-grid {
        grid-template-columns: 1fr
    }

    .rev-grid {
        grid-template-columns: 1fr
    }

    .acc-disabled-grid {
        grid-template-columns: 1fr 1fr
    }

    .discord-fab {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px
    }
}

@media(max-width:480px) {
    .hero-heading {
        font-size: 1.8rem
    }

    .section-heading {
        font-size: 1.6rem
    }

    .hero-metrics {
        flex-direction: column;
        gap: 16px
    }
}