/* Design tokens */
:root {
        /* Firefly animation colors (light) - subtle red tones */
        --firefly-color: rgba(220, 38, 38, 0.5);
        --firefly-highlight: rgba(248, 113, 113, 0.8);
        --firefly-shadow: rgba(153, 27, 27, 0.3);
        --firefly-glow: rgba(220, 38, 38, 0.35);
        --firefly-pulse-min: 0.3;
        --firefly-pulse-max: 0.7;
    --bg: #f6f8fa;
    --bg-elev: rgba(255, 255, 255, 0.7);
    --text: #24292f;
    --text-muted: #57606a;
    --border: #d0d7de;
    --accent: #ff3b30; /* iOS red */
    --accent-pressed: #d8342a;
    --accent-glow: rgba(255, 59, 48, 0.15);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 20px var(--accent-glow);
    --blur-sm: saturate(180%) blur(10px);
    
    /* Gradient and effect colors for light mode */
    --gradient-start: rgba(255, 59, 48, 0.1);
    --gradient-mid: rgba(255, 59, 48, 0.05);
    --gradient-end: transparent;
    --fade-start: rgba(246, 248, 250, 0);
    --fade-end: rgba(246, 248, 250, 1);
    --hero-gradient-start: rgba(255, 59, 48, 0.1);
    --hero-gradient-mid: rgba(255, 59, 48, 0.05);
    --accent-bg-light: rgba(255, 59, 48, 0.03);
    --accent-bg-medium: rgba(255, 59, 48, 0.08);
    --accent-bg-hover: rgba(255, 59, 48, 0.1);
    --accent-border: rgba(255, 59, 48, 0.3);
    --accent-shadow: rgba(255, 59, 48, 0.15);
    --header-bg: rgba(246, 248, 250, 0.7);
    --widget-header-bg: rgba(255, 255, 255, 0.6);
}

/* Dark mode tokens */
[data-theme="dark"] {
            /* Firefly animation colors (dark) - bright light red */
            --firefly-color: rgba(252, 165, 165, 0.7);
            --firefly-highlight: rgba(254, 202, 202, 0.95);
            --firefly-shadow: rgba(220, 38, 38, 0.5);
            --firefly-glow: rgba(252, 165, 165, 0.8);
            --firefly-pulse-min: 0.4;
            --firefly-pulse-max: 0.9;
        --blur-sm: saturate(180%) blur(12px);
    --bg: #0d1117;
    --bg-elev: rgba(22, 27, 34, 0.9);
    --text: #e6edf3;
    --text-muted: #8b949e;
    --border: #30363d;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    
    /* Dark mode gradient and effect colors */
    --gradient-start: rgba(255, 107, 107, 0.15);
    --gradient-mid: rgba(255, 107, 107, 0.08);
    --gradient-end: transparent;
    --fade-start: rgba(13, 17, 23, 0);
    --fade-end: rgba(13, 17, 23, 1);
    --hero-gradient-start: rgba(255, 107, 107, 0.12);
    --hero-gradient-mid: rgba(255, 107, 107, 0.06);
    --accent-bg-light: rgba(255, 107, 107, 0.08);
    --accent-bg-medium: rgba(255, 107, 107, 0.15);
    --accent-bg-hover: rgba(255, 107, 107, 0.18);
    --accent-border: rgba(255, 107, 107, 0.4);
    --accent-shadow: rgba(255, 107, 107, 0.25);
    --header-bg: rgba(13, 17, 23, 0.5);
    --widget-header-bg: rgba(22, 27, 34, 0.6);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
}

/* Fireflies Canvas (removed) */

.container {
    position: relative;
    z-index: 1;
    max-width: 1040px;
    margin: 0 auto;
    padding: 24px 20px 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Padding para páginas internas (no index) */
.container.with-header-spacing {
    padding-top: 120px;
}

header {
    text-align: center;
    margin-bottom: 8px;
    animation: fadeInDown 0.6s ease;
}

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

h1 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    animation: fadeIn 0.8s ease 0.2s backwards;
}

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

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* breadcrumb removed */

main {
    flex: 1;
}

