/* ═══════════════════════════════════════════════
   PAS — Pocket App Soft · Design System 2.0
   Inspirado em Microsoft.com + Apple.com
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900;1,14..32,300;1,14..32,400&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:           #ffffff;
    --bg-2:         #f5f7fa;
    --bg-3:         #eef1f6;
    --text:         #0f0f11;
    --text-2:       #3d3d4a;
    --text-3:       #6b7280;
    --border:       rgba(0,0,0,0.08);
    --brand:        #0f62fe;
    --brand-hover:  #0043ce;
    --brand-light:  #eff4ff;
    --accent:       #0f62fe;
    --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow:       0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06);
    --shadow-lg:    0 16px 48px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.08);
    --shadow-xl:    0 32px 80px rgba(0,0,0,0.16);
    --radius-sm:    8px;
    --radius:       16px;
    --radius-lg:    24px;
    --radius-xl:    32px;
    --nav-h:        64px;
    --transition:   all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Utility ── */
.accent { color: var(--brand); }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ══════════════════════════════════════════════
   NAV — sticky, blurs on scroll (Apple style)
   ══════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    height: var(--nav-h);
}
.nav.scrolled {
    background: rgba(255,255,255,0.92);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; gap: 0; text-decoration: none; }
.logo-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
    /* The icon IS the "P" — so the wordmark starts with "ocket" directly after */
}
.logo-wordmark {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.025em;
    white-space: nowrap;
    margin-left: -4px;  /* 2px mais à direita que antes (-6px) */
    margin-top: 4px;    /* desce levemente para alinhar visualmente com o P */
    line-height: 30px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}
.nav-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-item:hover {
    color: var(--brand);
    background: var(--brand-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav-btn-outline {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand);
    border: 1.5px solid var(--brand);
    border-radius: 8px;
    padding: 7px 18px;
    transition: var(--transition);
}
.nav-btn-outline:hover {
    background: var(--brand-light);
}
.nav-btn-fill {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--brand);
    border-radius: 8px;
    padding: 8px 18px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(15,98,254,0.35);
}
.nav-btn-fill:hover {
    background: var(--brand-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(15,98,254,0.4);
}
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-hamburger span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════════════
   HERO — full-viewport with orbs + grid
   ══════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-h);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 12s ease-in-out infinite;
}
.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #dbeafe 0%, #eff6ff 50%, transparent 80%);
    top: -100px; right: -100px;
    animation-delay: 0s;
}
.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #e0f2fe 0%, transparent 70%);
    bottom: 100px; left: -80px;
    animation-delay: -4s;
}
.orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #eff4ff 0%, transparent 70%);
    top: 50%; right: 30%;
    animation-delay: -8s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(20px, -20px) scale(1.05); }
    66%       { transform: translate(-15px, 15px) scale(0.97); }
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15,98,254,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,98,254,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 70%);
}

.hero-content { position: relative; z-index: 1; }
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
    background: var(--brand-light);
    border: 1px solid rgba(15,98,254,0.2);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.pill-dot {
    width: 7px; height: 7px;
    background: var(--brand);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 24px;
}
.hero-accent {
    background: linear-gradient(135deg, #0f62fe 0%, #0284c7 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-3);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}
.hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: var(--brand);
    border-radius: 10px;
    padding: 14px 28px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(15,98,254,0.4);
}
.btn-primary:hover {
    background: var(--brand-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15,98,254,0.45);
}
.btn-primary i { font-size: 17px; }
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-2);
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 13px 28px;
    transition: var(--transition);
}
.btn-ghost:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-light);
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.04em;
    line-height: 1;
}
.stat-lbl { font-size: 12px; color: var(--text-3); font-weight: 500; margin-top: 4px; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* ── Hero Visual ── */
.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-mockup {
    width: 100%;
    max-width: 560px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.06);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.4s ease;
}
.hero-mockup:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.mockup-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 10px 16px;
    border-bottom: 1px solid #e5e5e5;
}
.dot {
    width: 11px; height: 11px;
    border-radius: 50%;
}
.dot.r { background: #ff5f57; }
.dot.y { background: #ffbe2e; }
.dot.g { background: #28c941; }
.url-bar {
    flex: 1;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 3px 12px;
    font-size: 12px;
    color: #555;
    text-align: center;
    font-family: monospace;
}
.mockup-screen { width: 100%; }
.mockup-img { width: 100%; height: auto; display: block; }

.mockup-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: var(--shadow-lg);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    border: 1px solid var(--border);
    white-space: nowrap;
}
.mockup-float i { font-size: 18px; color: var(--brand); }
.card-float-1 { bottom: 30px; left: -20px; animation: bob 4s ease-in-out infinite; }
.card-float-2 { top: 80px; right: -20px; animation: bob 4s ease-in-out infinite 1.5s; }
@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* ══════════════════════════════════════════════
   QUICK LINKS — Microsoft style row
   ══════════════════════════════════════════════ */
.quicklinks {
    display: flex;
    justify-content: center;
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
    padding: 0;
    overflow-x: auto;
}
.ql-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 48px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--brand);
    border-right: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}
