/* ============================================
   Taltuo — Modern Soft Design System
   Monochrome Core with Refined Accents
   ============================================ */

html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --bg-white: #ffffff;
    --bg-gray: #f8fafc;
    --bg-black: #24003A; /* New signature dark */
    
    --text-primary: #24003A;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-on-black: #ffffff;
    
    --border-subtle: #e2e8f0;
    --border-strong: #24003A;
    
    /* Accents */
    --accent: #6366f1; /* Modern Indigo */
    --accent-soft: rgba(99, 102, 241, 0.1);
    --accent-hover: #4f46e5;
    
    --success: #10b981;
    --error: #ef4444;
    --error-soft: rgba(239, 68, 68, 0.05);
    --error-border: rgba(239, 68, 68, 0.2);
    --warning: #f59e0b;
    
    /* Layout */
    --sidebar-width: 280px;
    --header-height: 72px;
    --card-radius: 24px;
    --input-radius: 15px;
    --btn-radius: 15px;
    
    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.02);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Modern Effects */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --mesh-gradient: radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0, transparent 50%), 
                     radial-gradient(at 50% 0%, hsla(225,39%,30%,1) 0, transparent 50%), 
                     radial-gradient(at 100% 0%, hsla(339,49%,30%,1) 0, transparent 50%);
}

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

body {
    background-color: var(--bg-gray);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}

/* Page heading size helpers */
.page-title    { font-size: 2.25rem; }
.page-title-sm { font-size: 2rem; }
.page-title-lg { font-size: 2.5rem; text-transform: uppercase; line-height: 1; }

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Layout Components */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-link:hover {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

.max-width {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Branding */
.logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.main-nav .logo {
    margin-bottom: 0;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 3px;
    box-shadow: 0 0 15px var(--accent-soft);
}

/* Scrollbar */

.content-body {
    padding: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.max-width {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border-subtle);
    background: var(--bg-white);
    color: var(--text-primary);
    border-radius: var(--btn-radius);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--bg-black);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--accent);
}

.btn-accent {
    background: var(--accent);
    color: white;
    border: none;
}

.btn-accent:hover {
    background: var(--accent-hover);
}

.btn-outline:hover {
    border-color: var(--text-primary);
}

.btn-danger {
    color: var(--error);
    border-color: var(--error);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* Cards */
.card {
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    padding: 1.75rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-soft);
}

.card-clickable:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--text-secondary);
}

input, textarea, select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-subtle);
    background: var(--bg-white);
    font-family: var(--font-main);
    font-size: 0.95rem;
    border-radius: var(--input-radius);
    outline: none;
    transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
}

/* Tables */
.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
}

