/* ============================================
   SOCRATE — macOS Roblox External
   Modern Dark + Gold Marble Theme
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0908;
    --bg-2: #11100e;
    --bg-3: #1a1814;
    --surface: rgba(26, 24, 20, 0.6);
    --border: rgba(212, 175, 110, 0.12);
    --border-strong: rgba(212, 175, 110, 0.28);
    --text: #f5ead3;
    --text-dim: #a89b85;
    --text-muted: #6b6557;
    --gold: #d4af6e;
    --gold-bright: #f1d089;
    --gold-deep: #a07f3a;
    --marble: #e8d9b8;
    --shadow-gold: 0 20px 60px -20px rgba(212, 175, 110, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.gold {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Background decoration */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 110, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 110, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.glow-1 {
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.glow-2 {
    background: radial-gradient(circle, #6d4a18 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(10, 9, 8, 0.6);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 9, 8, 0.85);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s;
}

.brand:hover {
    transform: scale(1.02);
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 0 30px rgba(212, 175, 110, 0.3);
    border: 1px solid var(--border-strong);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 3px;
    color: var(--marble);
}

.brand-tag {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    transition: color 0.2s;
    position: relative;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--gold-bright);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 7px 16px 7px 9px !important;
    font-size: 13px !important;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--marble);
    border-radius: 2px;
    transition: 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212, 175, 110, 0.08);
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-bright);
}

.eyebrow .dot {
    width: 6px;
    height: 6px;
    background: var(--gold-bright);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-bright);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(48px, 7vw, 88px);
    line-height: 1;
    margin: 24px 0 28px;
    letter-spacing: -1px;
}

.hero-title .line {
    display: block;
    font-weight: 700;
}

