/* Playzen — marketing site */

@import url('/css/fonts.css');

:root {
    /* Brand — "Pista": deep court green + volt lime (lime only on dark) */
    --primary: #0e5a43;
    --primary-dark: #0a4534;
    --primary-light: #137055;
    --primary-subtle: #eaf4ee;
    --accent: #0e5a43;
    --accent-soft: #eef4ea;
    --volt: #d9ff4b;

    /* Ink + paper */
    --secondary: #0c1210;
    --text: #161b18;
    --text-muted: #5c665f;
    --text-light: #8a9389;
    --bg: #fafbf7;
    --bg-alt: #eef4ea;
    --bg-warm: #f2f6ee;
    --bg-dark: #0c1210;
    --border: #e2e8dd;
    --border-light: #ecf0e7;
    --rule: #1b221e;

    /* Semantic */
    --success: #15803d;
    --success-light: #dcfce7;
    --success-dark: #166534;
    --error: #b91c1c;

    /* Shadows (subtle, editorial) */
    --shadow-sm: 0 1px 0 rgba(11,13,18,0.04);
    --shadow: 0 1px 2px rgba(11,13,18,0.06);
    --shadow-md: 0 8px 24px -12px rgba(11,13,18,0.18);
    --shadow-lg: 0 18px 40px -20px rgba(11,13,18,0.22);
    --shadow-xl: 0 30px 60px -25px rgba(11,13,18,0.3);

    /* Spacing & Radius */
    --radius: 6px;
    --radius-lg: 10px;
    --radius-xl: 14px;
    --radius-2xl: 20px;

    --font-display: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ==================== Animations ==================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate { opacity: 0; }

.animate.animate-in {
    animation-duration: 0.55s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.animate.fade-up.animate-in { animation-name: fadeUp; }
.animate.fade-in.animate-in { animation-name: fadeIn; }
.animate.scale-in.animate-in { animation-name: fadeUp; }
.animate.slide-right.animate-in { animation-name: fadeUp; }

.stagger-1 { animation-delay: 0.05s; }
.stagger-2 { animation-delay: 0.1s; }
.stagger-3 { animation-delay: 0.15s; }
.stagger-4 { animation-delay: 0.2s; }
.stagger-5 { animation-delay: 0.25s; }

@media (prefers-reduced-motion: reduce) {
    .animate { opacity: 1; animation: none !important; }
}

/* ==================== Base ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--volt);
    color: var(--secondary);
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.05;
    color: var(--secondary);
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-mono), var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.eyebrow::before {
    content: '— ';
    color: var(--accent);
    font-weight: 700;
}

/* ==================== Top Banner ==================== */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--secondary);
    padding: 0.5rem 0;
}

.top-banner .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}

.top-banner span {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    font-weight: 400;
}

.top-banner a,
.top-banner a:visited {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--volt);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(217, 255, 75, 0.4);
    padding-bottom: 1px;
    transition: border-color 0.2s;
}

.top-banner a:hover {
    border-color: var(--volt);
}

.top-banner a svg {
    width: 16px;
    height: 16px;
}

/* ==================== Header ==================== */
header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 0.75rem 0;
}

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

