/* Gold & Black Premium Design System for Aevis.app */
:root {
    --primary: #FFD700;
    /* Gold */
    --primary-dark: #B8860B;
    /* Dark Gold */
    --bg-black: #0A0A0A;
    --surface: #141414;
    --text-high: #FFFFFF;
    --text-mid: #A0A0A0;
    --glass: rgba(255, 215, 0, 0.03);
    --glass-border: rgba(255, 215, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-black);
    color: var(--text-high);
    font-family: 'Outfit', 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Common Layout */
section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.container {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 span {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .tagline {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--text-mid);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

/* Buttons */
.cta-group {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 16px;
    animation: fadeInUp 1.2s ease-out;
}

.btn-primary {
    background: var(--primary);
    color: black;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

/* Features Section */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 100px;
    align-items: center;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    min-width: 300px;
}

.feature-image {
    flex: 1;
    min-width: 300px;
    background: #0A0A0A;
    /* App Bar Background */
    aspect-ratio: 9/19.5;
    /* iPhone aspect ratio */
    max-height: 600px;
    border-radius: 32px;
    border: 8px solid #1A1A1A;
    /* Phone bezel */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255, 215, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-image:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px rgba(255, 215, 0, 0.15);
    border-color: #222;
}

/* Internal Scrolling Content */
.feature-image:not(.mockup-container) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0%;
    transition: transform 0.5s ease;
    animation: autoScroll 15s infinite alternate ease-in-out;
}

@keyframes autoScroll {

    0%,
    15% {
        object-position: 50% 0%;
    }

    85%,
    100% {
        object-position: 50% 100%;
    }
}

/* AI Market Report CSS Clone */
.market-report-app {
    width: 100%;
    height: 100%;
    background: #0A0A0A;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    color: white;
    text-align: left;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.mr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 20px 15px;
    background: #0A0A0A;
    z-index: 10;
}

.mr-icon {
    color: #777;
    font-size: 20px;
}

.mr-icon.menu {
    color: #FFD700;
}

.mr-title-box {
    text-align: center;
}

.mr-title {
    color: white;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.mr-tabs {
    display: flex;
    background: #0F0F0F;
    padding: 0 20px;
}

.mr-tab {
    flex: 1;
    text-align: center;
    padding: 16px 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.24);
    border-bottom: 2.5px solid transparent;
}

.mr-tab.active {
    color: #FFD700;
    border-bottom-color: #FFD700;
}

.mr-content-area {
    flex: 1;
    overflow: hidden;
    position: relative;
    background: #0A0A0A;
}

.mr-scroll-content {
    padding: 20px 20px 40px;
    animation: mrInnerScroll 35s infinite alternate ease-in-out;
}

@keyframes mrInnerScroll {

    0%,
    15% {
        transform: translateY(0);
    }

    85%,
    100% {
        transform: translateY(calc(-100% + 450px));
    }
}

.mr-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.mr-date {
    color: rgba(255, 255, 255, 0.38);
    font-size: 11px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.mr-badge {
    padding: 2px 8px;
    background: rgba(0, 230, 118, 0.05);
    border: 0.5px solid rgba(0, 230, 118, 0.3);
    border-radius: 4px;
    color: #00E676;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.mr-paper {
    background: #141414;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.mr-paper h1 {
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.mr-paper h2 {
    color: #FFD700;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
    margin: 24px 0 12px 0;
}

.mr-paper p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 16px 0;
}

.mr-paper blockquote {
    background: #1A1A1A;
    border-left: 4px solid #FFD700;
    border-radius: 4px;
    padding: 16px;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
}

.mr-sensors-title {
    color: #FFD700;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding-left: 4px;
    margin-top: 30px;
}

.mr-sensor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mr-sensor-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mr-sensor-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.mr-sensor-val {
    color: white;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.mr-sensor-change {
    font-size: 12px;
    font-weight: 600;
}

.mr-sensor-change.up {
    color: #00E676;
}

.mr-sensor-change.down {
    color: #FF3B30;
}


.feature-image:not(.mockup-container):hover img {
    animation-play-state: paused;
}

.feature-image.mockup-container:hover .mr-scroll-content {
    animation-play-state: paused;
}

/* Phone Bezel Details */
.feature-image::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: #333;
    border-radius: 10px;
    z-index: 10;
}

.feature-image::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    animation: float 6s infinite ease-in-out;
}

.feature-image.mockup-container::after {
    display: none;
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-text p {
    color: var(--text-mid);
    font-size: 1.1rem;
}

/* Footer & Legal */
footer {
    background: var(--surface);
    padding: 80px 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    margin-top: 30px;
}

.footer-links a {
    color: var(--text-mid);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Privacy Doc */
.privacy-doc {
    max-width: 800px;
    margin: 150px auto;
    padding: 60px;
    background: var(--surface);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

/* Smart Money App Mockup */
.smart-money-app {
    width: 100%;
    height: 100%;
    background: #0A0A0A;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    color: white;
    text-align: left;
}

.sm-header {
    padding: 40px 20px 15px;
    background: #0A0A0A;
    border-bottom: 1px solid #1A1A1A;
    z-index: 2;
}

.sm-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.sm-title {
    color: #FFD700;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1.5px;
}

.sm-icon {
    color: #FFD700;
    font-size: 20px;
    line-height: 1;
}

.sm-sub-header {
    display: flex;
    justify-content: space-between;
}

.sm-label {
    color: #555;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.sm-date {
    color: #FFF;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.sm-assets {
    color: #FFD700;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sm-scroll-area {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: appInnerScroll 15s infinite alternate ease-in-out;
}

@keyframes appInnerScroll {

    0%,
    12% {
        transform: translateY(0);
    }

    88%,
    100% {
        transform: translateY(-45%);
    }
}

.sm-section-title {
    margin-top: 15px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
}

.sm-gold-text {
    color: #FFD700;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    margin-left: 8px;
}

.sm-sub-text {
    color: #555;
    font-size: 10px;
    margin-left: 28px;
    letter-spacing: 0.5px;
}

.sm-card {
    background: #141414;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sm-rank {
    color: #555;
    font-size: 14px;
    font-weight: 600;
    width: 22px;
}

.sm-info {
    flex: 1;
    min-width: 0;
}

.sm-ticker {
    color: #FFD700;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.sm-name {
    color: #666;
    font-size: 11px;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sm-score-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.sm-grade {
    border: 1px solid #FFD700;
    color: #FFD700;
    font-size: 13px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
}

.sm-grade.b {
    border-color: #00E676;
    color: #00E676;
}

.sm-grade.s {
    border-color: #B28DFF;
    color: #B28DFF;
}

.sm-score-text {
    color: #555;
    font-size: 9px;
    font-weight: 600;
}

.sm-perf {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    min-width: 50px;
}

.sm-percent {
    color: #00E676;
    font-weight: 800;
    font-size: 14px;
}

.sm-percent.down {
    color: #FF3B30;
}

.sm-perf-text {
    color: #555;
    font-size: 9px;
    font-weight: 600;
}

.feature-image.mockup-container {
    align-items: stretch;
    padding: 0;
    background: #0A0A0A;
}

/* AI Analyst App Mockup */
.ai-analyst-app {
    width: 100%;
    height: 100%;
    background: #0A0A0A;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    color: white;
    text-align: left;
    position: relative;
}

.aa-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px 15px;
    background: #0A0A0A;
    border-bottom: 1px solid #1A1A1A;
    z-index: 10;
}

.aa-title {
    color: #FFD700;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
}

.aa-icon {
    color: #777;
    font-size: 20px;
}

.aa-icon.menu {
    color: #FFD700;
}

.aa-search-container {
    padding: 20px;
    z-index: 10;
    background: #0A0A0A;
}

.aa-search-box {
    display: flex;
    align-items: center;
    background: #141414;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px 16px;
    gap: 12px;
}

.aa-search-icon {
    color: #FFD700;
    font-size: 16px;
}

.aa-search-input-area {
    flex: 1;
    position: relative;
    height: 20px;
    display: flex;
    align-items: center;
}

.aa-placeholder {
    color: #555;
    font-size: 14px;
    position: absolute;
    left: 0;
    animation: aaPlaceholder 20s infinite;
}

.aa-typed-text {
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

.aa-typed-text::after {
    content: "";
    animation: aaType 20s infinite;
}

.aa-cursor {
    width: 2px;
    height: 16px;
    background: #FFD700;
    margin-left: 2px;
    animation: Blink 1s infinite, aaCursorHide 20s infinite;
}

.aa-search-arrow {
    color: #FFD700;
}

/* Content Area */
.aa-content-area {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.aa-state-initial,
.aa-state-loading,
.aa-state-result {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.aa-state-initial {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    animation: aaInitFade 20s infinite;
}

.aa-initial-icon {
    font-size: 30px;
    color: #555;
}

.aa-initial-text {
    color: #555;
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
}

.aa-state-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    animation: aaLoadFade 20s infinite;
    opacity: 0;
}

.aa-brain-container {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: aaBrainPulse 2s infinite alternate;
}

.aa-brain-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.2);
    filter: blur(20px);
}

.aa-brain-icon {
    font-size: 30px;
    color: #FFD700;
}

.aa-loading-text {
    color: #FFD700;
    font-family: monospace;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.aa-loading-msg::after {
    content: "Connecting to Neural Engine...";
    animation: aaLoadText 20s infinite;
}

.aa-loading-cursor {
    display: inline-block;
    width: 8px;
    height: 13px;
    background: #FFD700;
    margin-left: 2px;
    vertical-align: middle;
    animation: Blink 1s infinite;
}

.aa-state-result {
    padding: 0 20px 20px;
    animation: aaResultFade 20s infinite;
    opacity: 0;
    transform: translateY(20px);
}

.aa-result-scroll {
    animation: aaResultScroll 20s infinite;
}

.aa-report-header {
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.aa-report-ticker {
    color: #FFD700;
    font-size: 24px;
    font-weight: 800;
}

.aa-report-name {
    color: #888;
    font-size: 12px;
    margin-top: 4px;
    margin-bottom: 15px;
}

.aa-report-score-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #141414;
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 3px solid #B28DFF;
}

.aa-report-grade {
    font-weight: 800;
    font-size: 18px;
    color: #B28DFF;
}

.aa-report-score {
    font-size: 11px;
    color: white;
    font-weight: 600;
}

.aa-report-section {
    margin-bottom: 25px;
}

.aa-report-sec-title {
    color: #FFD700;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 10px;
}

.aa-report-sec-body {
    color: #ccc;
    font-size: 12px;
    line-height: 1.6;
}

/* Animations */
@keyframes Blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes aaPlaceholder {

    0%,
    10% {
        opacity: 1;
    }

    15%,
    100% {
        opacity: 0;
    }
}

@keyframes aaType {

    0%,
    10% {
        content: "";
    }

    12% {
        content: "N";
    }

    14% {
        content: "NV";
    }

    16% {
        content: "NVD";
    }

    18%,
    100% {
        content: "NVDA";
    }
}

@keyframes aaCursorHide {

    0%,
    25% {
        opacity: 1;
    }

    26%,
    100% {
        opacity: 0;
    }
}

@keyframes aaInitFade {

    0%,
    23% {
        opacity: 1;
        transform: scale(1);
    }

    25%,
    100% {
        opacity: 0;
        transform: scale(0.95);
    }
}

@keyframes aaLoadFade {

    0%,
    25% {
        opacity: 0;
        transform: scale(0.95);
    }

    30%,
    50% {
        opacity: 1;
        transform: scale(1);
    }

    55%,
    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

@keyframes aaBrainPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 rgba(255, 215, 0, 0);
    }

    100% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    }
}

@keyframes aaLoadText {

    0%,
    39% {
        content: "Connecting to Neural Engine...";
    }

    40%,
    100% {
        content: "Scanning recent price action...";
    }
}

@keyframes aaResultFade {

    0%,
    55% {
        opacity: 0;
        transform: translateY(20px);
    }

    60%,
    95% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes aaResultScroll {

    0%,
    70% {
        transform: translateY(0);
    }

    85%,
    95% {
        transform: translateY(-35%);
    }

    100% {
        transform: translateY(-35%);
    }
}

/* Bottom Nav */
.aa-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #1A1A1A;
    border-radius: 40px;
    margin: 10px 20px 20px;
    padding: 12px 20px;
}

.aa-nav-icon {
    color: #555;
    font-size: 16px;
}

.aa-nav-icon.active {
    color: #FFD700;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .feature-image:not(.mockup-container) img {
        object-position: 50% 0%;
    }

    .ai-market-scroll-image {
        animation: none !important;
        transform: none !important;
    }
}

/* =========================================
   NEW SECTIONS: How it Works, Bento, Pricing
========================================= */

/* How It Works */
#how-it-works {
    background: linear-gradient(to bottom, var(--bg-black), var(--surface));
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.step-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-mid);
}

.step-arrow {
    font-size: 30px;
    color: var(--text-mid);
    opacity: 0.5;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

/* Bento Box Features Update */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(400px, auto);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    background: var(--surface);
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    padding: 40px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.bento-card:hover {
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Make the first card large */
.bento-card:nth-child(1) {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.bento-card:nth-child(1) .feature-text {
    flex: 1;
}

.bento-card:nth-child(1) .feature-image {
    flex: 1;
    max-height: 500px;
}

/* Smaller cards inner layout */
.bento-card:nth-child(n+2) {
    justify-content: space-between;
}

.bento-card:nth-child(n+2) .feature-text {
    margin-bottom: 30px;
}

.bento-card:nth-child(n+2) .feature-image {
    margin: 0 auto;
    width: min(100%, 360px);
    max-width: 360px;
    aspect-ratio: 9/19.5;
    height: auto;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card {
        padding: 28px;
    }

    .bento-card:nth-child(1) {
        grid-column: span 1;
        flex-direction: column;
    }

    .bento-card .feature-image {
        min-width: 0;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .bento-card:nth-child(n+2) .feature-image {
        width: min(100%, 340px);
        max-width: 340px;
        aspect-ratio: 9/19.5;
        height: auto;
    }
}

/* Pricing Section */
#pricing {
    background: var(--bg-black);
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.premium-card {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    background: linear-gradient(180deg, rgba(25, 20, 0, 0.8) 0%, var(--surface) 100%);
}

.best-value {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: black;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--text-high);
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
}

.pricing-card .price span {
    font-size: 1.2rem;
    color: var(--text-mid);
    font-weight: 400;
    margin-left: 5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex: 1;
}

.pricing-features li {
    margin-bottom: 16px;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features .check {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 3px;
}

.btn-outline {
    display: block;
    text-align: center;
    padding: 16px;
    border: 1px solid var(--text-mid);
    color: var(--text-high);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
}

.premium-card .btn-primary {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    background: var(--primary);
    color: black;
    transition: all 0.3s;
}

.premium-card .btn-primary:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.btn-outline.is-disabled {
    opacity: 0.65;
    pointer-events: none;
    cursor: default;
}

@media (max-width: 900px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bento-card {
        padding: 22px;
        border-radius: 24px;
    }

    .pricing-card {
        padding: 30px 22px;
    }

    .pricing-card .price {
        font-size: 2.4rem;
    }

    .bento-card:nth-child(n+2) .feature-image {
        width: min(100%, 320px);
        max-width: 320px;
    }
}
