/* ============================================================
   A1PHA — TikTok-inspired design system
   Pure CSS, no build step. Black bg, cyan #25F4EE + red #FE2C55,
   neon glows, chunky type, marquee + reveal motion.
   ============================================================ */

:root {
    --bg: #000000;
    --bg-2: #0d0d0d;
    --card: #161616;
    --card-2: #1c1c1e;
    --border: rgba(255, 255, 255, .09);
    --text: #ffffff;
    --text-muted: #8a8a8e;
    --primary: #fe2c55;      /* TikTok red */
    --secondary: #25f4ee;    /* TikTok cyan */
    --accent: var(--secondary);
    --accent-soft: rgba(37, 244, 238, .1);
    --accent2: var(--primary);
    --glow-red: 0 0 30px rgba(254, 44, 85, .35);
    --glow-cyan: 0 0 30px rgba(37, 244, 238, .35);
    --radius: 18px;
    --radius-lg: 24px;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: var(--secondary); }
::selection { background: var(--primary); color: #fff; }

/* ---------- Layout containers ---------- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ---------- Utility ---------- */
.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 200;
    background: var(--primary); color: #fff; padding: 10px 18px; border-radius: 0 0 12px 0;
    font-weight: 700; font-size: 14px; text-decoration: none;
}
.skip-link:focus { left: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 600; margin: 18px 0 8px; transition: color .15s, transform .2s var(--ease); }
.back-link:hover { color: var(--secondary); transform: translateX(-3px); }
.updated { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }

/* ---------- Scroll progress bar ---------- */
.progress-bar {
    position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    box-shadow: 0 0 12px rgba(37, 244, 238, .6);
}

/* ---------- Motion: reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in-view { opacity: 1; transform: none; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 90;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s;
}
.header.scrolled { border-bottom-color: var(--border); box-shadow: 0 8px 30px rgba(0, 0, 0, .5); }
.nav { max-width: 1280px; margin: 0 auto; padding: 0 24px; height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; font-size: 20px; letter-spacing: -.01em; color: var(--text); }
.logo-mark {
    width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 900; color: #000;
    background: linear-gradient(135deg, var(--secondary), #00d4cf);
    box-shadow: var(--glow-cyan);
}
.logo b { font-weight: 800; }
.logo b i { font-style: normal; color: var(--secondary); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 14.5px; font-weight: 600; transition: color .15s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary); color: #fff; text-decoration: none;
    padding: 9px 18px; border-radius: 999px; font-size: 13.5px; font-weight: 700;
    box-shadow: var(--glow-red); transition: transform .15s var(--ease), box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 44px rgba(254, 44, 85, .55); color: #fff; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-order, .btn-play, .btn-primary, .btn-details {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 12px 22px; border-radius: 999px;
    font-size: 14.5px; font-weight: 700; text-decoration: none;
    border: none; cursor: pointer; transition: transform .15s var(--ease), box-shadow .2s, background .2s, border-color .2s;
}
.btn-order svg, .btn-play svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-order.primary, .btn-primary { background: var(--primary); color: #fff; box-shadow: var(--glow-red); }
.btn-order.primary:hover, .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 44px rgba(254, 44, 85, .55); }
.btn-order.secondary { background: var(--secondary); color: #000; box-shadow: var(--glow-cyan); }
.btn-order.secondary:hover { transform: translateY(-2px); box-shadow: 0 0 44px rgba(37, 244, 238, .55); }
.btn-order.outline, .btn-play, .btn-play-outline { background: transparent; border: 1.5px solid rgba(255, 255, 255, .25); color: var(--text); }
.btn-order.outline:hover, .btn-play:hover, .btn-play-outline:hover { border-color: rgba(255, 255, 255, .65); transform: translateY(-2px); color: var(--text); }
.btn-play.pink, .btn-play-outline.pink { border-color: rgba(254, 44, 85, .5); color: var(--primary); }
.btn-play.pink:hover, .btn-play-outline.pink:hover { border-color: var(--primary); box-shadow: var(--glow-red); }
.btn-details { background: var(--accent-soft); color: var(--accent); border: 1px solid rgba(37, 244, 238, .3); padding: 8px 16px; font-size: 13px; }
.btn-details:hover { transform: translateY(-2px); }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
    position: relative; padding: 190px 0 100px; overflow: hidden;
    text-align: center;
}
.hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 900px 500px at 20% 0%, rgba(254, 44, 85, .13) 0%, transparent 60%),
        radial-gradient(ellipse 800px 500px at 85% 10%, rgba(37, 244, 238, .12) 0%, transparent 60%),
        radial-gradient(ellipse 700px 600px at 50% 110%, rgba(37, 244, 238, .07) 0%, transparent 60%);
}
.hero::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(1.2px 1.2px at 18% 24%, rgba(255,255,255,.7) 50%, transparent 51%),
        radial-gradient(1px 1px at 30% 55%, rgba(255,255,255,.45) 50%, transparent 51%),
        radial-gradient(1.4px 1.4px at 48% 18%, rgba(255,255,255,.8) 50%, transparent 51%),
        radial-gradient(1px 1px at 62% 38%, rgba(255,255,255,.45) 50%, transparent 51%),
        radial-gradient(1px 1px at 76% 64%, rgba(255,255,255,.7) 50%, transparent 51%),
        radial-gradient(1.4px 1.4px at 88% 22%, rgba(255,255,255,.55) 50%, transparent 51%),
        radial-gradient(1px 1px at 12% 78%, rgba(255,255,255,.5) 50%, transparent 51%),
        radial-gradient(1px 1px at 42% 86%, rgba(255,255,255,.6) 50%, transparent 51%),
        radial-gradient(1px 1px at 70% 12%, rgba(255,255,255,.4) 50%, transparent 51%),
        radial-gradient(1px 1px at 92% 80%, rgba(255,255,255,.5) 50%, transparent 51%);
    background-size: 150px 150px, 180px 180px, 160px 160px, 190px 190px, 150px 150px, 200px 200px, 170px 170px, 190px 190px, 160px 160px, 180px 180px;
    animation: twinkle 5s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: .35; } to { opacity: 1; } }
.hero .container-wide { position: relative; }
.hero h1 {
    font-size: clamp(42px, 7vw, 78px); line-height: 1.03; letter-spacing: -.04em;
    font-weight: 900; margin-bottom: 22px; max-width: 900px; margin-left: auto; margin-right: auto;
}
.hero h1 .grad {
    background: linear-gradient(92deg, var(--secondary) 0%, #fff 50%, var(--primary) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { font-size: 18px; color: var(--text-muted); max-width: 620px; margin: 0 auto 36px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; justify-content: center; gap: 64px; margin-top: 58px; flex-wrap: wrap; }
.hero-stats div { text-align: center; }
.hero-stats strong { display: block; font-size: 38px; font-weight: 900; letter-spacing: -.03em; line-height: 1.1; }
.hero-stats strong:first-child, .hero-stats strong:last-child { color: var(--secondary); }
.hero-stats div:nth-child(2) strong { color: var(--primary); }
.hero-stats span { font-size: 13.5px; color: var(--text-muted); }
.hero-badge {
    display: inline-flex; align-items: center; gap: 9px;
    border: 1px solid var(--border); background: rgba(255, 255, 255, .05);
    border-radius: 999px; padding: 7px 16px; font-size: 13px; font-weight: 600;
    color: var(--text-muted); margin-bottom: 28px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 10px var(--primary); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .25; } }

/* Floating symbols in hero */
.floaty { position: absolute; font-size: 30px; opacity: .55; pointer-events: none; animation: floaty 6s ease-in-out infinite; z-index: 0; }
.floaty-1 { top: 22%; left: 6%; }
.floaty-2 { top: 16%; right: 10%; animation-delay: -2s; color: var(--primary); }
.floaty-3 { bottom: 22%; left: 13%; animation-delay: -4s; color: var(--secondary); }
.floaty-4 { bottom: 26%; right: 6%; animation-delay: -1s; }
.floaty-5 { top: 44%; right: 26%; animation-delay: -3s; color: var(--primary); }
.floaty-6 { top: 58%; left: 24%; animation-delay: -5s; color: var(--secondary); }
@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-22px) rotate(8deg); } }

