/* 
  ========================================
  NYRA BOT - iOS / PSN / ARK AESTHETIC
  ========================================
*/

:root {
    /* Apple / PSN Dark Mode Palette */
    --bg-dark: #000000;
    --bg-surface: #0c0c0e;

    --accent-psn: #0070cc;
    --accent-ios: #0A84FF;
    --accent-glow: #00f0ff;
    --success: #32D74B;
    --gold: #FFD60A;

    /* Frosted Glass (iOS Style) */
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-highlight: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(40px) saturate(180%);

    /* Typography */
    --text-primary: #f5f5f7;
    --text-secondary: #86868b;
    --text-tertiary: #424245;

    /* Geometry */
    --radius-xl: 44px;
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 12px;

    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* 
  ========================================
  DYNAMIC PS5-LIKE BACKGROUND
  ========================================
*/
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -5;
    background: var(--bg-dark);
    overflow: hidden;
}

.aurora-bg::before,
.aurora-bg::after {
    content: '';
    position: absolute;
    width: 150vw;
    height: 150vh;
    top: -25vh;
    left: -25vw;
    background: radial-gradient(circle at 50% 50%, rgba(10, 132, 255, 0.08) 0%, transparent 60%);
    animation: moveMesh 30s ease-in-out infinite alternate;
    filter: blur(100px);
}

.aurora-bg::after {
    background: radial-gradient(circle at 70% 30%, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
    animation: moveMesh2 25s ease-in-out infinite alternate-reverse;
}

@keyframes moveMesh {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.2) translate(10%, 10%);
    }
}

@keyframes moveMesh2 {
    0% {
        transform: scale(1.1) translate(0, 0);
    }

    100% {
        transform: scale(1) translate(-10%, 15%);
    }
}

/* 
  ========================================
  TYPOGRAPHY & UTILITIES
  ========================================
*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

h1,
h2,
h3,
h4 {
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #fff 0%, #a1a1a6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 64px;
    max-width: 600px;
    margin-inline: auto;
}

/* Frosted Glass Utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

/* 
  ========================================
  NAVBAR (iOS Notch/Dynamic Island Style)
  ========================================
*/
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1000px;
    border-radius: 100px;
    background: rgba(20, 20, 22, 0.6);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 24px;
    transition: var(--transition-smooth);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: #fff;
}

.nav-cta {
    background: #fff;
    color: #000 !important;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
}

.nav-cta:hover {
    transform: scale(1.05);
}

/* 
  ========================================
  BUTTONS
  ========================================
*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.03);
}

/* 
  ========================================
  HERO SECTION (PSN/Apple Cinematic)
  ========================================
*/
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    max-width: 900px;
}

.hero-title span {
    background: linear-gradient(to right, #fff, #86868b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* 
  ========================================
  NEW PRICING CARDS (iOS 26 / PSN Style)
  ========================================
*/
.pricing {
    padding: 120px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 50%);
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(10, 132, 255, 0.1);
}

.pricing-card.featured {
    border: 1px solid rgba(10, 132, 255, 0.3);
    background: linear-gradient(180deg, rgba(10, 132, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-ios), transparent);
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.plan-price {
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #fff;
}

.price-period {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.plan-features .check {
    color: var(--accent-ios);
    font-weight: bold;
}

.pricing-card.featured .plan-features .check {
    color: var(--accent-glow);
}

.plan-btn {
    width: 100%;
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card.featured .plan-btn {
    background: #fff;
    color: #000;
}

.plan-btn:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured .plan-btn:hover {
    background: #f0f0f0;
}

.command-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.command-pill {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.8rem;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-secondary);
}


/* 
  ========================================
  FEATURE SECTION
  ========================================
*/
.features {
    padding: 120px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* 
  ========================================
  PAGES (ABOUT, SUPPORT, PRIVACY, TOS)
  ========================================
*/
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.content-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 64px;
    margin-bottom: 40px;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.content-section p,
.content-section li {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-section ul {
    padding-left: 20px;
}

/* 
  ========================================
  FOOTER
  ========================================
*/
footer {
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

/* 
  ========================================
  RESPONSIVE QUERIES
  ========================================
*/
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .navbar {
        width: calc(100% - 32px);
        padding: 12px 16px;
    }

    .nav-menu {
        display: none;
    }

    /* Add hamburger logic if needed */
    .pricing-card {
        padding: 32px 24px;
    }

    .content-card {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}