td {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

tr:hover td {
    background: var(--bg-gray);
    color: var(--text-primary);
}

/* Toast */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.toast {
    background: var(--bg-black);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: toastIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-success { border-left: 3px solid var(--success); }
.toast-error   { border-left: 3px solid var(--error); }
.toast-info    { border-left: 3px solid var(--accent); }

@keyframes toastIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes toastOut {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(20px); }
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

.modal-overlay.open { display: flex; }

.modal-content {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    max-width: 95vw;
    width: fit-content;
    min-width: 320px;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Utilities */
/* Utilities */
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-uppercase { text-transform: uppercase; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.gap-5 { gap: 2rem; }
.gap-6 { gap: 3rem; }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    z-index: 10;
}

.modal-close-btn:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}


.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-6 { margin-top: 2.5rem; }
.mt-8 { margin-top: 3rem; }
.mt-10 { margin-top: 4rem; }
.mt-12 { margin-top: 6rem; }

.text-muted { color: var(--text-muted); }
.hidden { display: none !important; }

/* New Layout Utilities */
.fw-400 { font-weight: 400 !important; }
.fw-500 { font-weight: 500 !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
.fw-900 { font-weight: 900 !important; }
.fs-07 { font-size: 0.7rem !important; }
.fs-075 { font-size: 0.75rem !important; }
.fs-08 { font-size: 0.8rem !important; }
.fs-085 { font-size: 0.85rem !important; }
.fs-09 { font-size: 0.9rem !important; }
.fs-095 { font-size: 0.95rem !important; }
.fs-1 { font-size: 1rem !important; }
.fs-11 { font-size: 1.1rem !important; }
.fs-125 { font-size: 1.25rem !important; }
.fs-2 { font-size: 2rem !important; }
.fs-3 { font-size: 3rem !important; }
.ls-01 { letter-spacing: 0.1em !important; }
.ls-05 { letter-spacing: 0.05em !important; }
.ls-n02 { letter-spacing: -0.02em !important; }
.ls-n04 { letter-spacing: -0.04em !important; }
.ls-n05 { letter-spacing: -0.05em !important; }
.opacity-07 { opacity: 0.7 !important; }
.max-w-240 { max-width: 240px !important; }
.max-w-500 { max-width: 500px !important; }
.max-w-640 { max-width: 640px !important; }
.bg-white { background-color: var(--bg-white) !important; }
.bg-gray { background-color: var(--bg-gray) !important; }
.bg-black { background-color: var(--bg-black) !important; }
.bg-accent-soft { background-color: var(--accent-soft) !important; }
.bg-success-soft { background-color: rgba(16, 185, 129, 0.1) !important; }
.bg-warning-soft { background-color: rgba(245, 158, 11, 0.1) !important; }
.text-accent { color: var(--accent) !important; }
.text-success { color: var(--success) !important; }
.text-warning { color: var(--warning) !important; }
.text-primary { color: var(--text-primary) !important; }
.text-white { color: white !important; }
.text-error { color: var(--error) !important; }
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }
.hover-text-primary:hover { color: var(--accent) !important; }

.flex-1 { flex: 1 !important; }
.p-0 { padding: 0 !important; }
.p-15-2 { padding: 1.5rem 2rem !important; }
.overflow-hidden { overflow: hidden !important; }
.border-subtle { border: 1px solid var(--border-subtle) !important; border-radius: 12px !important; }
.border-strong { border: 1px solid var(--border-strong) !important; border-radius: 14px !important; }
.border-bottom { border-bottom: 1px solid var(--border-subtle) !important; }
.radius-12 { border-radius: 12px !important; }
.w-400 { width: 400px !important; }
.ml-2 { margin-left: 0.5rem !important; }
.lh-12 { line-height: 1.2 !important; }
.lh-14 { line-height: 1.4 !important; }
.gap-0 { gap: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.p-3 { padding: 0.75rem !important; }
.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2rem !important; }
.p-15-1 { padding: 1.5rem 1rem !important; }
.py-5 { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
.pb-6 { padding-bottom: 1.5rem !important; }
.pt-5 { padding-top: 1.25rem !important; }
.pt-6 { padding-top: 1.5rem !important; }
.p-1-2 { padding: 0.2rem 0.5rem !important; }
.p-16 { padding: 4rem !important; }
.py-24 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-5 { margin-bottom: 1.25rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.opacity-08 { opacity: 0.8 !important; }
.bg-white-10 { background: rgba(255, 255, 255, 0.1) !important; }
.bg-border-strong { background-color: var(--border-strong) !important; }
.bg-transparent { background-color: transparent !important; }
.uppercase { text-transform: uppercase !important; }
.block { display: block !important; }
.w-full { width: 100% !important; }
.w-auto { width: auto !important; }
.w-140 { width: 140px !important; }
.w-150 { width: 150px !important; }
.w-200 { width: 200px !important; }
.max-w-500 { max-width: 500px !important; }
.max-w-600 { max-width: 600px !important; }
.max-w-800 { max-width: 800px !important; }
.min-w-240 { min-width: 240px !important; }
.min-h-120 { min-height: 120px !important; }
.h-4 { height: 4px !important; }
.h-100-vh { height: 100vh !important; }
.cursor-pointer { cursor: pointer !important; }
.border-none { border: none !important; }
.border-bottom-strong { border-bottom: 2px solid var(--border-strong) !important; }
.border-4-strong { border: 4px solid var(--border-strong) !important; border-radius: 16px !important; }
.border-top { border-top: 1px solid var(--border-subtle) !important; }
.fs-065 { font-size: 0.65rem !important; }
.fs-075 { font-size: 0.75rem !important; }
.fs-08 { font-size: 0.8rem !important; }
.fs-09 { font-size: 0.9rem !important; }
.fs-11 { font-size: 1.1rem !important; }
.fs-125 { font-size: 1.25rem !important; }
.fs-15 { font-size: 1.5rem !important; }
.lh-08 { line-height: 0.8 !important; }
.ls-01 { letter-spacing: 0.1em !important; }
.ls-04 { letter-spacing: 0.04em !important; }
.ls-05 { letter-spacing: 0.05em !important; }
.ls-n02 { letter-spacing: -0.02em !important; }
.ls-n04 { letter-spacing: -0.04em !important; }
.ls-n05 { letter-spacing: -0.05em !important; }
.fs-07 { font-size: 0.7rem !important; }
.fs-085 { font-size: 0.85rem !important; }
.fs-1 { font-size: 1rem !important; }
.fs-2 { font-size: 2rem !important; }
.fs-10 { font-size: 10rem !important; }
.fw-500 { font-weight: 500 !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
.fw-900 { font-weight: 900 !important; }
.mb-12 { margin-bottom: 3rem !important; }
.pl-2 { padding-left: 0.5rem !important; }
.w-400 { width: 400px !important; }
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.lh-12 { line-height: 1.2 !important; }
.lh-1 { line-height: 1 !important; }
.lh-14 { line-height: 1.4 !important; }
.lh-16 { line-height: 1.6 !important; }
.list-none { list-style: none !important; }
.break-all { word-break: break-all !important; }
.grid-auto-320 { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important; }
.text-right { text-align: right !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.icon-box {
    background: var(--accent-soft);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.badge-black {
    background: var(--bg-black) !important;
    color: white !important;
}

/* Pricing Toggle */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.pricing-toggle-bg {
    background: #f1f5f9;
    padding: 0.4rem;
    border-radius: 100px;
    display: flex;
    gap: 0.25rem;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.toggle-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 100px;
    color: var(--text-secondary);
}

.toggle-btn.active {
    background: var(--bg-white);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 900;
    height: 1rem;
    padding: 0 0.7rem;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1;
}

.badge-black {
    background: var(--bg-black) !important;
    border-color: var(--bg-black) !important;
    color: white !important;
}

.badge-primary {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: rgba(16, 185, 129, 0.2) !important;
    color: var(--success) !important;
}

.glass {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid var(--glass-border) !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow {
    position: relative;
}

.glow::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    right: -20%;
    bottom: -20%;
    background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Landing Page Specifics */
.hero {
    padding: 12rem 0 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-mesh {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
    filter: blur(80px);
    pointer-events: none;
    animation: meshRotate 20s linear infinite;
}

.mesh-1 {
    position: absolute;
    top: 20%;
    left: 30%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
}

.mesh-2 {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 45%;
    height: 45%;
    background: radial-gradient(circle, hsla(260, 80%, 80%, 0.3) 0%, transparent 70%);
}

.mesh-3 {
    position: absolute;
    top: 30%;
    left: 40%;
    width: 35%;
    height: 35%;
    background: radial-gradient(circle, hsla(200, 80%, 80%, 0.2) 0%, transparent 70%);
}

@keyframes meshRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.2); }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero h1 {
        white-space: normal;
    }
}

.hero p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    max-width: 1100px;
    margin-top: 5rem;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
}

.hero-image img {
    width: 100%;
    animation: float 8s ease-in-out infinite;
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

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

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.hero-image {
    flex: 1.2;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.25), 0 18px 36px -18px rgba(15, 23, 42, 0.3);
    border: 1px solid var(--border-subtle);
    animation: float 6s ease-in-out infinite;
}

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

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        text-align: center;
    }
    .hero-content .section-title {
        text-align: center !important;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
}

.logo-cloud {
    padding: 3rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-white);
    position: relative;
    z-index: 10;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
}

.trust-item div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.trust-label {
    font-size: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    opacity: 0.7;
}

.trust-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
}

.trust-sep {
    width: 1px;
    height: 32px;
    background: var(--border-subtle);
}

.section {
    padding: 8rem 0;
    scroll-margin-top: 80px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    margin-top: 4rem;
}

.bento-grid .feature-item {
    border: 1px solid var(--border-subtle);
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-grid .feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, var(--accent-soft), transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.bento-grid .feature-item:hover::before {
    opacity: 1;
}

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

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .feature-wide {
        grid-column: span 1;
    }
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(99, 102, 241, 0.12), 0 18px 36px -18px rgba(99, 102, 241, 0.2);
    border-color: var(--accent);
}

.feature-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: flex-start;
}

.pricing-card {
    background: var(--bg-white);
    padding: 3rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-header {
    margin-bottom: 2rem;
    text-align: center;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 1.5rem 0;
    line-height: 1;
}

.period {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid #f1f5f9;
}

/* App Specifics */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
}

/* App page layout helpers */
.trial-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

@media (max-width: 1100px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Trial Bar */
.trial-bar {
    background: var(--bg-black);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
}

.trial-bar h4 { color: white; }

.progress-track {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    width: 160px;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    background: linear-gradient(90deg, var(--accent) 0%, #a855f7 100%);
    height: 100%;
    border-radius: 100px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scores */
.score-high { color: var(--success); }
.score-med { color: var(--warning); }
.score-low { color: var(--error); }

/* Auth Pages */
.auth-body {
    background: var(--bg-black);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-card {
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Empty States */
.empty-state {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--bg-white);
    border: 2px dashed var(--border-subtle);
    border-radius: var(--card-radius);
}

.danger-zone {
    padding: 2rem;
    background: var(--error-soft);
    border: 1px solid var(--error-border);
    border-radius: var(--card-radius);
}

/* Detail Pages */
.score-box {
    border: 4px solid var(--border-strong);
    padding: 2rem;
    width: 140px;
    text-align: center;
    background: var(--bg-white);
}

.score-box-value {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.score-box-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
    color: var(--text-muted);
}

.back-link {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--text-primary);
    transform: translateX(-4px);
}

/* Workflow */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.workflow-step {
    position: relative;
    text-align: center;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-soft);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.workflow-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 10rem 0;
    background: var(--bg-black);
    color: white;
    text-align: center;
    position: relative;
}

.final-cta .max-width {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

.final-cta p {
    font-size: 1.35rem;
    color: #94a3b8;
    max-width: 640px;
    margin: 0 auto 3.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.cta-buttons .btn {
    padding: 1.15rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.2);
}

.cta-buttons .btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: white;
}

/* Footer Improvement */
.main-footer {
    padding: 6rem 0 3rem;
    background: var(--bg-white);
    border-top: 1px solid var(--border-subtle);
}

.main-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.social-links a:hover {
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .main-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .main-footer .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

/* Differentiation Section */
.differentiation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.diff-content .section-title {
    color: var(--accent);
}

.diff-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.diff-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.diff-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.diff-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.diff-list li::before {
    content: '→';
    color: var(--accent);
    font-weight: 900;
}

.diff-visual {
    perspective: 1000px;
}

.diff-card {
    background: var(--bg-black);
    color: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.diff-card-header {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    opacity: 0.6;
}

.diff-comparison {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.diff-comp-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comp-label {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.comp-value {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.comp-status {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.status-red { background: rgba(239, 68, 68, 0.2); color: #fca5a5; }
.status-green { background: rgba(16, 185, 129, 0.2); color: #6ee7b7; }

/* Social Proof */
.social-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    margin-top: 6rem;
}

.social-tag {
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.social-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .differentiation-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-card {
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: var(--transition);
}

.faq-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
}

.faq-card.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-card.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 2rem;
}

.faq-card.active .faq-content {
    max-height: 200px;
    padding-bottom: 2rem;
}

.faq-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Cookie Consent Bar */
.cookie-consent-bar {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    width: 90%;
    max-width: 800px;
    background: rgba(36, 0, 58, 0.95); /* var(--bg-black) with opacity */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cookie-consent-bar.visible {
    transform: translateX(-50%) translateY(0);
}

.cookie-content {
    flex: 1;
}

.cookie-title {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    display: block;
}

.cookie-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
}

.cookie-text a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-consent-bar {
        flex-direction: column;
        bottom: 1rem;
        padding: 1.5rem;
        text-align: center;
        gap: 1.25rem;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .cookie-actions .btn {
        flex: 1;
    }
}