/* Hero two-column layout + phone mockup */
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; text-align: left; }
.hero-copy { position: relative; }
.hero-copy h1 { max-width: none; margin-left: 0; }
.hero-copy p { margin-left: 0; }
.hero-copy .hero-cta { justify-content: flex-start; }
.hero-copy .hero-stats { justify-content: flex-start; margin-top: 44px; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 560px; }
.phone-glow {
    position: absolute; width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(254, 44, 85, .35) 0%, rgba(37, 244, 238, .22) 45%, transparent 70%);
    filter: blur(50px); animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse { 0%, 100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.12); opacity: 1; } }
.phone {
    position: relative; width: 270px; background: #050505; border-radius: 38px; padding: 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .7), 0 0 60px rgba(254, 44, 85, .18);
    animation: phoneFloat 6s ease-in-out infinite; z-index: 1;
}
@keyframes phoneFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.phone-notch {
    position: absolute; top: 20px; left: 50%; transform: translateX(-50%); z-index: 2;
    width: 96px; height: 22px; background: #000; border-radius: 12px;
}
.phone-screen {
    background: linear-gradient(180deg, #0a0a0c 0%, #111114 100%);
    border-radius: 30px; padding: 34px 14px 16px; overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .06);
}
.phone-status { display: flex; justify-content: space-between; font-size: 10px; color: var(--text-muted); margin-bottom: 12px; }
.phone-app-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.phone-app-icon { width: 44px; height: 44px; border-radius: 12px; object-fit: cover; box-shadow: 0 0 18px rgba(37, 244, 238, .35); }
.phone-app-head strong { display: block; font-size: 13px; font-weight: 800; }
.phone-app-head span { font-size: 10.5px; color: var(--text-muted); }
.phone-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 12px 14px; margin-bottom: 10px;
}
.phone-card-top { display: block; font-size: 9.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 4px; }
.phone-card strong { font-size: 14px; font-weight: 800; letter-spacing: -.01em; }
.phone-card.slim strong.phone-name { font-size: 13px; color: var(--secondary); }
.phone-tag-row { display: flex; gap: 6px; margin-top: 8px; }
.phone-tag { font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 999px; }
.phone-tag.cyan { color: var(--secondary); background: rgba(37, 244, 238, .1); border: 1px solid rgba(37, 244, 238, .3); }
.phone-tag.red { color: var(--primary); background: rgba(254, 44, 85, .1); border: 1px solid rgba(254, 44, 85, .3); }
.phone-rating-row { display: flex; align-items: center; gap: 8px; margin: 12px 2px; }
.phone-star { color: var(--primary); font-size: 12px; letter-spacing: 1px; text-shadow: var(--glow-red); }
.phone-rating-num { font-weight: 900; font-size: 15px; }
.phone-rating-count { font-size: 10px; color: var(--text-muted); }
.phone-cta-row { display: flex; gap: 8px; }
.phone-btn {
    flex: 1; text-align: center; font-size: 11px; font-weight: 800; padding: 9px 0; border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #ff5b7a); color: #fff; box-shadow: var(--glow-red);
}
.phone-play {
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 10px;
    background: rgba(37, 244, 238, .12); border: 1px solid rgba(37, 244, 238, .35); color: var(--secondary); font-size: 12px;
}
/* Floating chips around phone */
.phone-chip {
    position: absolute; display: flex; align-items: center; gap: 9px;
    background: rgba(20, 20, 22, .92); border: 1px solid var(--border); border-radius: 14px;
    padding: 10px 14px; backdrop-filter: blur(10px); z-index: 2;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .5);
    animation: chipFloat 5s ease-in-out infinite;
}
.phone-chip strong { display: block; font-size: 14px; font-weight: 900; line-height: 1.1; }
.phone-chip span:not(.chip-icon):not(.chip-dot) { font-size: 10px; color: var(--text-muted); }
.chip-icon {
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 9px;
    font-size: 15px; color: #fff; background: linear-gradient(135deg, var(--secondary), #0fa8a2); box-shadow: var(--glow-cyan);
}
.chip-rating { top: 12%; right: 4%; animation-delay: -1.2s; }
.chip-rating .chip-icon { background: linear-gradient(135deg, var(--primary), #ff5b7a); box-shadow: var(--glow-red); }
.chip-downloads { bottom: 20%; left: 2%; animation-delay: -2.4s; }
.chip-live { top: 46%; left: -4%; animation-delay: -3.6s; }
.chip-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--secondary); box-shadow: 0 0 12px var(--secondary); animation: pulse 1.6s ease-in-out infinite; }
@keyframes chipFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: var(--bg-2); padding: 22px 0; overflow: hidden;
}
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent); mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent); }
.marquee-track { display: flex; gap: 52px; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; color: var(--text-muted); white-space: nowrap; }
.marquee-item .m-icon { font-size: 20px; }
.marquee-item .star { color: var(--secondary); }