.hero-title .line.gold {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .line.small {
    font-family: 'Inter', sans-serif;
    font-size: 0.4em;
    font-weight: 400;
    color: var(--text-dim);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 16px;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-sub strong {
    color: var(--marble);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* ============================================
   UNIFIED PILL BUTTON SYSTEM
   ============================================ */
.pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 22px 11px 14px;
    background: rgba(26, 24, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-dim);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pill::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 0%, var(--gold-bright) 50%, transparent 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pill:hover::before { opacity: 1; }

.pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(212, 175, 110, 0.18);
    color: var(--gold-bright);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pill-label {
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.pill-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.pill:hover .pill-arrow {
    transform: translate(2px, -2px);
}

/* Size variants */
.pill-lg {
    padding: 13px 26px 13px 16px;
    font-size: 14px;
    gap: 14px;
}

.pill-lg .pill-icon {
    width: 32px;
    height: 32px;
}

/* Variants */
.pill-gold {
    color: var(--marble);
    background: rgba(212, 175, 110, 0.08);
    border-color: var(--border-strong);
}

.pill-gold .pill-icon {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: #1a1410;
    box-shadow: 0 4px 16px -4px rgba(212, 175, 110, 0.5);
}

.pill-gold:hover {
    color: var(--gold-bright);
    border-color: rgba(212, 175, 110, 0.5);
    background: rgba(212, 175, 110, 0.14);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(212, 175, 110, 0.5);
}

.pill-gold:hover .pill-icon {
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 6px 20px -4px rgba(212, 175, 110, 0.7);
}

.pill-gold:hover .pill-arrow {
    color: var(--gold-bright);
}

.pill-muted {
    color: var(--text-dim);
}

.pill-muted .pill-icon {
    background: rgba(212, 175, 110, 0.08);
    color: var(--gold);
}

.pill-muted:hover {
    color: var(--marble);
    border-color: var(--border-strong);
    background: rgba(26, 24, 20, 0.8);
    transform: translateY(-2px);
}

.pill-muted:hover .pill-icon {
    background: rgba(212, 175, 110, 0.2);
    color: var(--gold-bright);
    transform: rotate(-8deg) scale(1.08);
}

.pill-muted:hover .pill-arrow {
    color: var(--marble);
}

.pill-discord {
    color: var(--text-dim);
}

.pill-discord::before {
    background: linear-gradient(135deg, transparent 0%, rgba(88, 101, 242, 0.6) 50%, transparent 100%);
}

.pill-discord .pill-icon {
    background: rgba(88, 101, 242, 0.18);
    color: #8a92ff;
}

.pill-discord:hover {
    color: #fff;
    border-color: rgba(88, 101, 242, 0.35);
    background: rgba(88, 101, 242, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(88, 101, 242, 0.4);
}

.pill-discord:hover .pill-icon {
    background: #5865f2;
    color: #fff;
    transform: rotate(-8deg) scale(1.08);
}

.pill-discord:hover .pill-arrow {
    color: #8a92ff;
}

/* Tag variant — static label (no link, no arrow) */
.pill-tag {
    padding: 7px 16px 7px 8px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--marble);
    cursor: default;
    gap: 9px;
}

.pill-tag .pill-icon {
    width: 22px;
    height: 22px;
    background: rgba(212, 175, 110, 0.15);
    color: var(--gold-bright);
}

.pill-tag:hover {
    border-color: var(--border-strong);
    background: rgba(212, 175, 110, 0.08);
    transform: translateY(-1px);
}

.pill-tag:hover .pill-icon {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: #1a1410;
    transform: rotate(-6deg) scale(1.06);
}

.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

/* Hero right */
.hero-right {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 480px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(212, 175, 110, 0.25)) drop-shadow(0 0 40px rgba(212, 175, 110, 0.15));
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 110, 0.3) 0%, transparent 60%);
    filter: blur(40px);
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.orb-ring {
    position: absolute;
    width: 480px;
    height: 480px;
    border: 1px dashed var(--border-strong);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.orb-ring-2 {
    width: 580px;
    height: 580px;
    border-style: solid;
    border-color: transparent;
    border-top-color: var(--gold);
    border-right-color: var(--gold);
    opacity: 0.3;
    animation: rotate 20s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

.floating-card {
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(26, 24, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
    z-index: 5;
    transform: translate(-50%, -50%);
    transition: filter 0.3s ease;
    will-change: transform, opacity, z-index;
}

.fc-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.fc-title {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 2px;
}

.fc-sub {
    font-size: 14px;
    color: var(--marble);
    font-weight: 600;
}

.orb-ring {
    z-index: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.3); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    overflow: hidden;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(26, 24, 20, 0.3);
    position: relative;
    z-index: 2;
}

.marquee-track {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
}

.marquee-track span {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    position: relative;
    z-index: 2;
    padding: 120px 0;
}

.section-head {
    max-width: 720px;
    margin-bottom: 64px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    margin: 24px 0 20px;
    font-weight: 700;
}

.section-head p {
    font-size: 17px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature {
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature:hover {
    border-color: var(--border-strong);
    transform: translateY(-6px);
    background: rgba(26, 24, 20, 0.8);
    box-shadow: 0 20px 60px -30px rgba(212, 175, 110, 0.3);
}

.feature:hover::before {
    opacity: 1;
}

.feature-big {
    grid-column: span 2;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(212, 175, 110, 0.2), rgba(212, 175, 110, 0.05));
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    margin-bottom: 20px;
}

.feature h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--marble);
}

.feature p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.7;
}

.feature-meta {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.feature-meta span {
    padding: 6px 14px;
    background: rgba(212, 175, 110, 0.08);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 12px;
    color: var(--gold-bright);
    font-weight: 500;
}

/* Showcase */
.showcase {
    background: linear-gradient(180deg, transparent, rgba(26, 24, 20, 0.4), transparent);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-left {
    position: relative;
}

.showcase-img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    filter: drop-shadow(0 30px 80px rgba(212, 175, 110, 0.3));
    position: relative;
    z-index: 2;
    animation: float 7s ease-in-out infinite;
}

.showcase-img-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.3;
    z-index: 1;
}

.lead {
    font-size: 19px;
    color: var(--text-dim);
    margin: 24px 0 36px;
    line-height: 1.7;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.check {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: #1a1410;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    margin-top: 2px;
}

.check strong {
    display: block;
    color: var(--marble);
    margin-bottom: 4px;
    font-size: 16px;
}

.check span {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.6;
}

/* Compatibility */
.compat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.compat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
}

.compat-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}

.compat-emoji {
    font-size: 40px;
    margin-bottom: 16px;
}

.compat-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--marble);
    margin-bottom: 12px;
}

.compat-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.compat-badge.supported {
    background: rgba(120, 200, 120, 0.15);
    color: #8fd48f;
    border: 1px solid rgba(120, 200, 120, 0.3);
}

.compat-badge.legacy {
    background: rgba(212, 175, 110, 0.12);
    color: var(--gold-bright);
    border: 1px solid var(--border-strong);
}

.compat-card p {
    font-size: 13px;
    color: var(--text-muted);
}

.archs {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
}

.archs-single {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.arch-note {
    margin-top: 18px;
    padding: 14px 18px;
    background: rgba(212, 175, 110, 0.06);
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
}

.arch {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
}

.arch-label {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--gold-bright);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.arch-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.arch-chips span {
    padding: 8px 16px;
    background: rgba(212, 175, 110, 0.08);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--marble);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(180deg, transparent, rgba(26, 24, 20, 0.3), transparent);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    transition: all 0.3s;
}

.testi:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}