.site-header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translate(-50%, 0);
    width: calc(100% - 40px);
    max-width: 1000px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--header-bg);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    animation: slideDown 0.5s ease;
    will-change: transform, opacity, filter, box-shadow;
}
.site-header.header-hidden {
    transform: translate(-50%, -280%);
    opacity: 0;
    filter: blur(8px);
    pointer-events: none;
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    background: var(--header-bg);
}

@keyframes slideDown {
    from {
        transform: translate(-50%, -150px);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.brand {
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: color 220ms ease, transform 220ms ease;
}
.brand:hover {
    color: var(--accent);
    transform: scale(1.05);
}

.site-nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Settings Menu */
.settings-menu {
    position: relative;
}
.settings-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    background: var(--bg-elev);
    border-radius: 10px;
    color: var(--text);
    cursor: pointer;
    transition: all 220ms ease;
}
.settings-toggle:hover {
    background: var(--bg);
    transform: rotate(45deg);
}
.settings-toggle svg {
    width: 18px;
    height: 18px;
}
.settings-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 12px;
    display: none;
    min-width: 200px;
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
}
.settings-dropdown.open {
    display: block;
    animation: fadeInScale 0.2s ease;
}
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-5px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.settings-section {
    margin-bottom: 12px;
}
.settings-section:last-child {
    margin-bottom: 0;
}
.settings-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.settings-divider {
    height: 1px;
    background: var(--border);
    margin: 12px 0;
}

/* Theme Options */
.theme-options {
    display: flex;
    gap: 6px;
}
.theme-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    border-radius: 8px;
    cursor: pointer;
    transition: all 200ms ease;
    font-size: 0.85rem;
}
.theme-btn:hover {
    background: var(--bg);
    border-color: var(--accent);
}
.theme-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}
.theme-btn svg {
    width: 14px;
    height: 14px;
}

/* Language Options */
.lang-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Animation Options */
.fx-options {
    display: flex;
    gap: 6px;
}
.fx-btn {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    border-radius: 8px;
    cursor: pointer;
    transition: all 200ms ease;
    font-size: 0.85rem;
}
.fx-btn:hover {
    background: var(--bg);
    border-color: var(--accent);
}
.fx-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}
.lang-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text);
    border-radius: 8px;
    cursor: pointer;
    transition: all 200ms ease;
    font-size: 0.9rem;
}
.lang-btn:hover {
    background: var(--bg);
}
.lang-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.site-nav a {
    position: relative;
    color: var(--text);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav a svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: transparent;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), background 220ms ease;
}

.site-nav a:hover {
    color: var(--accent);
        background: var(--accent-bg-light);
}

.site-nav a:hover::after {
    background: var(--accent);
    transform: scaleX(1);
}

.site-nav a.active {
    color: var(--accent);
}

.site-nav a.active::after {
    background: var(--accent);
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .site-nav a span {
        display: none;
    }
    .site-nav a {
        padding: 10px;
        justify-content: center;
    }
    .site-nav a::after {
        left: 8px;
        right: 8px;
    }
}

.grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

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

.intro {
    text-align: center;
    margin-bottom: 32px;
    padding: 0 20px;
}

.intro p {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 720px;
    margin: 0 auto 16px;
}

.intro-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
}

.intro-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.intro-actions .btn {
    padding: 10px 16px;
}

.intro-points {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-muted);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 6px;
    margin-top: 4px;
}

.policies {
    margin-bottom: 50px;
}

.policies h2 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.policy-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 640px) {
    .policy-links {
        grid-template-columns: 1fr 1fr;
    }
}

.policy-link {
    display: block;
    padding: 22px;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    transition: all 320ms cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
    animation: scaleIn 0.5s ease backwards;
}
.policy-link:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    border-color: var(--accent);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.policy-links .policy-link:nth-child(1) {
    animation-delay: 0.1s;
}
.policy-links .policy-link:nth-child(2) {
    animation-delay: 0.2s;
}

.policy-link h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 6px;
    font-weight: 600;
}

