/* ==========================================================================
   ScrollVeto Premium Design System & Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Tokens (Obsidian Dark Mode Default) */
    --background: #090A0B;
    --surface: #111315;
    --surface-card: #151719;
    --border-color: #272A2E;
    
    --text-primary: #FAFAFA;
    --text-secondary: #A1A1AA;
    --text-tertiary: #71717A;
    
    --brand-forest: #00B48B;
    --brand-mint: #00D2A0;
    --brand-gradient: linear-gradient(135deg, #00B48B 0%, #00D2A0 100%);
    
    /* Muted Pastel Accents for Dark Mode */
    --pastel-blue: #0F172A;
    --pastel-pink: #2E101D;
    --pastel-orange: #2B1808;
    --pastel-green: #062417;
    --pastel-purple: #1E122A;
    
    --accent-blue-text: #60A5FA;
    --accent-pink-text: #F472B6;
    --accent-orange-text: #FBBF24;
    --accent-green-text: #34D399;
    --accent-purple-text: #A78BFA;
    
    /* Layered Shadows for Depth (Darker for Obsidian) */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.5), 0 8px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.6), 0 16px 32px rgba(0, 0, 0, 0.6), 0 32px 64px rgba(0, 0, 0, 0.6);
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

[data-theme="dark"] {
    /* Color Tokens (Dark Mode) */
    --background: #09090B;
    --surface: #121214;
    --surface-card: #18181B;
    --border-color: #27272A;
    
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-tertiary: #64748B;
    
    --pastel-blue: #1E293B;
    --pastel-pink: #3F1B24;
    --pastel-orange: #3C2216;
    --pastel-green: #143525;
    --pastel-purple: #2D1D3D;
    
    --accent-blue-text: #60A5FA;
    --accent-pink-text: #F472B6;
    --accent-orange-text: #FBBF24;
    --accent-green-text: #34D399;
    --accent-purple-text: #A78BFA;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.4), 0 8px 16px rgba(0, 0, 0, 0.4), 0 16px 32px rgba(0, 0, 0, 0.4), 0 32px 64px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   Base & Resets
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    transition: background-color 0.4s ease, color 0.4s ease;
    overflow-x: hidden;
    position: relative;
}

/* Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    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");
    opacity: 0.04;
}

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

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Animated Orbs */
.bg-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite alternate ease-in-out;
}
.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--brand-forest);
    top: -100px;
    left: -100px;
}
.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--brand-mint);
    bottom: -200px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.1); }
    100% { transform: translate(-50px, 20px) scale(0.9); }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
    background: rgba(var(--background), 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(var(--border-color), 0.5);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-mint);
    border-radius: 50%;
    display: inline-block;
}

nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
    animation: dropIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

nav ul li:nth-child(1) a { animation-delay: 0.1s; }
nav ul li:nth-child(2) a { animation-delay: 0.15s; }
nav ul li:nth-child(3) a { animation-delay: 0.2s; }
nav ul li:nth-child(4) a { animation-delay: 0.25s; }
nav ul li:nth-child(5) a { animation-delay: 0.3s; }
nav ul li:nth-child(6) a { animation-delay: 0.35s; }

@keyframes dropIn {
    0% { opacity: 0; transform: translateY(-15px); }
    100% { opacity: 1; transform: translateY(0); }
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

nav a:hover, nav a.active {
    color: var(--text-primary);
}

/* Buttons */
.btn-cta {
    background: var(--brand-gradient);
    color: #FFFFFF !important;
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.btn-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 180, 139, 0.3);
}

.btn-cta:hover::after {
    left: 150%;
    transition: all 0.6s ease;
}

.btn-secondary {
    border: 1px solid var(--border-color);
    background: var(--surface);
    color: var(--text-primary) !important;
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--brand-forest);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.theme-toggle {
    background: var(--surface);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.theme-toggle:hover {
    color: var(--brand-forest);
    border-color: var(--brand-forest);
    background: var(--pastel-green);
    transform: rotate(15deg);
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background-color: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    max-width: 1200px;
    margin: 8rem auto 4rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content h1 span {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-bar {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-tertiary);
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--brand-forest);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image.reveal {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
}
.hero-image.reveal.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 180, 139, 0.1) 0%, transparent 70%);
    z-index: -1;
    filter: blur(20px);
}