.stars {
    color: var(--gold-bright);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testi p {
    color: var(--text);
    font-style: italic;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.7;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1410;
    font-weight: 700;
    font-family: 'Cinzel', serif;
}

.testi-user strong {
    display: block;
    color: var(--marble);
    font-size: 14px;
}

.testi-user span {
    color: var(--text-muted);
    font-size: 12px;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.faq-intro h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    margin: 24px 0 20px;
}

.faq-intro p {
    font-size: 17px;
    color: var(--text-dim);
    margin-bottom: 32px;
}

.faq-img {
    width: 100%;
    max-width: 320px;
    filter: drop-shadow(0 20px 50px rgba(212, 175, 110, 0.25));
    opacity: 0.85;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--border-strong);
}

.faq-item[open] {
    border-color: var(--border-strong);
    background: rgba(212, 175, 110, 0.05);
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--marble);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 24px;
    color: var(--gold);
    transition: transform 0.3s;
    font-weight: 300;
}

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

.faq-item p {
    padding: 0 24px 22px;
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.7;
}

/* Download / Terminal */
.download {
    padding-bottom: 140px;
}

.terminal-wrap {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.terminal-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    margin: 24px 0 16px;
    font-weight: 700;
}

.terminal-sub {
    font-size: 16px;
    color: var(--text-dim);
    margin: 24px auto 40px;
    max-width: 540px;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

.terminal-sub .gold {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.terminal {
    background: #0d0c0a;
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 30px 80px -30px rgba(0, 0, 0, 0.8),
        0 0 60px -20px rgba(212, 175, 110, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    text-align: left;
    position: relative;
}

.terminal-head {
    background: linear-gradient(180deg, #1a1816, #141210);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.t-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.t-red { background: #ff5f57; }
.t-yellow { background: #febc2e; }
.t-green { background: #28c840; }

.t-title {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-right: 50px;
}

.terminal-body {
    padding: 28px 24px;
    font-family: 'SF Mono', 'Monaco', 'Menlo', monospace;
    font-size: 15px;
    line-height: 1.7;
    min-height: 200px;
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.t-prompt {
    color: var(--gold-bright);
    font-weight: 600;
    user-select: none;
}

.t-cmd {
    color: var(--marble);
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    white-space: nowrap;
}

.t-copy {
    background: rgba(212, 175, 110, 0.08);
    border: 1px solid var(--border-strong);
    color: var(--gold-bright);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.t-copy:hover {
    background: rgba(212, 175, 110, 0.18);
    transform: scale(1.05);
}

.t-copy.copied {
    background: rgba(120, 200, 120, 0.18);
    color: #8fd48f;
    border-color: rgba(120, 200, 120, 0.4);
}

.terminal-output {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.t-soon {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 16px;
}

.t-cursor {
    display: inline-block;
    width: 9px;
    height: 18px;
    background: var(--gold-bright);
    animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
    to { visibility: hidden; }
}

/* Discord section wrapper */
.discord-section {
    padding: 0 0 100px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.discord-wrap {
    text-align: center;
    max-width: 540px;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.discord-tagline {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-dim);
    letter-spacing: 0.2px;
    margin: 0;
}

.dt-accent {
    color: #8a92ff;
    font-weight: 600;
    position: relative;
    white-space: nowrap;
}

.dt-accent::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.5), transparent);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner,
    .showcase-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-right {
        height: 480px;
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-big {
        grid-column: span 2;
    }
    .compat-grid,
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .download-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
        text-align: center;
    }
    .download-img {
        margin: 0 auto;
    }
    .download-cta {
        align-items: center;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container, .nav-inner, .hero-inner {
        padding: 0 20px;
    }
    .nav-links {
        display: none;
    }
    .nav-links.open {
        display: flex;
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(10, 9, 8, 0.97);
        backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open a {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        width: 100%;
        text-align: center;
    }
    .nav-links.open a:last-child {
        border: none;
        margin-top: 12px;
    }
    .burger {
        display: flex;
    }
    section {
        padding: 80px 0;
    }
    .hero {
        padding-top: 120px;
    }
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    .stat-num {
        font-size: 26px;
    }
    .hero-right {
        height: 380px;
    }
    .orb-ring {
        width: 320px;
        height: 320px;
    }
    .orb-ring-2 {
        width: 400px;
        height: 400px;
    }
    .floating-card {
        padding: 10px 14px;
        font-size: 12px;
    }
    .fc-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    .feature-grid,
    .compat-grid,
    .testi-grid {
        grid-template-columns: 1fr;
    }
    .feature-big {
        grid-column: span 1;
    }
    .archs {
        grid-template-columns: 1fr;
    }
    .footer-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .download-card {
        padding: 32px 24px;
        border-radius: 24px;
    }
    .marquee-track {
        gap: 40px;
    }
    .marquee-track span {
        font-size: 12px;
    }
}

/* Animations on scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