/* ============================================================
   SECTIONS & TITLES
   ============================================================ */
.section { padding: 90px 0; }
.section-title {
    font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: -.03em;
    line-height: 1.1; margin-bottom: 18px; position: relative; display: flex; align-items: center; gap: 14px;
}
.section-title::before {
    content: ''; width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
    background: var(--primary); box-shadow: var(--glow-red);
}
.section > h2:not(.section-title), section h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 16px; }
.section p { color: var(--text-muted); }
.section-title + p { color: var(--text-muted); margin-bottom: 8px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-banner { padding: 80px 0; border-top: 1px solid var(--border); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 34px; }
.service-card {
    border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--card); padding: 32px;
    transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(37, 244, 238, .4); box-shadow: var(--glow-cyan); }
.service-card h2, .service-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; letter-spacing: -.01em; color: var(--text); }
.service-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 18px; }
.service-card .price-tag {
    display: inline-block; font-size: 12.5px; font-weight: 700; color: #000;
    background: linear-gradient(135deg, var(--secondary), #00d4cf); border-radius: 8px; padding: 4px 11px; margin-bottom: 18px;
}
.service-card .icon {
    width: 48px; height: 48px; border-radius: 13px; margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(37, 244, 238, .1); color: var(--secondary); border: 1px solid rgba(37, 244, 238, .3);
}
.service-card .icon.android { background: rgba(37, 244, 238, .1); color: var(--secondary); border-color: rgba(37, 244, 238, .3); }
.service-card .icon.web { background: rgba(254, 44, 85, .1); color: var(--primary); border-color: rgba(254, 44, 85, .3); }
.service-card .icon.pink { background: rgba(254, 44, 85, .1); color: var(--primary); border-color: rgba(254, 44, 85, .3); }
.service-card .icon.blue { background: rgba(48, 128, 255, .12); color: #6aa5ff; border-color: rgba(48, 128, 255, .35); }
.service-card .icon.green { background: rgba(74, 222, 128, .12); color: #4ade80; border-color: rgba(74, 222, 128, .35); }

/* ============================================================
   PORTFOLIO (home bento)
   ============================================================ */
.apps-section { padding: 80px 0; }
.portfolio-header-main { text-align: center; margin-bottom: 44px; }
.portfolio-header-main .section-title { justify-content: center; }
.portfolio-intro { color: var(--text-muted); max-width: 640px; margin: 0 auto; }
.portfolio-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.portfolio-header h3 { font-size: 24px; font-weight: 800; letter-spacing: -.02em; }
.portfolio-header p { color: var(--text-muted); font-size: 14.5px; }

.portfolio-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bento-card {
    position: relative; border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--card); padding: 26px; overflow: hidden;
    transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}
.bento-card:hover { transform: translateY(-4px); border-color: rgba(37, 244, 238, .4); box-shadow: var(--glow-cyan); }
.bento-featured { grid-row: span 2; }
.bento-badge {
    position: absolute; top: 16px; right: 16px; z-index: 1;
    font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
    color: #000; background: linear-gradient(135deg, var(--secondary), #00d4cf);
    border-radius: 999px; padding: 4px 11px; box-shadow: var(--glow-cyan);
}
.bento-badge-alt { color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary)); box-shadow: var(--glow-red); }
.bento-icon { width: 64px; height: 64px; border-radius: 16px; border: 1px solid var(--border); background: var(--card-2); margin-bottom: 16px; object-fit: cover; }
.bento-featured .bento-icon { width: 88px; height: 88px; border-radius: 20px; }
.bento-icon-svg {
    width: 64px; height: 64px; border-radius: 16px; margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center;
    background: var(--card-2); border: 1px solid var(--border); color: var(--secondary);
}
.bento-card h3 { font-size: 17px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 6px; }
.bento-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.bento-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: 12.5px; color: var(--text-muted); font-weight: 600; }
.app-rating {
    display: inline-flex; align-items: center; gap: 4px;
    color: var(--accent); background: var(--accent-soft);
    border: 1px solid rgba(37, 244, 238, .3); border-radius: 999px; padding: 3px 10px;
    font-size: 12.5px; font-weight: 700;
}
.bento-card .btn-details { margin-top: 4px; }
.bento-cta { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; border-color: rgba(254, 44, 85, .4); background: linear-gradient(160deg, rgba(254, 44, 85, .08), var(--card) 55%); }
.bento-cta:hover { border-color: var(--primary); box-shadow: var(--glow-red); }
.bento-cta .bento-icon-svg { background: rgba(254, 44, 85, .12); border-color: rgba(254, 44, 85, .3); color: var(--primary); }
.bento-cta .btn-play-outline.pink { margin-top: 10px; }