.policy-link p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.document {
    background: var(--bg-elev);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

/* Back to top control */
.back-to-top {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--header-bg);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
    box-shadow: var(--shadow-md);
    color: var(--text);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
    z-index: 12;
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.back-to-top:hover {
    background: var(--bg-elev);
    color: var(--accent);
}

.document section {
    margin-bottom: 35px;
}

.document h2 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 12px;
    font-weight: 600;
}

.document p {
    margin-bottom: 14px;
    color: var(--text);
}

.document ul {
    margin-left: 22px;
    margin-bottom: 14px;
}

.document li {
    margin-bottom: 8px;
}

.document strong {
    color: var(--text);
    font-weight: 600;
}

.contact-section {
    margin: 24px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-section p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 24px;
}

.discord-button {
    display: inline-block;
    padding: 12px 20px;
    background-color: var(--accent);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 12px;
        box-shadow: 0 6px 16px var(--accent-shadow);
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}
.discord-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.discord-button:hover::before {
    width: 300px;
    height: 300px;
}
.discord-button:hover {
    background-color: var(--accent-pressed);
        box-shadow: 0 8px 20px var(--accent-shadow), var(--shadow-glow);
    transform: translateY(-2px) scale(1.02);
}
.discord-button:active {
    transform: translateY(0) scale(0.98);
}

.discord-widget {
    max-width: 380px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    margin-top: auto;
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer p {
    margin: 5px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}
.footer-link {
    color: var(--text-muted);
    text-decoration: none;
}
.footer-link:hover {
    text-decoration: underline;
}
.dot-sep {
    color: var(--border);
}

/* reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 520ms cubic-bezier(0.4, 0, 0.2, 1), transform 520ms cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .container {
        padding: 20px 16px 36px;
    }
    h1 {
        font-size: 1.8rem;
    }
    .document {
        padding: 22px 16px;
    }
    .policy-link {
        padding: 18px;
    }
    .document p {
        text-align: left;
    }
    .site-header {
        padding: 10px 12px;
        flex-wrap: wrap;
        gap: 10px;
    }
    .site-nav {
        gap: 4px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }
    .document {
        padding: 18px 14px;
    }
    .document h2 {
        font-size: 1.05rem;
    }
    .container {
        padding: 16px 12px 32px;
    }
    .site-header {
        padding: 8px 10px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* User disabled animations */
[data-fx="off"] * {
    animation: none !important;
    transition: none !important;
}

/* =====================   Products page styles
   ===================== */

/* =====================   FAQ styles
    ===================== */
.faq {
    margin-top: 24px;
}
.faq h2 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
}
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}
.faq-list details {
    border: 1px solid var(--border);
    background: var(--bg-elev);
    border-radius: 12px;
    padding: 10px 12px;
    transition: all 220ms ease;
}
.faq-list details[open] {
    box-shadow: var(--shadow-sm);
}
.faq-list summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: var(--text);
}
.faq-list summary::-webkit-details-marker {
    display: none;
}
.faq-list p {
    margin-top: 8px;
    color: var(--text-muted);
}
.products-empty {
    text-align: center;
    padding: 48px 20px;
}
.empty-state {
    max-width: 480px;
    margin: 0 auto;
}
.empty-icon {
    color: var(--text-muted);
    margin-bottom: 16px;
    opacity: 0.4;
}
.empty-state h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text);
}
.empty-state p {
    color: var(--text-muted);
    margin-bottom: 6px;
}
.empty-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.products-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.category {
    animation: scaleIn 0.5s ease backwards;
}
.category:nth-child(1) {
    animation-delay: 0.1s;
}
.category:nth-child(2) {
    animation-delay: 0.2s;
}

.category h2 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
    transition: all 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 0 24px var(--accent-bg-medium);
    border-color: var(--accent);
}

.product-card.coming-soon {
    opacity: 0.85;
}

.product-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
        background: var(--accent-bg-hover);
    border-radius: 12px;
    margin-bottom: 16px;
    color: var(--accent);
}

.product-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.product-card h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 10px;
    font-weight: 600;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
    flex-grow: 1;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px var(--accent-shadow);
}

