/* --- CSS Variables & Design System --- */
:root {
    --color-ink: #0C0C0E;
    --color-surface: #141417;
    --color-surface-card: rgba(20, 20, 23, 0.7);
    --color-gold: #D4AF37;
    --color-gold-soft: #E6C564;
    --color-gold-dim: rgba(212, 175, 55, 0.15);
    --color-gold-border: rgba(230, 197, 100, 0.25);
    --color-slate: #94A3B8;
    --color-slate-light: #E2E8F0;
    --color-slate-dark: #475569;
    
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Outfit', system-ui, -apple-system, sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Reset & Scrollbar --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-ink);
    color: var(--color-slate-light);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-ink);
}
::-webkit-scrollbar-thumb {
    background: var(--color-slate-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* --- Atmospheric Backgrounds --- */
.stars-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 100px 150px, #ddd, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 200px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 300px 250px, #eee, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 350px 180px, #ddd, rgba(0,0,0,0)),
        radial-gradient(rgba(212, 175, 55, 0.03) 0%, transparent 60%),
        radial-gradient(rgba(99, 102, 241, 0.02) 40%, transparent 80%);
    background-size: 550px 550px, 450px 450px, 600px 600px, 500px 500px, 400px 400px, 350px 350px, 100% 100%, 100% 100%;
    background-position: 0 0, 100px 50px, 200px 100px, 300px 150px, 400px 200px, 500px 250px, center, center;
    opacity: 0.8;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- Helper Classes & Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold-text {
    color: var(--color-gold);
    font-family: var(--font-heading);
}

/* --- Buttons & UI Elements --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--color-gold-soft) 0%, #B8932C 100%);
    border: none;
    border-radius: 8px;
    color: var(--color-ink);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-primary.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.gold-icon {
    color: var(--color-gold-soft);
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.2));
}

/* --- Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(12, 12, 14, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-gold-dim);
}

.header-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-slate-light);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.nav-link {
    color: var(--color-slate);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-gold-soft);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-slate-light);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    padding-top: 150px;
    padding-bottom: 100px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.badge-new {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--color-gold-dim);
    border: 1px solid var(--color-gold-border);
    color: var(--color-gold-soft);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-slate);
    margin-bottom: 40px;
    max-width: 580px;
}

.store-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 8px;
    background-color: rgba(25, 25, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-slate-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.store-btn:hover {
    border-color: var(--color-gold-soft);
    background-color: rgba(25, 25, 30, 0.8);
    transform: translateY(-2px);
}

.store-btn span {
    display: block;
    font-size: 0.7rem;
    color: var(--color-slate);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-btn strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

/* --- Hero Phone Mockup --- */
.hero-mockup {
    position: relative;
    justify-self: center;
    width: 290px;
    z-index: 2;
}

.phone-frame {
    width: 290px;
    height: 590px;
    background-color: #1a1a1f;
    border: 10px solid #2d2d35;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

.phone-speaker {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #2d2d35;
    border-radius: 10px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: var(--color-ink);
    display: flex;
    flex-direction: column;
    padding: 30px 16px 16px;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.app-avatar-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-avatar-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-gold);
    box-shadow: 0 0 8px var(--color-gold);
}

.app-title-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
}

.pro-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-ink);
    background-color: var(--color-gold-soft);
    padding: 2px 6px;
    border-radius: 4px;
}

.app-chat-area {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.msg {
    max-width: 85%;
    padding: 10px 14px;
    font-size: 0.75rem;
    line-height: 1.4;
    border-radius: 14px;
}

.user-msg {
    align-self: flex-end;
    background-color: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-slate-light);
    border-bottom-right-radius: 4px;
}

.oracle-msg {
    align-self: flex-start;
    background-color: rgba(212, 175, 55, 0.04);
    border: 1px solid var(--color-gold-border);
    color: var(--color-slate-light);
    border-bottom-left-radius: 4px;
}

.oracle-name {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-gold-soft);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.app-input-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background-color: var(--color-surface);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.app-input-placeholder {
    font-size: 0.75rem;
    color: var(--color-slate-dark);
}