/* ============================================================
   PORTFOLIO (large cards)
   ============================================================ */
.portfolio-hero { position: relative; padding: 190px 0 70px; text-align: center; overflow: hidden; }
.portfolio-hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 800px 420px at 30% 0%, rgba(254, 44, 85, .12) 0%, transparent 60%), radial-gradient(ellipse 800px 420px at 75% 0%, rgba(37, 244, 238, .11) 0%, transparent 60%);
}
.portfolio-hero .container-wide { position: relative; }
.portfolio-hero h1 { font-size: clamp(40px, 6vw, 64px); font-weight: 900; letter-spacing: -.035em; margin-bottom: 14px; }
.portfolio-hero p { color: var(--text-muted); max-width: 640px; margin: 0 auto; font-size: 17px; }
.portfolio-stat-bar { display: flex; justify-content: center; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.stat-pill {
    border: 1px solid var(--border); background: var(--card); border-radius: var(--radius);
    padding: 18px 30px; min-width: 150px; transition: border-color .2s, box-shadow .2s;
}
.stat-pill:hover { border-color: rgba(37, 244, 238, .4); box-shadow: var(--glow-cyan); }
.stat-pill strong { display: block; font-size: 28px; font-weight: 900; letter-spacing: -.02em; }
.stat-pill span { font-size: 13px; color: var(--text-muted); }

.portfolio-grid-large { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.portfolio-card {
    position: relative; border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--card); overflow: hidden; padding: 24px;
    transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}
.portfolio-card:hover { transform: translateY(-4px); border-color: rgba(37, 244, 238, .4); box-shadow: var(--glow-cyan); }
.portfolio-card-top { position: absolute; top: 0; left: 0; right: 0; height: 6px; opacity: .8; }
.portfolio-icon { width: 76px; height: 76px; border-radius: 18px; border: 1px solid var(--border); background: var(--card-2); object-fit: cover; margin-bottom: 14px; }
.portfolio-icon-web, .portfolio-icon {
    width: 76px; height: 76px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
    background: var(--card-2); border: 1px solid var(--border); color: var(--secondary); margin-bottom: 14px;
}
.portfolio-info h3 { font-size: 18px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 6px; }
.portfolio-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; font-size: 13px; color: var(--text-muted); font-weight: 600; }
.portfolio-tag {
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
    color: var(--secondary); background: rgba(37, 244, 238, .1);
    border: 1px solid rgba(37, 244, 238, .3); border-radius: 999px; padding: 3px 10px;
}
.portfolio-info p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 16px; }
.app-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.card-link { position: absolute; inset: 0; z-index: 1; }
.portfolio-card .app-actions, .portfolio-card .portfolio-info, .portfolio-card .portfolio-icon { position: relative; z-index: 2; }
.portfolio-card-web:hover { border-color: rgba(37, 244, 238, .4); box-shadow: var(--glow-cyan); }
.portfolio-card-cta { border-color: rgba(254, 44, 85, .4); background: linear-gradient(160deg, rgba(254, 44, 85, .07), var(--card) 55%); }
.portfolio-card-cta:hover { border-color: var(--primary); box-shadow: var(--glow-red); }
.portfolio-card-cta .portfolio-icon-web { color: var(--primary); background: rgba(254, 44, 85, .1); border-color: rgba(254, 44, 85, .3); }

