/* FlatGrabber Vercel-Inspired Stark Theme System */
:root {
    --bg-dark: #171717;
    --primary: #171717;
    --on-primary: #ffffff;
    --ink: #171717;
    --body-text: #4d4d4d;
    --mute-text: #888888;
    --hairline: #ebebeb;
    --hairline-strong: #a1a1a1;
    --canvas: #ffffff;
    --canvas-soft: #fafafa;
    --canvas-soft-2: #f5f5f5;
    
    --link-blue: #0070f3;
    --link-deep: #0761d1;
    --link-bg-soft: #d3e5ff;
    
    --primary-cyan: #17D1C6;
    
    /* Vercel-style atmospheric stacked shadows */
    --shadow-level-1: 0px 1px 1px rgba(0, 0, 0, 0.02);
    --shadow-level-2: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 2px 2px rgba(0, 0, 0, 0.04);
    --shadow-level-3: 0px 2px 2px rgba(0, 0, 0, 0.04), 0px 8px 8px -8px rgba(0, 0, 0, 0.04);
    --shadow-level-4: 0px 2px 2px rgba(0, 0, 0, 0.04), 0px 8px 16px -4px rgba(0, 0, 0, 0.05);
    --shadow-level-5: 0px 1px 1px rgba(0, 0, 0, 0.02), 0px 8px 16px -4px rgba(0, 0, 0, 0.05), 0px 24px 32px -8px rgba(0, 0, 0, 0.06);
}

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

body {
    background-color: var(--canvas-soft);
    color: var(--ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-feature-settings: "ss01", "ss02"; /* Enables geometric alternate shapes */
    line-height: 1.6;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
header {
    border-bottom: 1px solid var(--hairline);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    height: 64px;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--ink);
}

.logo-wrap img {
    width: 28px;
    height: 28px;
    border-radius: 4px;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--ink);
}

.nav-links {
    display: flex;
    gap: 16px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--body-text);
    font-size: 13.5px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--ink);
    background: var(--canvas-soft-2);
}

.btn-github {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--canvas);
    border: 1px solid var(--hairline);
    color: var(--ink);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-level-1);
}

.btn-github:hover {
    background: var(--canvas-soft);
    border-color: var(--hairline-strong);
    transform: translateY(-0.5px);
}

/* Atmospheric Hero Mesh Gradient System */
.hero-mesh-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-mesh-bg {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 1200px;
    height: 520px;
    z-index: 1;
    opacity: 0.14;
    filter: blur(70px);
    pointer-events: none;
    background: radial-gradient(circle at 10% 20%, #007cf0 0%, transparent 40%),
                radial-gradient(circle at 90% 15%, #00dfd8 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, #7928ca 0%, transparent 45%),
                radial-gradient(circle at 30% 80%, #ff0080 0%, transparent 35%),
                radial-gradient(circle at 70% 80%, #f9cb28 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Landing Hero layout */
.hero {
    padding: 96px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--canvas);
    border: 1px solid var(--hairline);
    padding: 6px 12px;
    border-radius: 9999px;
    color: var(--body-text);
    font-family: monospace;
    font-size: 11.5px;
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: var(--shadow-level-1);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-indigo);
    border-radius: 50%;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--ink);
    text-transform: none;
}

.hero-title span {
    background: linear-gradient(90deg, #007cf0 0%, #00dfd8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 16.5px;
    color: var(--body-text);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Custom Vercel inspired buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    border: none;
    color: var(--on-primary);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: #000000;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--canvas);
    border: 1px solid var(--hairline);
    color: var(--ink);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-level-1);
}

.btn-secondary:hover {
    background: var(--canvas-soft);
    border-color: var(--hairline-strong);
    transform: translateY(-0.5px);
}

/* Stark Canvas Simulator Box */
.mock-container {
    position: relative;
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-level-4);
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--hairline);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.mock-dots {
    display: flex;
    gap: 6px;
}

.mock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hairline);
}

.mock-dot.active {
    background: var(--ink);
}