/* Privacy index cards */
.policy-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 14px;
}
.policy-card {
    display: block;
    padding: 16px 18px;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--text);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.policy-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.policy-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
}
.policy-eyebrow {
    font-size: 0.95rem;
    color: var(--text);
}
.policy-chevron {
    color: var(--accent);
    font-weight: 700;
}
.policy-card p {
    color: var(--text-muted);
    line-height: 1.5;
}

.product-link:hover {
    background: var(--accent-pressed);
        box-shadow: 0 6px 16px var(--accent-shadow);
    transform: translateY(-2px);
}

.product-link:disabled,
.product-link[disabled] {
    background: var(--border);
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 1;
    box-shadow: none;
}

.product-link:disabled:hover,
.product-link[disabled]:hover {
    transform: none;
    box-shadow: none;
}

.product-link svg {
    width: 16px;
    height: 16px;
}

.coming-soon-badge {
    display: inline-block;
    padding: 6px 12px;
        background: var(--accent-bg-hover);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
}

/* Products Index */
.products-index {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
    transition: all 320ms cubic-bezier(0.4, 0, 0.2, 1);
    animation: scaleIn 0.5s ease backwards;
}

.category-card:nth-child(1) {
    animation-delay: 0.1s;
}
.category-card:nth-child(2) {
    animation-delay: 0.2s;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    border-color: var(--accent);
}

.category-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 59, 48, 0.1);
    border-radius: 16px;
    margin-bottom: 20px;
    color: var(--accent);
}

.category-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.category-card h2 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 10px;
    font-weight: 600;
}

.category-card > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px var(--accent-shadow);
}

.category-link:hover {
    background: var(--accent-pressed);
        box-shadow: 0 6px 16px var(--accent-shadow);
    transform: translateY(-2px);
}

.category-link svg {
    width: 18px;
    height: 18px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 220ms ease;
}

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

/* Product List Page */
.products-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 24px;
}

.product-card.large {
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.product-card.large h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.product-card.large > p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.product-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px !important;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.product-description {
    text-align: left;
    margin-bottom: 24px;
    padding: 20px 0;
    color: var(--text);
}

.product-description p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text);
}

.product-description h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.product-description h4 {
    font-size: 0.95rem;
    color: var(--text);
    margin-top: 16px;
    margin-bottom: 8px;
    font-weight: 600;
    opacity: 0.9;
}

.product-description ul {
    list-style: none;
    margin: 0 0 16px 0;
    padding: 0;
}

.product-description li {
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
    color: var(--text);
    line-height: 1.6;
}

.product-description li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.product-author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 0.95rem;
}

.author-label {
    color: var(--text-muted);
    font-weight: 500;
}

.author-name {
    color: var(--accent);
    font-weight: 600;
}

.product-details {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-bg-hover);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid var(--accent-border);
}

.coming-soon-section {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.coming-soon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 400px;
    padding: 40px 24px;
    background: linear-gradient(135deg, var(--gradient-mid), var(--accent-bg-light));
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
}

.coming-soon-card h2 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 12px;
    font-weight: 600;
}

.coming-soon-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* =====================     Contact page styles
     ===================== */
.contact-hero {
    text-align: center;
    margin: 8px 0 8px;
}
.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-elev);
    backdrop-filter: var(--blur-sm);
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 0.2px;
}
.lead {
    max-width: 780px;
    margin: 12px auto 0;
    color: var(--text);
    font-size: 1.05rem;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    align-items: start;
}
@media (max-width: 980px) {
    .contact-wrap {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
    padding: 24px;
    transition: all 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-card h2 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}
.contact-list {
    margin: 10px 0 16px 20px;
    color: var(--text);
}
.contact-list li {
    margin: 6px 0;
}
.cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 6px 0 10px;
}

.btn-ghost {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid var(--accent);
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.btn-ghost::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-bg-hover), transparent);
    transition: left 0.5s ease;
}
.btn-ghost:hover::before {
    left: 100%;
}
.btn-ghost:hover {
    background: var(--accent-bg-medium);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--accent-shadow);
}
.fine-print {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 6px;
}