.ql-item:last-child { border-right: none; }
.ql-item i { font-size: 28px; }
.ql-item:hover {
    background: var(--brand-light);
    color: var(--brand-hover);
}

/* ══════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════ */
.section {
    padding: 100px 24px;
    max-width: 1280px;
    margin: 0 auto;
}
.section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand);
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 18px;
    color: var(--text-3);
    max-width: 560px;
    margin-bottom: 60px;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════
   CAROUSEL — equal slides, Microsoft/Apple style
   ══════════════════════════════════════════════ */
.carousel-wrap {
    position: relative;
    padding: 0 60px;
}
.car-viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.car-track {
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease-out;
    will-change: transform;
}
.car-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s, transform 0.25s;
}
.car-slide:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(15,98,254,0.2);
}
.car-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-2);
    flex-shrink: 0;
}
.car-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}
.car-slide:hover .car-img-wrap img { transform: scale(1.04); }
.car-info {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.car-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}
.car-info p {
    font-size: 14px;
    color: var(--text-3);
    line-height: 1.6;
    flex: 1;
}

/* Shared badge + link styles (carousel & future cards) */
.card-badge {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 100px;
    width: fit-content;
    line-height: 1;
}
.card-badge.live { color: #059669; background: #ecfdf5; border: 1px solid #a7f3d0; }
.card-badge.dev  { color: #b45309; background: #fffbeb; border: 1px solid #fde68a; }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand);
    margin-top: 4px;
    transition: var(--transition);
    text-decoration: none;
}
.card-link i { font-size: 16px; transition: transform 0.2s; }
.card-link:hover i { transform: translateX(4px); }
.card-link.disabled { color: var(--text-3); cursor: not-allowed; pointer-events: none; }


/* Carousel buttons */
.car-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--text);
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}
.car-btn:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }
.car-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.car-prev { left: 4px; }
.car-next { right: 4px; }

/* Dots */
.car-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}
.car-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}
.car-dot.active { background: var(--brand); width: 24px; border-radius: 4px; }

@media (max-width: 900px) {
    .car-slide { flex: 0 0 calc(50% - 12px); }
    .carousel-wrap { padding: 0 48px; }
}
@media (max-width: 580px) {
    .car-slide { flex: 0 0 calc(100% - 0px); }
    .carousel-wrap { padding: 0 40px; }
    .car-img-wrap { height: 180px; }
}

/* ══════════════════════════════════════════════
   BENTO GRID — Apple-style feature tiles
   ══════════════════════════════════════════════ */
.bento-section {
    background: var(--bg-2);
    max-width: 100%;
    padding: 100px 24px;
}
/* Wrapper used in HTML instead of old child selectors */
.bento-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.bento-inner .section-label  { margin-bottom: 16px; }
.bento-inner .section-title  { margin-bottom: 56px; }
/* Legacy selectors kept for safety */
.bento-section .section { max-width: 1280px; margin: 0 auto; padding: 0; }


.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    max-width: 1280px;
    margin: 60px auto 0;
}
.bento-wide { grid-column: span 2; }

.bento-card {
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.bento-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.bento-blue {
    background: var(--brand);
}
.bento-blue .bento-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.bento-blue h3 {
    color: #ffffff;
    font-weight: 800;
}
.bento-blue p {
    color: #dce9ff;   /* near-white blue tint, always legible on brand blue */
    opacity: 1;
}

.bento-dark {
    background: #111318;
}
.bento-dark .bento-icon {
    background: rgba(255,255,255,0.1);
    color: #93c5fd;
}
.bento-dark h3 {
    color: #f0f4ff;  /* crisp white-blue, never invisible */
}
.bento-dark p {
    color: #b0b8cc;  /* medium gray, readable on dark */
}

.bento-glass {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--shadow);
}
.bento-glass .bento-icon { background: var(--brand-light); color: var(--brand); }