.logo,
.logo:visited {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Satoshi', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo svg, .logo img {
    width: auto;
    height: 28px;
}
.footer-brand .logo img { filter: brightness(0) invert(1); }

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a,
nav a:visited {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover { color: var(--text); }

nav .nav-lang,
nav .nav-lang:visited {
    font-size: 0.8125rem;
    padding: 0.375rem 0.75rem;
    background: var(--bg-alt);
    border-radius: 999px;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

nav .nav-lang:hover {
    background: var(--bg);
    border-color: var(--primary);
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
    border-radius: 1px;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.375rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.18s ease;
    font-family: inherit;
    letter-spacing: -0.005em;
}

.btn-sm { padding: 0.5rem 1.125rem; font-size: 0.875rem; }
.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary,
.btn-primary:visited {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-outline,
.btn-outline:visited {
    background: transparent;
    color: var(--text);
    border-color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: white;
}

.btn-ghost,
.btn-ghost:visited {
    background: transparent;
    color: var(--text);
    border-color: transparent;
}

.btn-ghost:hover {
    color: var(--primary);
}

.btn-white,
.btn-white:visited {
    background: var(--volt);
    color: var(--secondary);
    border-color: var(--volt);
}

.btn-white:hover {
    background: white;
    border-color: white;
    color: var(--secondary);
}

.btn-arrow::after {
    content: '→';
    margin-left: 0.125rem;
    transition: transform 0.18s ease;
}

.btn-arrow:hover::after {
    transform: translateX(3px);
}

/* ==================== Hero Section ==================== */
.hero {
    padding: 9.5rem 0 4rem;
    background: var(--bg);
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-copy { max-width: 560px; }

.hero-visual {
    position: relative;
}

.hero-visual .hero-stage-desktop {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: white;
}

.hero-visual .hero-stage-desktop img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-visual .hero-stage-phone {
    position: absolute;
    bottom: -24px;
    right: -28px;
    width: 160px;
    border-radius: 22px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    background: white;
}

.hero-visual .hero-stage-phone img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-stats {
    list-style: none;
    padding: 2.5rem 0 0;
    margin: 0;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hero-stats li {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.hero-stats strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-stats span {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
}

@media (max-width: 768px) {
    .hero-stats { grid-template-columns: 1fr; gap: 1.25rem; }
}

.hero-aside {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-bottom: 0.5rem;
    border-left: 1px solid var(--border);
    padding-left: 2rem;
}

.hero-aside-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-aside-num {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.03em;
    line-height: 1;
}

.hero-aside-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.4;
    max-width: 22ch;
}

@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-aside { border-left: none; padding-left: 0; flex-direction: row; flex-wrap: wrap; gap: 1.5rem 2.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-mono), var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-meta::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.hero h1 {
    font-size: clamp(2.25rem, 4.6vw, 3.75rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--secondary);
    margin-bottom: 1.75rem;
    letter-spacing: -0.03em;
    max-width: 18ch;
    text-wrap: balance;
}

/* Brand signature: the closing full stop of every headline, in court green
   (volt lime on dark sections) — echoes the dot-matrix logo. */
.dot { color: var(--primary); }
.final-cta .dot { color: var(--volt); }

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 56ch;
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-cta .btn-arrow {
    padding-left: 0;
    padding-right: 0;
}

/* Hero composite visual */
.hero-stage {
    position: relative;
    margin: 0 auto;
    max-width: 1100px;
}

.hero-stage-desktop {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: white;
}

.hero-stage-desktop img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-stage-phone {
    position: absolute;
    bottom: 32px;
    right: 4%;
    width: 200px;
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    background: white;
}

.hero-stage-phone img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .hero-stage-phone { display: none; }
    .hero-content { text-align: left; margin-bottom: 2.5rem; }
}

/* (legacy hero-visual removed in favor of .hero-stage) */

.hero-screenshot-phone {
    position: relative;
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 300px;
    width: 100%;
    border: 1px solid var(--border);
}

.hero-screenshot-phone img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-mockup {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    max-width: 480px;
    width: 100%;
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.mockup-header h3 {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 600;
}

.mockup-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.timeline-entry {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    background: var(--bg-alt);
    transition: transform 0.2s;
}

.timeline-entry:hover { transform: translateX(4px); }

.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.timeline-dot.green { background: var(--primary); }
.timeline-dot.orange { background: #f59e0b; }
.timeline-dot.red { background: #ef4444; }
.timeline-dot.blue { background: #3b82f6; }

.timeline-info { flex: 1; }

.timeline-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
}

.timeline-detail {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.timeline-time {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    font-variant-numeric: tabular-nums;
}

.hero-stat {
    position: absolute;
    background: white;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 4s ease-in-out infinite;
}

.hero-stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

.hero-stat-icon svg { width: 20px; height: 20px; }

.hero-stat-icon--green { background: #dbeafe; color: #2563eb; }
.hero-stat-icon--amber { background: #fef3c7; color: #d97706; }

.hero-stat-content { display: flex; flex-direction: column; }

.hero-stat-value {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-stat-1 { top: 5%; left: -15%; animation-delay: 0s; }
.hero-stat-2 { bottom: 10%; right: -15%; animation-delay: 1s; }

/* ==================== Section Header ==================== */
.section-header {
    max-width: 720px;
    margin: 0 0 3rem;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--secondary);
    margin-bottom: 0.875rem;
    letter-spacing: -0.03em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 60ch;
}

.section-header.center p { margin-left: auto; margin-right: auto; }

/* ==================== Adapt (differentiator) ==================== */
.adapt {
    padding: 6rem 0;
    background: var(--bg-warm);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.adapt-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.adapt-copy h2 {
    font-size: clamp(2rem, 3.4vw, 2.75rem);
    color: var(--secondary);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    max-width: 22ch;
    text-wrap: balance;
}

.adapt-copy p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 48ch;
    margin-bottom: 1.75rem;
}

.adapt-copy .btn-arrow {
    padding-left: 0;
    padding-right: 0;
}

.adapt-cases {
    list-style: none;
    border-top: 1px solid var(--rule);
}

.adapt-cases li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.375rem 0;
    border-bottom: 1px solid var(--border);
}

.adapt-cases strong {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: -0.01em;
}

.adapt-cases span {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .adapt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .adapt { padding: 4rem 0; }
}

/* ==================== Features Section (spec-grid) ==================== */
.features {
    padding: 6rem 0;
    background: var(--bg);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--border);
}

.spec-block {
    padding: 2rem 2rem 2.25rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    transition: background 0.18s ease;
}

.spec-block:hover { background: var(--bg-warm); }

.spec-block-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed var(--border);
}

.spec-block-head h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.spec-num {
    font-family: var(--font-mono), var(--font-body);
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.spec-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.spec-list li {
    display: flex;
    gap: 0.875rem;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
}

.spec-list li:last-child { border-bottom: none; }

.spec-list li::before {
    content: '+';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    font-family: var(--font-mono), var(--font-body);
}

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

/* ==================== Sector pages (para/*) ==================== */
.hero .container:has(> .hero-content) {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content { max-width: 560px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: var(--primary-subtle);
    color: var(--primary-dark);
    font-family: var(--font-mono), var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.18);
}

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-grid + .feature-grid { margin-top: 1.25rem; }

.feature-card {
    padding: 1.75rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--bg-warm);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-subtle);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-card:hover .feature-icon { transform: scale(1.05); }

.feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .hero .container:has(> .hero-content) { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-copy { max-width: 100%; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* (how-it-works removed in favor of credentials band) */

/* ==================== Highlight Section ==================== */
.highlight {
    padding: 5rem 0;
    background: var(--bg-alt);
}

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

.highlight-content h2 {
    font-size: 2.25rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.highlight-content > p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text);
}

.highlight-list svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.highlight-visual {
    display: flex;
    justify-content: center;
}

.highlight-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
}

.highlight-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.highlight-card-header h4 {
    font-size: 0.9375rem;
    color: var(--secondary);
}

.highlight-card-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    background: var(--primary-subtle);
    color: var(--primary-dark);
    border-radius: 2rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item { text-align: center; }

.stat-value {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 80px;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
}

.bar-1 { height: 65%; background: var(--primary-subtle); }
.bar-2 { height: 80%; background: var(--primary-subtle); }
.bar-3 { height: 92%; background: var(--primary); }
.bar-4 { height: 85%; background: var(--primary-subtle); }
.bar-5 { height: 95%; background: var(--primary); }

/* ==================== Value Proposition ==================== */
.value-prop {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.value-prop::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.value-prop-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    flex-wrap: wrap;
}

.value-prop-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-prop-icon svg { width: 32px; height: 32px; }

.value-prop-text h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.375rem;
}

.value-prop-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* ==================== Showcase Sections ==================== */
.showcase {
    padding: 5.5rem 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.showcase-alt {
    background: var(--bg-warm);
}

.showcase-block {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4.5rem;
    align-items: center;
}

.showcase-block-reverse {
    grid-template-columns: 1.15fr 1fr;
}

.showcase-block-reverse .showcase-text {
    order: 2;
}

.showcase-block-reverse .showcase-image {
    order: 1;
}

.showcase-label {
    display: inline-block;
    font-family: var(--font-mono), var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    padding-left: 1.75rem;
    position: relative;
}

.showcase-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--accent);
}

.showcase-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--secondary);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.showcase-text > p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.75rem;
    max-width: 50ch;
}

.showcase-features {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.showcase-features li {
    display: flex;
    gap: 0.875rem;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    color: var(--text);
    border-top: 1px solid var(--border);
}

.showcase-features li:last-child { border-bottom: 1px solid var(--border); }

.showcase-features li::before {
    content: '+';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    font-family: var(--font-mono), var(--font-body);
}

.showcase-features svg {
    display: none;
}

.store-badges {
    display: flex;
    gap: 0.625rem;
    margin-top: 1.5rem;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    border: 1px solid var(--secondary);
    transition: background 0.18s ease, border-color 0.18s ease;
    height: 44px;
}

.store-badge:hover {
    background: #1d2030;
    border-color: #1d2030;
}

.store-badge-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.store-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.store-badge-eyebrow {
    font-size: 0.6875rem;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.02em;
}

.store-badge-store {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
    .store-badges { justify-content: center; }
}

.showcase-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    background: white;
}

.showcase-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Showcase Duo (two screenshots side by side) */
.showcase-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.showcase-duo-item {
    text-align: center;
}

.showcase-duo-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.showcase-duo-item h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.showcase-duo-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 440px;
    margin: 0 auto;
}

/* Showcase Phones (mobile app screenshots) */
.showcase-phones {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: flex-start;
    background: none;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.showcase-phones .phone-screenshot {
    width: 240px;
    height: auto;
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.showcase-phones .phone-screenshot:nth-child(2) {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .showcase-phones .phone-screenshot { width: 160px; }
    .showcase-phones { gap: 1rem; }
}

@media (max-width: 1024px) {
    .showcase-block,
    .showcase-block-reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .showcase-block-reverse .showcase-text { order: 1; }
    .showcase-block-reverse .showcase-image { order: 2; }

    .showcase-text { text-align: center; }
    .showcase-features { align-items: center; }
    .showcase-duo { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .showcase { padding: 3rem 0; }
    .showcase-text h2 { font-size: 1.75rem; }
}

/* ==================== Pricing Section ==================== */
.pricing {
    padding: 6rem 0;
    background: var(--bg-warm);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricing-card {
    max-width: 980px;
    margin: 0 auto;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.pricing-side {
    padding: 2.5rem 2.5rem 2.75rem;
    background: var(--secondary);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-eyebrow {
    font-family: var(--font-mono), var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.5rem;
}

.pricing-amount-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.04em;
    line-height: 1;
}

.pricing-period {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
}

.pricing-minimum {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.pricing-pitch {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

.pricing-side .btn {
    align-self: flex-start;
}

.pricing-body {
    padding: 2.5rem;
}

.pricing-body h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.pricing-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
}

.pricing-features li {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text);
    padding: 0.375rem 0;
}

.pricing-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-features svg { display: none; }

.pricing-note {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .pricing-card { grid-template-columns: 1fr; }
    .pricing-amount { font-size: 3rem; }
    .pricing-features { grid-template-columns: 1fr; }
}

/* ==================== FAQ Section ==================== */
.faq {
    padding: 6rem 0;
    background: var(--bg);
}

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

.faq-aside h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--secondary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
}

.faq-aside p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.faq-aside a,
.faq-aside a:visited {
    color: var(--secondary);
    border-bottom: 1px solid var(--accent);
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 1px;
    transition: color 0.2s;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--rule);
}

.faq-item {
    background: transparent;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 0;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s;
    letter-spacing: -0.01em;
}

.faq-item summary:hover { color: var(--primary); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-family: var(--font-mono), var(--font-body);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, color 0.2s;
}

.faq-item[open] summary::after {
    content: '−';
    color: var(--accent);
}

.faq-answer {
    padding: 0 0 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 64ch;
}

@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ==================== Final CTA ==================== */
.final-cta {
    padding: 7rem 0;
    background: var(--secondary);
    text-align: left;
    position: relative;
    overflow: hidden;
    color: white;
}

.final-cta .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
}

.final-cta-eyebrow {
    font-family: var(--font-mono), var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--volt);
    margin-bottom: 1.5rem;
    display: block;
}

.final-cta h2 {
    font-size: clamp(2rem, 4.5vw, 3.75rem);
    font-weight: 700;
    color: white;
    margin-bottom: 0;
    letter-spacing: -0.035em;
    line-height: 1.0;
    max-width: 14ch;
}

.cta-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.75rem;
    max-width: 38ch;
    line-height: 1.55;
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.section-header.center .cta-buttons { justify-content: center; }

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

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--secondary);
    border-color: white;
}

@media (max-width: 768px) {
    .final-cta .container { grid-template-columns: 1fr; }
}

/* ==================== Footer ==================== */
footer {
    background: #090d0b;
    color: rgba(255,255,255,0.65);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { color: white; margin-bottom: 1rem; }

.footer-brand p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.55);
    max-width: 320px;
    line-height: 1.6;
}

