/* Trocker Modern Design System - Light Theme */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --accent-primary: #5F7FFF;
    --accent-hover: #4a66e5;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --success: #059669;
}

body {
    font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    margin: 0;
    line-height: 1.6;
}

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

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Layout Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Nav */
.site-header {
    padding: 1.5rem 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.logo img {
    height: 32px;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
    border: 1px solid transparent;
    text-decoration: none !important;
    /* Force no underline */
}

.btn-primary {
    background-color: var(--accent-primary);
    color: white !important;
    /* Force white text */
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(95, 127, 255, 0.25);
}

.btn-secondary {
    background-color: white;
    border-color: var(--border-color);
    color: var(--text-primary) !important;
}

.btn-secondary:hover {
    background-color: var(--bg-secondary);
    color: var(--text-primary) !important;
    border-color: #cbd5e1;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    margin-top: 0;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Trust Signals */
.trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #ecfdf5;
    /* Light green bg */
    color: var(--success);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #a7f3d0;
}

/* Press Section */
.press-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.press-section h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* Grid Container */
.carousel-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem 2.5rem;
    padding: 0;
    max-width: 100%;
}

/* Minimalist Quote Card */
.carousel-card {
    background: transparent;
    padding: 0 0 0 1.5rem;
    border-left: 3px solid var(--accent-primary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.press-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.press-logo-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.press-date {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.press-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.read-more:hover {
    color: var(--accent-primary);
    text-decoration: none;
}

/* Press Collapsible Accordion */
.press-details {
    margin-top: 3rem;
    text-align: center;
}

.press-toggle-btn {
    cursor: pointer;
    list-style: none;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.press-toggle-btn::-webkit-details-marker {
    display: none;
}

/* Toggle summary button text in pure CSS */
.press-toggle-btn span {
    display: none;
}

.press-toggle-btn::after {
    content: "Show More";
}

details[open] .press-toggle-btn::after {
    content: "Show Less";
}

.additional-press {
    margin-top: 3rem;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    background: var(--bg-primary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }
}