.app-send-btn {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background-color: var(--color-gold-dim);
    color: var(--color-gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-shadow {
    position: absolute;
    bottom: -15px;
    left: 5%;
    width: 90%;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    filter: blur(20px);
    z-index: -1;
}

/* --- Features Section --- */
.features {
    padding: 100px 0;
    background-color: rgba(20, 20, 23, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-slate);
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--color-surface-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 35px 30px;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: var(--color-gold-border);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(212, 175, 55, 0.08);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--color-gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--color-gold-soft);
    color: var(--color-ink);
}

.feature-card:hover .feature-icon-wrapper .gold-icon {
    color: var(--color-ink);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--color-slate);
    line-height: 1.6;
}

/* --- Oracle Chat Section --- */
.oracle-section {
    padding: 100px 0;
}

.oracle-chat-container {
    max-width: 850px;
    margin: 0 auto;
    border: 1px solid var(--color-gold-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
    background-color: var(--color-surface);
}

.oracle-mentor-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: rgba(12, 12, 14, 0.6);
    border-bottom: 1px solid var(--color-gold-border);
}

.mentor-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    background: none;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-slate);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.mentor-tab:last-child {
    border-right: none;
}

.mentor-tab:hover {
    color: var(--color-slate-light);
    background-color: rgba(255, 255, 255, 0.02);
}

.mentor-tab.active {
    color: var(--color-gold-soft);
    background-color: var(--color-ink);
}

/* --- Sages Section --- */
.sages-section {
    padding: 100px 0;
    background-color: var(--color-ink);
}

.sages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sage-card {
    background-color: var(--color-surface-card);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 35px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.sage-card:hover {
    border-color: var(--color-gold-border);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(212, 175, 55, 0.06);
}

.sage-portrait {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--color-gold-soft);
    margin-bottom: 20px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.sage-card:hover .sage-portrait {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.sage-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-slate-light);
    margin-bottom: 4px;
}

.sage-role {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold-soft);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 16px;
}

.sage-card p {
    font-size: 0.85rem;
    color: var(--color-slate);
    line-height: 1.6;
}

/* --- Brand Logo Img --- */
.gold-logo-img {
    filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.3));
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.logo:hover .gold-logo-img {
    transform: rotate(5deg) scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
}

/* --- App Mockup Avatar --- */
.app-header-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--color-gold-soft);
    object-fit: cover;
}

/* --- Oracle Chat Avatar Tabs --- */
.mentor-avatar-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid var(--color-slate-dark);
    object-fit: cover;
    transition: var(--transition-smooth);
}

.mentor-tab.active .mentor-avatar-img {
    border-color: var(--color-gold-soft);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.oracle-console-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 380px;
}

.console-history {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 20px;
}

.console-message {
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 80%;
    animation: fadeIn 0.25s ease-out;
}

.console-message.system-msg {
    align-self: center;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--color-slate);
    text-align: center;
    max-width: 90%;
    font-size: 0.85rem;
}

.console-message.user {
    align-self: flex-end;
    background-color: var(--color-ink);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-slate-light);
}

.console-message.oracle {
    align-self: flex-start;
    background-color: rgba(212, 175, 55, 0.03);
    border: 1px solid var(--color-gold-border);
    color: var(--color-slate-light);
}

.console-message.typing::after {
    content: "● ● ●";
    animation: blink 1.2s infinite;
    font-size: 0.6rem;
    letter-spacing: 2px;
}

.console-input-row {
    display: flex;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.console-input-row input {
    flex: 1;
    background-color: var(--color-ink);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px 20px;
    color: var(--color-slate-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.console-input-row input:focus {
    outline: none;
    border-color: var(--color-gold-soft);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

/* --- Quote Highlights Carousel --- */
.quotes-carousel {
    padding: 100px 0;
    background-color: rgba(12, 12, 14, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    text-align: center;
}

.quotes-container {
    max-width: 800px;
}

.quote-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-height: 200px;
}

.quote-symbol {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--color-gold-dim);
    line-height: 1;
    margin-bottom: -20px;
}

blockquote {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    line-height: 1.5;
    font-weight: 400;
    color: var(--color-slate-light);
}

cite {
    font-style: normal;
    color: var(--color-gold-soft);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-slate-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dots .dot.active {
    background-color: var(--color-gold-soft);
    transform: scale(1.2);
}

/* --- About Section --- */
.about {
    padding: 100px 0;
}

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

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--color-slate);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.badge-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background-color: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--color-slate-light);
}

.gold-rim-card {
    background-color: var(--color-surface-card);
    border: 1.5px solid var(--color-gold-border);
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

.card-pretitle {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold-soft);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.gold-rim-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.gold-rim-card p {
    color: var(--color-slate);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    padding: 60px 0 40px;
    background-color: var(--color-ink);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-slate-light);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--color-slate);
    margin-top: 6px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: var(--color-slate);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-gold-soft);
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-slate-dark);
}