.widget-card {
    padding: 0;
    overflow: hidden;
}
.widget-shell {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-elev);
    box-shadow: var(--shadow-sm);
}
.widget-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    background: var(--widget-header-bg);
    backdrop-filter: var(--blur-sm);
}
.widget-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5da;
    display: inline-block;
}
.widget-header .dot:nth-child(1) {
    background: #ff5f57;
}
.widget-header .dot:nth-child(2) {
    background: #febc2e;
}
.widget-header .dot:nth-child(3) {
    background: #28c840;
}
.widget-title {
    margin-left: 6px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.widget-body {
    position: relative;
}
.widget-iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: 0;
}
.widget-placeholder {
    display: none;
    padding: 18px;
    text-align: center;
}
@media (max-width: 600px) {
    /* Phone: show placeholder and hide heavy embed */
    .widget-placeholder {
        display: block;
    }
    .widget-iframe {
        display: none;
    }
    /* Phone: stack grids to single column */
    .products-index {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .products-list {
        grid-template-columns: 1fr;
    }
    .members-grid {
        grid-template-columns: 1fr;
    }
    /* Phone: tighten card paddings */
    .category-card,
    .product-card,
    .card {
        padding: 18px;
    }
    /* Phone: make primary actions full-width */
    .discord-button {
        width: 100%;
    }
    /* Phone: disable downloads */
    a[download],
    a[href*=".jar"],
    a[href*="/downloads/"] {
        pointer-events: none;
        opacity: 0.5;
        position: relative;
    }
    a[download]::after,
    a[href*=".jar"]::after,
    a[href*="/downloads/"]::after {
        content: "Downloads disabled on mobile";
        position: absolute;
        bottom: -24px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.75rem;
        color: var(--text-muted);
        white-space: nowrap;
    }
}

/* =====================   Organization members styles
   ===================== */
.org-members {
    margin-top: 16px;
}
.org-members-title {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 16px;
    font-weight: 600;
    text-align: center;
}
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    align-items: start;
}
.member-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    animation: fadeIn 0.4s ease backwards;
    scroll-margin-top: 120px;
}
.member-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.member-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: rgba(255, 59, 48, 0.1);
    flex: 0 0 auto;
}
.member-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.member-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.2px;
}
.member-role {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* =====================   Home Page Styles
   ===================== */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0;
}

.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 140px;
    background: linear-gradient(180deg, var(--fade-start) 0%, var(--fade-end) 75%);
    pointer-events: none;
}

.hero-fade {
    height: 80px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: linear-gradient(180deg, var(--fade-start) 0%, var(--fade-end) 70%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-mid) 50%, var(--gradient-end) 100%);
    z-index: 0;
}

/* Firefly background layer */
.firefly-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.firefly {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--firefly-highlight) 0%, var(--firefly-color) 30%, transparent 70%);
    box-shadow: 
        0 0 6px var(--firefly-glow),
        0 0 12px var(--firefly-glow),
        0 0 18px var(--firefly-color),
        inset 0 0 4px var(--firefly-highlight);
    will-change: transform, opacity;
    animation: fireflyFloat 25s ease-in-out infinite;
    filter: blur(0.5px) brightness(1.3);
}

@keyframes fireflyFloat {
    0% {
        transform: translate(var(--start-x, 0), var(--start-y, 0)) scale(0);
        opacity: 0;
    }
    15% {
        opacity: var(--firefly-pulse-max);
        transform: translate(var(--start-x, 0), var(--start-y, 0)) scale(1);
    }
    30% {
        opacity: var(--firefly-pulse-min);
    }
    45% {
        opacity: var(--firefly-pulse-max);
    }
    60% {
        opacity: var(--firefly-pulse-min);
    }
    75% {
        opacity: var(--firefly-pulse-max);
    }
    85% {
        opacity: var(--firefly-pulse-max);
        transform: translate(var(--end-x, 0), var(--end-y, 0)) scale(1);
    }
    100% {
        transform: translate(var(--end-x, 0), var(--end-y, 0)) scale(0);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease;
}

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

.hero-section h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 59, 48, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: rgba(255, 59, 48, 0.05);
    transform: translateY(-2px);
}