.mockup-img {
    max-height: 600px;
    filter: drop-shadow(var(--shadow-lg));
    animation: float-mockup 8s ease-in-out infinite;
}

@keyframes float-mockup {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.floating-badge {
    position: absolute;
    background: var(--brand-forest);
    color: #FFFFFF;
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.badge-1 {
    top: 10%;
    right: -10%;
    animation: float 6s infinite alternate ease-in-out;
}

.badge-2 {
    bottom: 20%;
    left: -15%;
    animation: float 7s infinite alternate-reverse ease-in-out;
}

.star-icon {
    color: #FBBF24;
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ==========================================================================
   Social Proof Section
   ========================================================================== */
.social-proof {
    max-width: 1200px;
    margin: 4rem auto 8rem;
    padding: 0 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-gradient);
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1.05rem;
}

/* ==========================================================================
   Features Section (Bento Grid)
   ========================================================================== */
.features {
    padding: 6rem 2rem;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.4;
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 180, 139, 0.1);
    color: var(--brand-forest);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.6;
}

.bento-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
    perspective: 1000px;
}

.bento-card {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Hover tilt effect */
.bento-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--text-tertiary);
}

.bento-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--card-accent, rgba(0, 180, 139, 0.08)) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none;
    transition: var(--transition);
}

.bento-card:hover::after {
    transform: translate(20%, -20%) scale(1.2);
}

/* Bento Sizing */
.bento-large {
    grid-column: span 2;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--card-accent, var(--pastel-green));
    color: var(--card-icon, var(--accent-green-text));
}

.feature-icon-wrapper svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    transition: var(--transition-bounce);
}

.bento-card:hover .feature-icon-wrapper svg {
    transform: scale(1.15) rotate(-5deg);
}

.bento-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.2px;
}

.bento-large h3 {
    font-size: 1.75rem;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Specific Card Colors */
.card-monk { --card-accent: var(--pastel-blue); --card-icon: var(--accent-blue-text); }
.card-limits { --card-accent: var(--pastel-pink); --card-icon: var(--accent-pink-text); }
.card-willpower { --card-accent: var(--pastel-orange); --card-icon: var(--accent-orange-text); }
.card-time { --card-accent: var(--pastel-green); --card-icon: var(--accent-green-text); }
.card-rank { --card-accent: var(--pastel-purple); --card-icon: var(--accent-purple-text); }

/* ==========================================================================
   Calculator Section
   ========================================================================== */
.calculator-section {
    max-width: 1000px;
    margin: 8rem auto;
    padding: 0 2rem;
}

.calc-card {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.calc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--brand-gradient);
}

.slider-container {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--background);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.slider-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.slider-value {
    color: var(--brand-forest);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: var(--border-color);
    outline: none;
    position: relative;
}

input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--brand-mint) var(--progress), var(--border-color) var(--progress));
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 3px solid var(--brand-forest);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-top: -9px;
    transition: transform 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
}

.calc-result-box {
    text-align: center;
}

.calc-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.calc-num span {
    font-size: 1.25rem;
    color: var(--text-tertiary);
    font-weight: 600;
}

.calc-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calc-sublabel {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin-top: 0.5rem;
}

.activity-callout {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(0, 180, 139, 0.05);
    border: 1px dashed var(--brand-mint);
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--brand-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

/* ==========================================================================
   Founders Section
   ========================================================================== */
.founders-section {
    padding: 6rem 2rem;
    background: var(--surface);
    border-top: 1px solid var(--border-color);
}

.founders-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.founder-card {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-forest);
}

.founder-img-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 2rem auto;
}

.founder-img-wrapper::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px dashed var(--brand-mint);
    border-radius: 50%;
    z-index: 0;
    transition: var(--transition);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.founder-card:hover .founder-img-wrapper::after {
    border-style: solid;
    border-color: var(--brand-forest);
}

