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

:root {
    --bg: #07090c;
    --bg-elevated: #0d1117;
    --bg-card: #121821;
    --bg-soft: #171e28;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --text: #f4f6f8;
    --text-secondary: #9aa6b4;
    --text-dark: #0f1720;
    --accent: #3b82f6;
    --accent-hover: #60a5fa;
    --accent-soft: rgba(59, 130, 246, 0.16);
    --pub: #3b82f6;
    --pub-glow: rgba(59, 130, 246, 0.28);
    --badi: #22d3ee;
    --badi-glow: rgba(34, 211, 238, 0.24);
    --draw: #a78bfa;
    --draw-glow: rgba(167, 139, 250, 0.26);
    --cycle: #34d399;
    --cycle-glow: rgba(52, 211, 153, 0.26);
    --success: #10b981;
    --radius: 22px;
    --radius-sm: 14px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --nav-h: 72px;
    --max: 1160px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: -0.015em;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -40px;
    background: var(--accent);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    z-index: 2000;
}

.skip-link:focus {
    top: 12px;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.9rem 0;
    background: rgba(7, 9, 12, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.navbar.scrolled {
    border-bottom-color: var(--line);
    background: rgba(7, 9, 12, 0.9);
}

.nav-container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.05rem;
}

.nav-logo img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.4rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link-cta {
    color: var(--text);
    background: var(--accent);
}

.nav-link-cta:hover {
    background: var(--accent-hover);
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.bar {
    width: 18px;
    height: 2px;
    background: var(--text);
    transition: 0.25s var(--ease);
    display: block;
}

/* Hero */
.hero {
    padding: calc(var(--nav-h) + 40px) 24px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -20% 10% auto;
    height: 420px;
    background:
        radial-gradient(circle at 20% 40%, rgba(59, 130, 246, 0.22), transparent 42%),
        radial-gradient(circle at 80% 30%, rgba(34, 211, 238, 0.12), transparent 40%),
        radial-gradient(circle at 55% 80%, rgba(167, 139, 250, 0.14), transparent 45%);
    pointer-events: none;
}

.hero-container {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    min-width: 0;
}

.eyebrow {
    display: inline-block;
    color: var(--accent-hover);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.3rem, 5.4vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.045em;
    margin-bottom: 0.85rem;
}

.hero-subtitle {
    font-size: 1.08rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 1.5rem;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.hero-pills {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.hero-pill:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
}

.pill-pub:hover { border-color: var(--pub); }
.pill-badi:hover { border-color: var(--badi); }
.pill-draw:hover { border-color: var(--draw); }

.pill-pub i { color: var(--pub); }
.pill-badi i { color: var(--badi); }
.pill-draw i { color: var(--draw); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 650;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border-color: var(--line-strong);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 2.8rem;
}

.section-header h2,
.about-text h2,
.download-content h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 750;
    letter-spacing: -0.035em;
    margin-bottom: 0.7rem;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    overflow-wrap: anywhere;
}

/* Apps overview */
.apps-section {
    padding: 12px 0 88px;
}

.apps-bento {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
    align-items: stretch;
}

.app-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.app-showcase:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.app-showcase-copy {
    padding: 1.25rem 1.3rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1;
}

.app-kicker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.app-badge,
.app-meta span,
.feature-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    border: 1px solid var(--line);
}

.app-price {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
}

.app-showcase h3 {
    font-size: 1.4rem;
    font-weight: 750;
    letter-spacing: -0.03em;
}

.app-showcase p {
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.app-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.app-link {
    margin-top: auto;
    color: var(--text);
    font-weight: 650;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.app-showcase:hover .app-link i {
    transform: translateX(4px);
}

.app-link i {
    transition: transform 0.25s var(--ease);
    font-size: 0.8rem;
}

.app-showcase-media {
    height: 230px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.1rem 1.1rem 0;
    overflow: hidden;
}

.app-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px 12px 0 0;
}

.media-desktop img {
    object-fit: contain;
    object-position: center bottom;
}

.media-phone {
    background: linear-gradient(180deg, #22d3ee 0%, #2563eb 100%);
}

.theme-cycle .media-phone {
    background: linear-gradient(180deg, #064e3b 0%, #022c22 100%);
}

.media-phone img {
    max-width: 168px;
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
}

.theme-pub {
    background:
        radial-gradient(circle at 88% 18%, var(--pub-glow), transparent 34%),
        var(--bg-card);
}

.theme-pub:hover { border-color: rgba(59, 130, 246, 0.4); }

.theme-badi {
    background:
        radial-gradient(circle at 50% 0%, var(--badi-glow), transparent 46%),
        var(--bg-card);
}

.theme-badi:hover { border-color: rgba(34, 211, 238, 0.4); }

.theme-draw {
    background:
        radial-gradient(circle at 50% 0%, var(--draw-glow), transparent 46%),
        var(--bg-card);
}

.theme-draw:hover { border-color: rgba(167, 139, 250, 0.42); }

.theme-cycle {
    background:
        radial-gradient(circle at 50% 0%, var(--cycle-glow), transparent 46%),
        var(--bg-card);
}

.theme-cycle:hover { border-color: rgba(52, 211, 153, 0.42); }

.pill-cycle:hover { border-color: var(--cycle); }
.pill-cycle i { color: var(--cycle); }

.app-hero.theme-cycle .app-icon-large {
    background: #059669;
}

.app-hero.theme-cycle::before {
    background: radial-gradient(circle at 80% 20%, rgba(52, 211, 153, 0.2), transparent 36%);
}

.coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.1rem;
    border-radius: 12px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 650;
    color: var(--text);
}

/* About */
.about-section {
    padding: 40px 0 96px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 3rem;
}

.about-text .eyebrow {
    margin-bottom: 0.6rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.8rem;
}

.stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
}

.stat strong,
.stat h3 {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
}

.stat span,
.stat p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
}

.profile-portrait,
.profile-image {
    width: min(320px, 100%);
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    background: #1d9bf0;
    box-shadow: 0 0 0 10px rgba(29, 155, 240, 0.12);
}

.profile-image-wrapper {
    display: flex;
    justify-content: center;
}

/* Contact */
.contact-section {
    padding: 20px 0 110px;
}

.contact-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 1.4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.2rem 1.3rem;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    text-decoration: none;
}