.mock-title {
    font-family: monospace;
    font-size: 11px;
    color: var(--mute-text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mock-canvas-wrap {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 8px;
    background-color: var(--canvas-soft-2);
    min-height: 240px;
    border: 1px solid var(--hairline);
}

.mock-canvas-area {
    width: 140px;
    height: 140px;
    border: 1px dashed var(--hairline-strong);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: 
        linear-gradient(45deg, #ffffff 25%, transparent 25%),
        linear-gradient(-45deg, #ffffff 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #ffffff 75%),
        linear-gradient(-45deg, transparent 75%, #ffffff 75%);
    background-size: 16px 16px;
    background-position: 0 0, 0 8px, 8px -8px, -8px 0px;
    position: relative;
}

.editor-icon-vector {
    width: 64px;
    height: 64px;
    color: var(--ink);
    transition: all 0.3s ease;
}

.mock-grab-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--primary);
    border: none;
    color: var(--on-primary);
    font-weight: 600;
    font-size: 10px;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
    opacity: 0;
    transform: translate(0, -3px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mock-grab-badge.show {
    display: block;
    opacity: 1;
    transform: translate(0, 0);
}

.mock-grab-badge:hover {
    background: #000000;
    transform: scale(1.03);
}

/* Simulator Sliding Panel */
.simulator-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--canvas);
    border-left: 1px solid var(--hairline);
    transform: translate(100%, 0);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.simulator-panel.open {
    transform: translate(0, 0);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--hairline);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.panel-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 6px;
}

.panel-preview-area {
    flex-grow: 1;
    border: 1px solid var(--hairline);
    border-radius: 6px;
    background-color: var(--canvas-soft-2);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: 
        linear-gradient(45deg, #ffffff 25%, transparent 25%),
        linear-gradient(-45deg, #ffffff 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #ffffff 75%),
        linear-gradient(-45deg, transparent 75%, #ffffff 75%);
    background-size: 16px 16px;
    background-position: 0 0, 0 8px, 8px -8px, -8px 0px;
}

.panel-code-box {
    background: var(--canvas-soft-2);
    border: 1px solid var(--hairline);
    border-radius: 4px;
    padding: 10px;
    font-family: monospace;
    font-size: 10px;
    color: var(--body-text);
    height: 60px;
    overflow-y: auto;
    margin-bottom: 12px;
    white-space: pre-wrap;
    word-break: break-all;
    text-align: left;
}

.panel-btn-copy {
    background: var(--primary);
    border: none;
    color: var(--on-primary);
    font-size: 12px;
    font-weight: 500;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
}

.panel-btn-copy:hover {
    background: #000000;
}

.simulator-cta-area {
    margin-top: 14px;
    text-align: center;
}

.btn-sim-trigger {
    background: var(--canvas);
    border: 1px solid var(--hairline-strong);
    color: var(--ink);
    font-size: 11px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-level-1);
}

.btn-sim-trigger:hover {
    background: var(--canvas-soft-2);
    border-color: var(--ink);
}

.btn-sim-reset {
    background: none;
    border: none;
    color: var(--mute-text);
    font-size: 10px;
    cursor: pointer;
    text-decoration: underline;
    display: none;
}

.btn-sim-reset.show {
    display: inline-block;
}

.sim-toast {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translate(-50%, 0);
    background: var(--primary);
    color: var(--on-primary);
    font-size: 11px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 4px;
    box-shadow: var(--shadow-level-3);
    transition: bottom 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 20;
}

.sim-toast.show {
    bottom: 12px;
}

/* Feature Grid Styling */
.section-title {
    text-align: center;
    margin-bottom: 56px;
}

.section-title h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1.28px;
    margin-bottom: 12px;
    color: var(--ink);
}

.section-title p {
    color: var(--body-text);
    font-size: 15.5px;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 96px;
}

.feature-card {
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-level-2);
}

.feature-card:hover {
    border-color: var(--hairline-strong);
    box-shadow: var(--shadow-level-3);
    transform: translateY(-1px);
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: var(--canvas-soft-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    margin-bottom: 4px;
    border: 1px solid var(--hairline);
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.5px;
}

.feature-card p {
    font-size: 13.5px;
    color: var(--body-text);
    line-height: 1.6;
}

/* Polarity Flipped Section (Unlocking Timeline) */
.timeline-section {
    background: var(--primary);
    color: var(--on-primary);
    padding: 96px 0;
    margin-bottom: 96px;
    position: relative;
}

.timeline-section h2 {
    color: #ffffff !important;
}

.timeline-section p {
    color: #a1a1a1 !important;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.timeline-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.timeline-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    margin: 0 auto 16px;
}

.timeline-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.timeline-item p {
    font-size: 12.5px;
    color: #888888 !important;
}

/* FAQ Accordion Styling */
.faq-section {
    padding-bottom: 96px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-level-2);
}

.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink);
    font-family: 'Outfit', sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-question-btn svg {
    transition: transform 0.2s ease;
    color: var(--mute-text);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out;
    background: var(--canvas-soft);
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 13.5px;
    color: var(--body-text);
    line-height: 1.7;
}

.faq-item.active {
    border-color: var(--hairline-strong);
}

.faq-item.active .faq-question-btn svg {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Multipage Documentation Layout */
.doc-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    padding: 64px 0;
}

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

.doc-sidebar {
    position: sticky;
    top: 96px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.doc-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.doc-nav-item button {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 8px 16px;
    border-radius: 6px;
    color: var(--body-text);
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.doc-nav-item button:hover {
    color: var(--ink);
    background: var(--canvas-soft-2);
}

.doc-nav-item.active button {
    color: var(--ink);
    background: var(--canvas);
    border: 1px solid var(--hairline);
    box-shadow: var(--shadow-level-1);
    font-weight: 600;
}

.doc-content-wrap {
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-level-3);
}

@media (max-width: 580px) {
    .doc-content-wrap {
        padding: 24px;
    }
}

.doc-tab-panel {
    display: none;
    flex-direction: column;
    gap: 24px;
}

.doc-tab-panel.active {
    display: flex;
}

.doc-tab-panel h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -1.28px;
    color: var(--ink);
    border-bottom: 1px solid var(--hairline);
    padding-bottom: 12px;
}

.doc-tab-panel h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    margin-top: 12px;
}

.doc-tab-panel p {
    font-size: 14.5px;
    color: var(--body-text);
    line-height: 1.7;
}

.doc-code-block {
    background: var(--canvas-soft-2);
    border: 1px solid var(--hairline);
    border-radius: 6px;
    padding: 16px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12.5px;
    color: var(--ink);
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-all;
}

.doc-shortcut-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
}