.bento-light {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.bento-light .bento-icon { background: #fef3c7; color: #d97706; }

.bento-blue-light {
    background: var(--brand-light);
    border: 1px solid rgba(15,98,254,0.15);
}
.bento-blue-light .bento-icon { background: #fff; color: var(--brand); }

.bento-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.bento-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.bento-card p {
    font-size: 14.5px;
    color: var(--text-3);
    line-height: 1.65;
}
.bento-visual-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.ai-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--brand);
    background: var(--brand-light);
    border: 1px solid rgba(15,98,254,0.2);
    border-radius: 100px;
    padding: 5px 12px;
}
.ai-chip i { font-size: 14px; }

/* ══════════════════════════════════════════════
   ACCOUNT BANNER (dark, Microsoft promo style)
   ══════════════════════════════════════════════ */
.account-banner {
    background: linear-gradient(135deg, #0f0f1a 0%, #0c1a3a 50%, #0f0f1a 100%);
    max-width: 100%;
    padding: 100px 24px;
}
.account-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}
.account-banner-text .section-title { color: #fff; }
.account-banner-text .section-sub,
.account-banner-text p {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 40px;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 13px 28px;
    transition: var(--transition);
}
.btn-ghost-white:hover {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
    background: rgba(255,255,255,0.08);
}

/* Account Visual Card */
.account-banner-visual { display: flex; justify-content: center; }
.account-visual-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-xl);
    padding: 28px;
    width: 340px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.avc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}
.avc-logo { width: 28px; height: 28px; border-radius: 6px; }
.avc-user {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.08);
}
.avc-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.avc-name { font-size: 14px; font-weight: 700; color: #fff; }
.avc-email { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.avc-apps { display: flex; flex-direction: column; gap: 2px; }
.avc-app-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    padding: 10px 14px;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
}
.avc-app-item:hover { background: rgba(255,255,255,0.07); color: #fff; }
.avc-app-item i { font-size: 17px; }

/* ══════════════════════════════════════════════
   FOOTER — Microsoft multi-column
   ══════════════════════════════════════════════ */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
}
.footer-top {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px 48px;
}
.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}
.footer-icon { width: 28px; height: 28px; border-radius: 6px; object-fit: contain; }
.footer-brand p {
    font-size: 13.5px;
    color: var(--text-3);
    line-height: 1.6;
    margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--text-3);
    transition: var(--transition);
}
.social-link:hover {
    color: var(--brand);
    border-color: var(--brand);
    background: var(--brand-light);
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-col h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
    font-size: 13.5px;
    color: var(--text-3);
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--brand); }
.footer-bottom {
    border-top: 1px solid var(--border);
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: var(--text-3);
}
.footer-tagline { font-style: italic; }

/* ══════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* stagger children */
.products-grid .product-card:nth-child(1) { transition-delay: 0ms; }
.products-grid .product-card:nth-child(2) { transition-delay: 80ms; }
.products-grid .product-card:nth-child(3) { transition-delay: 160ms; }
.products-grid .product-card:nth-child(4) { transition-delay: 240ms; }
.products-grid .product-card:nth-child(5) { transition-delay: 320ms; }

.bento-grid .bento-card:nth-child(1) { transition-delay: 0ms; }
.bento-grid .bento-card:nth-child(2) { transition-delay: 60ms; }
.bento-grid .bento-card:nth-child(3) { transition-delay: 120ms; }
.bento-grid .bento-card:nth-child(4) { transition-delay: 180ms; }
.bento-grid .bento-card:nth-child(5) { transition-delay: 240ms; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + 40px); }
    .hero-visual { display: none; }
    .hero-title { font-size: clamp(36px, 8vw, 56px); }
    .products-grid { grid-template-columns: 1fr; }
    .card-large, .product-card:not(.card-large) { grid-column: span 1; }
    .card-large .card-img-wrap { height: 220px; }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-wide { grid-column: span 2; }
    .account-banner-inner { grid-template-columns: 1fr; }
    .account-banner-visual { display: none; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 24px 24px; gap: 4px; box-shadow: var(--shadow); }
    .nav-links.open { display: flex; }
    .nav-item { padding: 10px 14px; }
    .nav-btn-outline { display: none; }
    .nav-hamburger { display: flex; }
    .quicklinks { gap: 0; }
    .ql-item { padding: 20px 24px; font-size: 12px; }
    .ql-item i { font-size: 22px; }
    .section { padding: 60px 20px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-wide { grid-column: span 1; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .hero-cta-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .hero-stats { gap: 16px; }
    .stat-num { font-size: 22px; }
    .footer-cols { grid-template-columns: 1fr; }
}