.founder-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    box-shadow: var(--shadow-md);
    filter: grayscale(10%);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.founder-card:hover .founder-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.founder-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.founder-role {
    display: inline-block;
    color: var(--brand-forest);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    padding: 0.4rem 1rem;
    background: rgba(0, 180, 139, 0.08);
    border-radius: 100px;
}

.founder-card-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.founders-quote {
    max-width: 800px;
    margin: 4rem auto 0 auto;
    text-align: center;
    font-style: italic;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 2.5rem;
    background: var(--background);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    position: relative;
}

.founders-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--brand-mint);
    line-height: 1;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: var(--surface);
    border-top: 1px solid var(--border-color);
    padding: 6rem 2rem 2rem 2rem;
    position: relative;
}

.footer-cta {
    background: var(--brand-gradient);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    max-width: 1000px;
    margin: -10rem auto 4rem auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.footer-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer-cta .btn-secondary {
    background: white !important;
    color: var(--brand-forest) !important;
    border: none;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 320px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--brand-forest);
    color: white;
    border-color: var(--brand-forest);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--brand-forest);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 4rem auto 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.made-in {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.made-in svg {
    color: #ef4444;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        margin: 0 auto 2rem auto;
    }
    
    .hero-buttons, .trust-bar {
        justify-content: center;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-large {
        grid-column: span 1;
    }
    
    .founders-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .hamburger {
        display: block;
        color: var(--text-primary);
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--surface);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 1000;
        gap: 2rem;
    }
    
    nav ul.nav-active {
        right: 0;
    }
    
    nav ul li a {
        font-size: 1.5rem;
        font-family: var(--font-heading);
        font-weight: 700;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2.5rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .calc-card {
        padding: 2rem;
    }
    
    .calc-results-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 1rem auto 0 auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* ==========================================================================
   Compliance & Blogs Shared Styles
   ========================================================================== */
.compliance-container {
    max-width: 800px;
    margin: 8rem auto 4rem;
    padding: 0 2rem;
}

.compliance-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
    text-align: center;
}

.compliance-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.compliance-content h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.compliance-content p, .compliance-content ul {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.compliance-content ul {
    padding-left: 1.5rem;
}

.compliance-content li {
    margin-bottom: 0.75rem;
}

.blog-grid {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-forest);
}

.blog-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-forest);
    background: rgba(0, 180, 139, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
}

.blog-read-time {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.6;
}

.blog-meta {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.blog-meta-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
}

.faq-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--text-primary);
}

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

.contact-card {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    background: var(--background);
    color: var(--text-primary);
    border-radius: 12px;
    outline: none;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--brand-forest);
    box-shadow: 0 0 0 4px rgba(0, 180, 139, 0.1);
}

.btn-submit {
    background: var(--brand-gradient);
    color: white;
    border: none;
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Pure CSS Phone Mockup */
.css-phone {
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25), inset 0 0 0 2px #444;
    position: relative;
    margin: 0 auto;
    z-index: 1;
}

.css-phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #000;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

.css-phone-screen {
    width: 100%;
    height: 100%;
    background: #090A0B;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    color: #FAFAFA;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.phone-body {
    padding: 20px;
    height: 100%;
    overflow-y: auto;
}

.phone-card {
    background: #111315;
    border: 1px solid #272A2E;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.5);
}

.phone-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    margin-top: 15px;
}

.phone-chart .bar {
    flex: 1;
    background: rgba(0, 180, 139, 0.3);
    border-radius: 4px;
}

/* Social Proof Section */
/* Mobile Specific Grid Overrides */
@media (max-width: 768px) {
    .testimonials > div,
    .science-grid {
        grid-template-columns: 1fr !important;
    }
    
    .comparison-section .bento-card > div {
        grid-template-columns: 1fr !important;
    }

    #waitlist-modal .modal-content {
        padding: 1.5rem !important;
        width: 95% !important;
    }
}