.footer-links h4 {
    color: white;
    font-family: var(--font-mono), var(--font-body);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1.25rem;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.625rem; }

.footer-links a,
.footer-links a:visited {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }

/* ==================== Contact Page ==================== */
.contact-page {
    padding: 10rem 0 4rem;
}

.contact-page .container {
    max-width: 540px;
}

.contact-page h1 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.contact-page > .container > p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.legal-page {
    padding: 12.5rem 0 4rem;
}

.legal-page .container {
    max-width: 780px;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-page p,
.legal-page li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.legal-page ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page li {
    margin-bottom: 0.4rem;
}

.legal-page a,
.legal-page a:visited {
    color: var(--primary);
    text-decoration: underline;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
}

@media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; }
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.2s;
    background: var(--bg-alt);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 90, 67, 0.12);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-message {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius);
    display: none;
    font-weight: 500;
}

.form-message:not(:empty) {
    display: block;
}

.form-message.success {
    background: rgba(21, 128, 61, 0.08);
    color: var(--success-dark);
    border: 1px solid rgba(21, 128, 61, 0.2);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-privacy {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--text-light);
    text-align: center;
}

.form-privacy a,
.form-privacy a:visited {
    color: var(--text-muted);
    text-decoration: underline;
}

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-banner { padding: 0.4rem 0; }
    .top-banner .container { justify-content: center; }
    .top-banner span { display: none; }
    .top-banner a { white-space: nowrap; font-size: 0.8125rem; }
    header { top: 38px; }

    .hero { padding: 7rem 0 3.5rem; }
    .hero h1 { letter-spacing: -0.03em; }
    .hero-subtitle { font-size: 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    nav {
        position: fixed;
        top: 0;
        padding-top: 96px;
        left: 0; right: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        display: none;
        gap: 0.75rem;
        z-index: 999;
    }

    nav.nav-open { display: flex; }

    nav a { font-size: 1rem; }

    .nav-buttons { flex-direction: column; width: 100%; gap: 0.5rem; }
    .nav-buttons .btn { width: 100%; }
    .mobile-menu-btn { display: flex; }

    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
}