/* Homepage website rows */
.apps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 16px; }
.app-card {
    display: flex; gap: 18px; align-items: flex-start;
    border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--card); padding: 24px;
    transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}
.app-card:hover { transform: translateY(-4px); border-color: rgba(37, 244, 238, .4); box-shadow: var(--glow-cyan); }
.app-icon { width: 60px; height: 60px; border-radius: 16px; flex-shrink: 0; object-fit: cover; border: 1px solid var(--border); background: var(--card-2); }
.app-icon-svg {
    width: 60px; height: 60px; border-radius: 16px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--card-2); border: 1px solid var(--border); color: var(--secondary);
}
.app-icon-svg svg { width: 30px; height: 30px; }
.app-info { flex: 1; min-width: 0; }
.app-name { font-size: 17px; font-weight: 800; margin-bottom: 4px; letter-spacing: -.01em; }
.app-meta { font-size: 13px; color: var(--text-muted); font-weight: 600; margin-bottom: 8px; }
.app-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 30px; }
.process-step {
    border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--card); padding: 22px 18px;
    transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}
.process-step:hover { transform: translateY(-4px); border-color: rgba(254, 44, 85, .4); box-shadow: var(--glow-red); }
.process-step .num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 50%; margin-bottom: 12px;
    font-size: 13px; font-weight: 800; color: #000;
    background: linear-gradient(135deg, var(--secondary), #00d4cf); box-shadow: var(--glow-cyan);
}
.process-step:nth-child(even) .num { background: linear-gradient(135deg, var(--primary), var(--primary)); box-shadow: var(--glow-red); color: #fff; }
.process-step h3 { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   CONTACT (home section)
   ============================================================ */
.contact-section { padding: 80px 0; border-top: 1px solid var(--border); text-align: center; }
.contact-section .section-title { justify-content: center; }
.contact-section > .container > p { color: var(--text-muted); margin-bottom: 30px; }
.contact-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact-link {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid var(--border); background: var(--card); color: var(--text);
    text-decoration: none; padding: 14px 24px; border-radius: 999px;
    font-size: 14.5px; font-weight: 700; transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}
.contact-link svg { width: 18px; height: 18px; color: var(--secondary); }
.contact-link:hover { transform: translateY(-3px); border-color: rgba(37, 244, 238, .4); box-shadow: var(--glow-cyan); color: var(--text); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; margin: 36px 0 60px; }
.pricing-card {
    position: relative; border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--card); padding: 32px 28px; display: flex; flex-direction: column;
    transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
    border-color: rgba(254, 44, 85, .5);
    background: linear-gradient(180deg, rgba(254, 44, 85, .07), var(--card) 45%);
    box-shadow: var(--glow-red);
}
.pricing-starburst {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%); white-space: nowrap;
    background: linear-gradient(135deg, var(--primary), #ff0050); color: #fff;
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
    padding: 5px 15px; border-radius: 999px; box-shadow: var(--glow-red);
}
.pricing-header { margin-bottom: 6px; }
.pricing-header h3 { font-size: 20px; font-weight: 800; margin-bottom: 2px; }
.pricing-header .tag { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.pricing-amount { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 4px; }
.pricing-amount .currency { font-size: 20px; font-weight: 700; color: var(--text-muted); }
.pricing-amount .amount { font-size: 44px; font-weight: 900; letter-spacing: -.03em; line-height: 1; color: var(--text); }
.pricing-card.featured .pricing-amount .amount { color: var(--primary); }
.subtext { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.pricing-card ul { list-style: none; margin-bottom: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-muted); }
.pricing-card ul li::before { content: '✓'; color: var(--secondary); font-weight: 800; flex-shrink: 0; }
.pricing-card ul li.missing { color: #4d4d52; }
.pricing-card ul li.missing::before { content: '—'; color: #4d4d52; }
.pricing-card .btn-order { justify-content: center; width: 100%; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--card); padding: 22px 26px;
    transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: rgba(254, 44, 85, .4); }
.faq-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.faq-item p { font-size: 14.5px; color: var(--text-muted); }
.faq-item a { color: var(--secondary); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    position: relative; padding: 170px 0 60px; text-align: center; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 700px 380px at 50% 0%, rgba(254, 44, 85, .11) 0%, transparent 60%), radial-gradient(ellipse 700px 380px at 20% 0%, rgba(37, 244, 238, .1) 0%, transparent 55%);
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 900; letter-spacing: -.035em; margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); font-size: 16.5px; max-width: 560px; margin: 0 auto; }
.page-hero-img {
    width: 92px; height: 92px; border-radius: 22px; object-fit: cover;
    border: 1px solid var(--border); background: var(--card-2);
    box-shadow: 0 0 40px rgba(37, 244, 238, .25);
    margin-bottom: 20px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero { position: relative; padding: 190px 0 60px; text-align: center; overflow: hidden; }
.contact-hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 800px 420px at 50% 0%, rgba(254, 44, 85, .12) 0%, transparent 60%), radial-gradient(ellipse 600px 400px at 15% 20%, rgba(37, 244, 238, .1) 0%, transparent 55%);
}
.contact-hero-content { position: relative; }
.contact-hero-text { position: relative; z-index: 1; }
.contact-hero-label {
    font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em;
    color: var(--secondary); display: inline-block; margin-bottom: 16px;
    border: 1px solid rgba(37, 244, 238, .35); background: rgba(37, 244, 238, .08);
    padding: 6px 16px; border-radius: 999px;
}
.contact-hero h1 { display: flex; gap: 4px; justify-content: center; font-size: clamp(40px, 6vw, 68px); font-weight: 900; letter-spacing: .02em; margin-bottom: 18px; }
.char { display: inline-block; animation: charPop 1.2s var(--ease) both; }
.char:nth-child(odd) { color: var(--secondary); text-shadow: var(--glow-cyan); animation-delay: calc(.05s * var(--i, 1)); }
.char:nth-child(even) { color: var(--primary); text-shadow: var(--glow-red); animation-delay: calc(.05s * var(--i, 1)); }
@keyframes charPop { from { opacity: 0; transform: translateY(18px) scale(.8); } to { opacity: 1; transform: none; } }
.char-c { animation-delay: .06s; }
.char-o { animation-delay: .12s; }
.char-n { animation-delay: .18s; }
.char-t { animation-delay: .24s; }
.char-a { animation-delay: .3s; }
.char-c2 { animation-delay: .36s; }
.char-t2 { animation-delay: .42s; }
.contact-hero-sub { color: var(--text-muted); font-size: 16.5px; }
.contact-hero-shape { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(40px); }
.shape-1 { width: 220px; height: 220px; top: -30px; right: 6%; background: rgba(254, 44, 85, .16); animation: blob 12s ease-in-out infinite alternate; }
.shape-2 { width: 180px; height: 180px; bottom: -40px; left: 8%; background: rgba(37, 244, 238, .14); animation: blob 10s ease-in-out infinite alternate-reverse; }
.shape-3 { width: 120px; height: 120px; top: 30px; left: 22%; background: rgba(37, 244, 238, .12); animation: blob 14s ease-in-out infinite alternate; }
@keyframes blob { from { transform: translateY(0) scale(1); } to { transform: translateY(24px) scale(1.12); } }