/* Content Grid - FAQ and Timeline side by side */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
    align-items: start;
}

.faq {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: var(--blur-sm);
    box-shadow: var(--shadow-sm);
    margin-top: 0;
}

.faq h2,
.timeline h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: var(--text);
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-list details {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--bg-elev);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-list details:hover {
    border-color: var(--accent);
    background: rgba(255, 59, 48, 0.03);
    box-shadow: 0 8px 20px rgba(255, 59, 48, 0.08);
}

.faq-list details summary {
    font-weight: 600;
    color: var(--text);
    list-style: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-list details summary::-webkit-details-marker {
    display: none;
}

.faq-list details summary i {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.faq-list details p {
    margin-top: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    padding-left: 28px;
}

/* Timeline */
.timeline {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: var(--blur-sm);
    box-shadow: var(--shadow-sm);
    margin-top: 0;
}

.timeline-container {
    position: relative;
}

.timeline-container::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-border) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 32px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    border: 4px solid var(--bg);
    box-shadow: 0 0 0 2px var(--accent);
}

.timeline-content {
    background: var(--accent-bg-light);
    border-left: 3px solid var(--accent);
    padding: 16px;
    border-radius: 8px;
}

.timeline-date {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.timeline-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Technologies Section */
.technologies {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    backdrop-filter: var(--blur-sm);
    box-shadow: var(--shadow-sm);
    margin-bottom: 48px;
}

.technologies h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text);
    text-align: center;
}

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

.tech-card {
    background: rgba(255, 59, 48, 0.03);
    border: 1px solid rgba(255, 59, 48, 0.15);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 59, 48, 0.15);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
}

.tech-icon i {
    width: 32px;
    height: 32px;
}

.tech-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text);
}

.tech-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq,
    .timeline {
        padding: 24px;
    }

    .technologies {
        padding: 32px 20px;
    }

    .hero-section {
        min-height: 70vh;
        height: auto;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .site-header {
        top: 12px;
        width: calc(100% - 24px);
        padding: 10px 12px;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .brand {
        font-size: 1rem;
        white-space: nowrap;
    }

    .site-nav {
        display: flex;
        gap: 6px;
        flex: 1;
        justify-content: flex-start;
        min-width: 0;
    }

    .site-nav a {
        padding: 8px;
        justify-content: center;
        min-width: 40px;
    }

    .site-nav a span {
        display: none;
    }

    .header-actions {
        flex: 0 0 auto;
        justify-content: flex-end;
        white-space: nowrap;
    }

    .lang-current {
        padding: 8px 10px;
        gap: 4px;
    }

    .hero-section {
        min-height: 100vh;
        height: 100vh;
        padding: 20px;
    }

    .hero-section::after {
        height: 100px;
    }

    .hero-fade {
        height: 60px;
    }

    .hero-content {
        padding: 20px 0;
    }

    .hero-section h1 {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        gap: 12px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq,
    .timeline {
        padding: 20px;
    }

    .faq h2,
    .timeline h2 {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }

    .faq-list {
        gap: 8px;
    }

    .faq-list details {
        padding: 12px;
    }

    .faq-list details p {
        padding-left: 24px;
        font-size: 0.9rem;
    }

    .timeline-container::before {
        left: 12px;
    }

    .timeline-item {
        padding-left: 60px;
        margin-bottom: 24px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
        left: -8px;
    }

    .timeline-dot {
        width: 12px;
        height: 12px;
    }

    .timeline-date {
        font-size: 0.75rem;
    }

    .timeline-title {
        font-size: 1rem;
    }

    .timeline-description {
        font-size: 0.85rem;
    }

    .technologies {
        padding: 24px 16px;
    }

    .technologies h2 {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tech-card {
        padding: 20px;
    }

    .tech-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 12px;
    }

    .tech-icon i {
        width: 28px;
        height: 28px;
    }

    .tech-card h3 {
        font-size: 1.1rem;
    }

    .tech-card p {
        font-size: 0.9rem;
    }

    .intro {
        padding: 0;
    }

    .intro p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .container {
        padding: 24px 16px 32px;
        gap: 16px;
    }
}