/* Blog Index */
.blog-index {
    padding: 10rem 0 4rem;
}
.blog-index h1 {
    font-family: 'Satoshi', var(--font-system);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}
.blog-index-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}
.blog-empty {
    color: var(--text-muted);
    text-align: center;
    padding: 4rem 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.blog-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-content {
    padding: 1.5rem;
}
.blog-card-date {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: block;
}
.blog-card-content h2 {
    font-family: 'Satoshi', var(--font-system);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.blog-card-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Blog Post */
.blog-post {
    padding: 10rem 0 4rem;
}
.blog-post .container {
    max-width: 800px;
}
.blog-post-header {
    margin-bottom: 2rem;
}
.blog-post-date {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.75rem;
}
.blog-post-header h1 {
    font-family: 'Satoshi', var(--font-system);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.blog-post-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.blog-post-author {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}
.blog-post-image {
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.blog-post-image img {
    width: 100%;
    height: auto;
}
.blog-post-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text);
    padding-bottom: 3rem;
}
.blog-post-content h2 {
    font-family: 'Satoshi', var(--font-system);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.blog-post-content h3 {
    font-family: 'Satoshi', var(--font-system);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.blog-post-content p {
    margin-bottom: 1.25rem;
}
.blog-post-content ul, .blog-post-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}
.blog-post-content li {
    margin-bottom: 0.5rem;
}
.blog-post-content blockquote {
    border-left: 3px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--bg-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text-muted);
}
.blog-post-content code {
    background: var(--bg-alt);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
}
.blog-post-content pre {
    background: var(--bg-dark);
    color: #e2e8f0;
    padding: 1.25rem;
    border-radius: var(--radius);
    overflow-x: auto;
    margin-bottom: 1.5rem;
}
.blog-post-content pre code {
    background: none;
    padding: 0;
}
.blog-post-content hr {
    margin: 3rem 0;
}
.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .blog-post-header h1 { font-size: 1.75rem; }
    .blog-index h1 { font-size: 2rem; }
    .blog-grid { grid-template-columns: 1fr; }
}