a.contact-item:hover {
    border-color: var(--line-strong);
}

.contact-item i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    color: var(--accent-hover);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.92rem;
    margin-bottom: 0.15rem;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #0c1016;
    color: var(--text);
    font: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7684;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.7);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

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

.form-buttons .btn {
    flex: 1;
    min-width: 160px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--line);
    padding: 3rem 0 1.6rem;
    background: #05070a;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-section p,
.footer-section a,
.footer-bottom {
    color: var(--text-secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.4rem;
}

.footer-section a {
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 1.2rem;
    font-size: 0.88rem;
}

/* Thank you */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
}

.thank-you-content {
    text-align: center;
    max-width: 560px;
}

.thank-you-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 1.4rem;
    border-radius: 50%;
    background: var(--success);
    display: grid;
    place-items: center;
    font-size: 2rem;
}

/* App detail pages */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
    position: relative;
    z-index: 2;
}

.back-link:hover {
    color: var(--text);
}

.app-hero {
    padding: calc(var(--nav-h) + 56px) 0 72px;
    position: relative;
    overflow: hidden;
}

.app-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.18), transparent 36%);
    pointer-events: none;
}

.app-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.app-icon-large {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: var(--accent);
    margin-bottom: 1.3rem;
    font-size: 1.7rem;
}

.app-hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 0.5rem;
}

.app-hero-subtitle {
    color: var(--accent-hover);
    font-weight: 600;
    margin-bottom: 1.1rem;
}

.app-description {
    color: var(--text-secondary);
    font-size: 1.08rem;
    margin-bottom: 1.5rem;
}

.app-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-bottom: 1.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--accent-hover);
    width: 18px;
    text-align: center;
}

.hero-screenshot {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: var(--shadow);
    cursor: zoom-in;
}

.mobile-screenshot {
    max-width: 300px;
}

.desktop-screenshot {
    max-width: 560px;
}

.app-store-button {
    margin-bottom: 1rem;
}

.store-btn,
.store-btn-large-content {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid var(--line-strong);
}

.store-btn-content,
.store-btn-large-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.store-btn-content i,
.store-btn-large-content i {
    font-size: 1.7rem;
}

.store-btn-text,
.store-btn-large-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.store-btn-small,
.store-btn-large-small {
    font-size: 0.7rem;
    color: #d1d5db;
}

.store-btn-large,
.store-btn-large-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.store-btn-price,
.store-btn-large-price {
    margin-left: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.55rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 650;
}

.store-btn-large-link {
    text-decoration: none;
}

.store-btn-large-content {
    padding: 1rem 1.4rem;
}

.store-btn:hover,
.store-btn-large-link:hover .store-btn-large-content {
    transform: translateY(-2px);
}

.screenshots-section,
.app-features-section,
.download-section {
    padding: 80px 0;
}

.screenshots-section {
    background: var(--bg-elevated);
}

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

.mobile-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.screenshot-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--bg-card);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    cursor: zoom-in;
    transition: transform 0.4s var(--ease);
}

.screenshot-item:hover img {
    transform: scale(1.03);
}

.screenshot-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 1.2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.screenshot-overlay h4 {
    font-size: 0.95rem;
}

.screenshot-overlay p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.features-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
}

.feature-card,
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.5rem;
}

.feature-icon,
.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    color: var(--accent-hover);
    margin-bottom: 1rem;
}

.feature-card h3,
.service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-card p,
.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.download-section {
    text-align: center;
}

.download-content p {
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 1.4rem;
}

.compatibility-info {
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    margin-top: 1.4rem;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.compatibility-info i {
    color: var(--accent-hover);
    margin-right: 0.35rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 2000;
}

.lightbox.open {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: min(1400px, 96vw);
    max-height: 94vh;
    background: #0b0f14;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 86vh;
    width: auto;
    height: auto;
}

.lightbox-caption {
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-top: 1px solid var(--line);
}

.lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Legacy homepage cards (if reused) */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.app-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
}

.app-card-image {
    height: 220px;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: #0c1118;
}

.app-card-image img {
    max-height: 100%;
    object-fit: contain;
}

.app-card-content {
    padding: 1.4rem;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.8rem 0;
}

/* Motion */
.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 980px) {
    .about-content,
    .contact-content,
    .app-hero-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding: 1.6rem;
        text-align: center;
    }

    .about-text .eyebrow {
        display: inline-block;
    }

    .app-hero {
        text-align: center;
    }

    .app-icon-large {
        margin-left: auto;
        margin-right: auto;
    }

    .app-features-list {
        grid-template-columns: 1fr;
    }

    .app-showcase-media {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        inset: 68px 16px auto;
        display: none;
        flex-direction: column;
        background: #10151c;
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 0.7rem;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        display: block;
        text-align: center;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .apps-bento {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: calc(var(--nav-h) + 28px);
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-pills {
        gap: 0.45rem;
    }

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

    .store-btn-large-content {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