.contact-channels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 34px 0; }
.channel-card {
    display: flex; align-items: center; gap: 16px;
    border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--card); padding: 20px 22px; text-decoration: none;
    transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}
.channel-card:hover { transform: translateY(-3px); border-color: rgba(37, 244, 238, .4); box-shadow: var(--glow-cyan); }
.channel-icon {
    width: 48px; height: 48px; border-radius: 13px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.channel-icon svg { width: 24px; height: 24px; }
.channel-info { flex: 1; min-width: 0; }
.channel-label { display: block; font-size: 12.5px; color: var(--text-muted); font-weight: 600; }
.channel-value { display: block; font-size: 14.5px; font-weight: 700; color: var(--text); }
.channel-badge {
    font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    color: #fff; border-radius: 999px; padding: 4px 10px; flex-shrink: 0;
}

.contact-split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; align-items: start; }
.contact-form-panel, .contact-info-panel {
    border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); padding: 30px;
}
.contact-form-header { margin-bottom: 22px; }
.contact-form-header h2 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.contact-form-header p { color: var(--text-muted); font-size: 14px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field span { font-size: 13px; font-weight: 700; color: var(--text-muted); }
.form-field input, .form-field textarea {
    background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px;
    color: var(--text); padding: 13px 16px; font-size: 14.5px; font-family: inherit;
    transition: border-color .2s, box-shadow .2s; outline: none; width: 100%;
}
.form-field input:focus, .form-field textarea:focus { border-color: rgba(37, 244, 238, .5); box-shadow: 0 0 0 3px rgba(37, 244, 238, .12); }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #55555a; }
.captcha-question { font-size: 14.5px; font-weight: 700; color: var(--text); background: var(--bg-2); border: 1px dashed rgba(37, 244, 238, .4); border-radius: 10px; padding: 10px 14px; }
.captcha-row input { width: 100%; }
.contact-form button[type="submit"] {
    align-self: flex-start; background: var(--primary); color: #fff; border: none;
    padding: 13px 30px; border-radius: 999px; font-size: 14.5px; font-weight: 700; cursor: pointer;
    box-shadow: var(--glow-red); transition: transform .15s var(--ease), box-shadow .2s;
}
.contact-form button[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 0 44px rgba(254, 44, 85, .55); }
.form-status { border-radius: 12px; padding: 14px 18px; font-size: 14.5px; font-weight: 600; margin: 24px 0 0; }
.form-status.success { background: rgba(74, 222, 128, .12); border: 1px solid rgba(74, 222, 128, .4); color: #4ade80; }
.form-status.error { background: rgba(254, 44, 85, .12); border: 1px solid rgba(254, 44, 85, .4); color: var(--primary); }

.contact-info-panel { position: relative; overflow: hidden; }
.info-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.info-card p { color: var(--text-muted); font-size: 14.5px; }
.info-starburst {
    position: absolute; top: -30px; right: -30px; width: 130px; height: 130px; opacity: .35;
    background: repeating-conic-gradient(var(--secondary) 0% 5%, transparent 5% 10%);
    border-radius: 50%; animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.info-divider { height: 1px; background: var(--border); margin: 20px 0; }
.info-location strong { display: block; font-size: 15px; }
.info-location span { color: var(--text-muted); font-size: 13.5px; }

/* ============================================================
   APP PAGES
   ============================================================ */
.app-hero {
    position: relative; padding: 180px 0 70px; text-align: center; overflow: hidden;
}
.app-hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 700px 400px at 50% 0%, color-mix(in srgb, var(--accent) 14%, transparent) 0%, transparent 60%);
}
.app-hero .container { position: relative; }
.app-hero-img {
    width: 110px; height: 110px; border-radius: 26px; object-fit: cover;
    border: 1px solid var(--border); background: var(--card-2);
    box-shadow: 0 0 50px color-mix(in srgb, var(--accent) 35%, transparent);
    margin-bottom: 22px;
}
.app-hero h1 { font-size: clamp(30px, 4.6vw, 48px); font-weight: 900; letter-spacing: -.03em; margin-bottom: 12px; }
.app-hero .rating {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 14px; font-weight: 800; color: var(--accent);
    background: var(--accent-soft); border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
    border-radius: 999px; padding: 5px 13px; margin-bottom: 12px;
}
.app-hero .downloads { font-size: 14px; color: var(--text-muted); font-weight: 600; margin-bottom: 12px; }
.app-hero .meta { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.app-hero .meta span { font-size: 13px; color: var(--text-muted); }
.app-hero .btn-primary {
    background: var(--accent); color: #000; border: none; box-shadow: 0 0 30px color-mix(in srgb, var(--accent) 40%, transparent);
}
.app-hero .btn-primary:hover { background: var(--accent); filter: brightness(1.1); }
.app-resources { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.app-resources a { color: var(--text-muted); font-size: 13.5px; font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: color .15s, border-color .15s; }
.app-resources a:hover { color: var(--accent); border-color: var(--accent); }

.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 26px; }
.feature-card {
    border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--card); padding: 26px;
    transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 45%, transparent); box-shadow: 0 0 30px color-mix(in srgb, var(--accent) 18%, transparent); }