.doc-shortcut-table th, .doc-shortcut-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--hairline);
}

.doc-shortcut-table th {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    background: var(--canvas-soft-2);
}

.doc-shortcut-table td {
    font-size: 13px;
    color: var(--body-text);
}

.doc-shortcut-table td kbd {
    background: var(--canvas-soft-2);
    border: 1px solid var(--hairline-strong);
    border-radius: 4px;
    padding: 3px 6px;
    font-family: sans-serif;
    font-size: 11px;
    color: var(--ink);
    box-shadow: 0 1px 0 rgba(0,0,0,0.15);
}

/* Privacy & Legal Content Formatting */
.legal-wrap {
    max-width: 800px;
    margin: 64px auto;
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: 12px;
    padding: 48px;
    box-shadow: var(--shadow-level-3);
}

@media (max-width: 580px) {
    .legal-wrap {
        padding: 24px;
    }
}

.legal-header {
    border-bottom: 1px solid var(--hairline);
    padding-bottom: 24px;
    margin-bottom: 32px;
}

.legal-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1.28px;
    color: var(--ink);
}

.legal-header p {
    font-size: 12.5px;
    color: var(--mute-text);
    margin-top: 6px;
}

.legal-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.legal-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
}

.legal-section p {
    font-size: 14px;
    color: var(--body-text);
    line-height: 1.7;
}

.legal-section ul {
    list-style: square;
    padding-left: 20px;
    font-size: 14px;
    color: var(--body-text);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-section a {
    color: var(--link-blue);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Changelog Elements */
.changelog-wrap {
    max-width: 800px;
    margin: 64px auto;
}

.changelog-header {
    text-align: center;
    margin-bottom: 48px;
}

.changelog-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1.28px;
    color: var(--ink);
}

.changelog-header p {
    color: var(--body-text);
    font-size: 15px;
    margin-top: 8px;
}

.changelog-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

.changelog-list::after {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    width: 1px;
    height: 100%;
    background: var(--hairline);
    z-index: 1;
}

.changelog-item {
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: 12px;
    padding: 24px 24px 24px 60px;
    position: relative;
    z-index: 2;
    transition: border-color 0.2s ease;
    box-shadow: var(--shadow-level-2);
}

.changelog-item:hover {
    border-color: var(--hairline-strong);
}

.changelog-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--canvas);
    border: 2.5px solid var(--ink);
    position: absolute;
    left: 19px;
    top: 30px;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

.changelog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.changelog-version {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
}

.changelog-date {
    font-size: 12px;
    color: var(--body-text);
    background: var(--canvas-soft-2);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid var(--hairline);
}

.changelog-tag {
    font-size: 9.5px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.changelog-tag.latest {
    background: #e0f2fe;
    color: #0369a1;
}

.changelog-tag.stable {
    background: var(--canvas-soft-2);
    color: var(--body-text);
    border: 1px solid var(--hairline);
}

.changelog-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.changelog-body p {
    font-size: 14px;
    color: var(--body-text);
}

.changelog-body h4 {
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--ink);
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.changelog-body ul {
    list-style: circle;
    padding-left: 18px;
    font-size: 13px;
    color: var(--body-text);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Footer Styling */
footer {
    border-top: 1px solid var(--hairline);
    padding: 48px 0;
    text-align: center;
    font-size: 13px;
    color: var(--body-text);
    background: var(--canvas);
}

footer a {
    color: var(--link-blue);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--ink);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.footer-logo img {
    width: 24px;
    height: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin-top: 16px;
    font-size: 12.5px;
}