/* --- Keyframe Animations --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

.animate-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- Simplified Feature Card Helpers --- */
.feat-summary {
    font-size: 0.95rem;
    color: var(--color-slate-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.feat-steps {
    list-style: none;
    margin-bottom: 18px;
    padding-left: 0;
}

.feat-steps li {
    font-size: 0.85rem;
    color: var(--color-slate);
    margin-bottom: 6px;
    padding-left: 14px;
    position: relative;
}

.feat-steps li::before {
    content: "•";
    color: var(--color-gold-soft);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.feat-benefit {
    font-size: 0.8rem;
    color: var(--color-gold-soft);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
    display: block;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 0;
    background-color: rgba(20, 20, 23, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-surface-card);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.15);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: none;
    border: none;
    color: var(--color-slate-light);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-trigger:hover {
    color: var(--color-gold-soft);
}

.faq-arrow {
    color: var(--color-slate);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-trigger[aria-expanded="true"] {
    color: var(--color-gold-soft);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-trigger[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
    color: var(--color-gold-soft);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(12, 12, 14, 0.2);
}

.faq-content-inner {
    padding: 20px 28px 24px;
    font-size: 0.925rem;
    color: var(--color-slate);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

/* --- Contact Section --- */
.contact-section {
    padding: 120px 0;
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
}

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

.contact-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.contact-text p {
    color: var(--color-slate);
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-card-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.support-composer-card {
    width: 100%;
    max-width: 480px;
    padding: 0 !important;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--color-surface);
    border: 1.5px solid var(--color-gold-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.support-composer-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-gold-soft);
    box-shadow: 0 40px 80px rgba(212, 175, 55, 0.12);
}

.composer-header {
    background-color: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.composer-dots {
    display: flex;
    gap: 6px;
}

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

.c-dot.red { background-color: #EF4444; }
.c-dot.yellow { background-color: #F59E0B; }
.c-dot.green { background-color: #10B981; }

.composer-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-slate);
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

.composer-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.composer-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 12px;
    font-size: 0.9rem;
}

.info-label {
    color: var(--color-slate-dark);
    font-weight: 500;
    width: 32px;
}

.info-value {
    color: var(--color-gold-soft);
    font-weight: 600;
}

.composer-row {
    width: 100%;
}

.composer-row input,
.composer-row textarea {
    width: 100% !important;
    background-color: rgba(12, 12, 14, 0.6) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
    color: var(--color-slate-light) !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    transition: var(--transition-smooth) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.composer-row input::placeholder,
.composer-row textarea::placeholder {
    color: var(--color-slate-dark) !important;
    opacity: 0.7 !important;
}

.composer-row input:focus,
.composer-row textarea:focus {
    outline: none !important;
    border-color: var(--color-gold-soft) !important;
    box-shadow: 0 0 12px rgba(230, 197, 100, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.4) !important;
    background-color: rgba(12, 12, 14, 0.8) !important;
}

.composer-row textarea {
    resize: none !important;
}

.composer-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    font-weight: 700;
}

.send-icon {
    transition: transform 0.3s ease;
}

.composer-btn:hover .send-icon {
    transform: translate(2px, -2px);
}

/* --- Responsive Layout Breakpoints --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-subtitle {
        margin: 0 auto 30px;
    }
    
    .store-buttons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-grid .contact-card-box {
        order: 2;
    }
    
    .contact-grid .contact-text {
        order: 1;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 16px 20px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .mentor-tab span {
        display: none;
    }
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--color-ink);
    border-bottom: 1px solid var(--color-gold-border);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
}

.mobile-menu.open {
    display: flex;
}

.mobile-link {
    color: var(--color-slate-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}