.feature-card .icon {
    width: 46px; height: 46px; border-radius: 13px; margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-soft); color: var(--accent);
    border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
}
.feature-card .icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); }

.screenshots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
.screenshots-grid img {
    width: 100%; border-radius: var(--radius); border: 1px solid var(--border);
    background: var(--card-2); object-fit: cover; aspect-ratio: 9/19; max-width: 300px; margin: 0 auto;
    transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}
.screenshots-grid img:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 45%, transparent); box-shadow: 0 0 30px color-mix(in srgb, var(--accent) 18%, transparent); }

.disclaimer {
    margin: 30px 0 60px; border: 1px solid rgba(255, 210, 0, .35); border-radius: var(--radius);
    background: rgba(255, 210, 0, .06); padding: 20px 24px; font-size: 14px; color: #e8d48a;
}
.disclaimer strong { color: #ffd700; }
.update-note, .networks { display: flex; gap: 10px; flex-wrap: wrap; margin: 10px 0; }
.networks span {
    border: 1px solid var(--border); background: var(--card); color: var(--text-muted);
    font-size: 13px; font-weight: 600; border-radius: 999px; padding: 6px 14px;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 26px; }
.stat-card { text-align: center; }
.stat-card strong { display: block; font-size: 38px; font-weight: 900; letter-spacing: -.03em; color: var(--text); }
.stat-card span { font-size: 14px; color: var(--text-muted); }

/* ============================================================
   LEGAL / CONTENT
   ============================================================ */
.legal-content { padding-bottom: 60px; max-width: 860px; }
.legal-content h2 { font-size: 22px; font-weight: 800; margin: 30px 0 12px; }
.legal-content h3 { font-size: 18px; font-weight: 700; margin: 24px 0 10px; }
.legal-content p, .legal-content li { color: var(--text-muted); font-size: 15px; }
.legal-content ul, .legal-content ol { margin: 10px 0 10px 24px; display: flex; flex-direction: column; gap: 8px; }

/* ============================================================
   CTA BOX
   ============================================================ */
.cta-box {
    text-align: center; border: 1px solid rgba(254, 44, 85, .35); border-radius: var(--radius);
    background: radial-gradient(ellipse at center, rgba(254, 44, 85, .1), var(--card) 65%);
    padding: 60px 30px; margin: 20px 0 60px;
}
.cta-box h3 { font-size: 26px; font-weight: 900; letter-spacing: -.02em; margin-bottom: 10px; }
.cta-box p { color: var(--text-muted); margin-bottom: 26px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 64px 0 30px; margin-top: 20px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 46px; }
.footer-brand .footer-logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; font-size: 20px; color: var(--text); }
.footer-brand p { color: var(--text-muted); font-size: 14.5px; max-width: 300px; margin-top: 14px; }
.footer-col h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--text-muted); text-decoration: none; font-size: 14px; padding: 5px 0; transition: color .15s, transform .2s var(--ease); }
.footer-col a:hover { color: var(--secondary); transform: translateX(3px); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; color: #55555a; font-size: 13.5px; }
.top-link {
    position: fixed; bottom: 26px; right: 26px; z-index: 80;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--glow-red); opacity: 0; transform: translateY(16px); pointer-events: none;
    transition: opacity .3s, transform .3s var(--ease), background .2s;
}
.top-link svg { width: 20px; height: 20px; }
.top-link.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.top-link:hover { background: #ff3b60; }

/* ============================================================
   APP ACCENT THEMES
   ============================================================ */
body.app-theme-sim       { --accent: #25f4ee; --accent-soft: rgba(37,244,238,.1); }
body.app-theme-8171      { --accent: #3080ff; --accent-soft: rgba(48,128,255,.12); }
body.app-theme-bill      { --accent: #ffd166; --accent-soft: rgba(255,209,102,.12); }
body.app-theme-bubble    { --accent: #4ade80; --accent-soft: rgba(74,222,128,.12); }
body.app-theme-dns       { --accent: #a78bfa; --accent-soft: rgba(167,139,250,.14); }
body.app-theme-downloader{ --accent: #fe2c55; --accent-soft: rgba(254,44,85,.1); }
body.app-theme-network   { --accent: #38bdf8; --accent-soft: rgba(56,189,248,.12); }
body.app-theme-qibla     { --accent: #34d399; --accent-soft: rgba(52,211,153,.12); }
body.app-theme-qr        { --accent: #f472b6; --accent-soft: rgba(244,114,182,.12); }
body.app-theme-uninstall { --accent: #fbbf24; --accent-soft: rgba(251,191,36,.12); }
body.app-theme-8070      { --accent: #60a5fa; --accent-soft: rgba(96,165,250,.12); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .process-grid { grid-template-columns: repeat(3, 1fr); }
    .portfolio-grid-large { grid-template-columns: 1fr 1fr; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-copy h1, .hero-copy p { margin-left: auto; margin-right: auto; }
    .hero-copy .hero-cta, .hero-copy .hero-stats { justify-content: center; }
    .hero-visual { min-height: 520px; margin-top: 10px; }
    .chip-rating { right: 8%; }
    .chip-live { left: 4%; }
}
@media (max-width: 900px) {
    .nav-links {
        position: fixed; top: 72px; left: 0; right: 0; z-index: 89;
        flex-direction: column; align-items: stretch; gap: 0;
        background: rgba(0, 0, 0, .96); backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        padding: 12px 24px 22px; display: none;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--border); }
    .nav-links a:last-child { border-bottom: none; }
    .nav-toggle { display: block; }
    .nav-cta { display: none; }
    .hero { padding: 150px 0 80px; }
    .hero-stats { gap: 36px; }
    .portfolio-bento { grid-template-columns: repeat(2, 1fr); }
    .bento-featured { grid-row: span 1; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .services-grid, .features-grid, .screenshots-grid, .contact-channels { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .process-grid { gap: 10px; }
}
@media (max-width: 600px) {
    .portfolio-bento, .pricing-grid, .services-grid, .features-grid, .screenshots-grid,
    .contact-channels, .portfolio-grid-large { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .hero h1 { font-size: clamp(34px, 10vw, 48px); }
    .floaty { font-size: 22px; }
    .section { padding: 64px 0; }
    .apps-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; }
    .contact-links { flex-direction: column; }
    .contact-link { justify-content: center; }
}
