/* ==================== RESET & FONTS ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
*::-webkit-scrollbar { display: none; }

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #111111;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea,
a,
p,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
li {
    font-family: 'Poppins', sans-serif;
}

/* ==================== PAGE WRAP ==================== */
.page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 40px 100px;
}

/* ==================== APPS GRID ==================== */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 14px;
}
.app-card {
    background: #ffffff;
    border: 1px solid #efefef;
    border-radius: 20px;
    padding: 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.app-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.app-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: #111111;
}
.app-card-desc {
    color: #8c8c8c;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.app-card-cta {
    font-size: 0.86rem;
    font-weight: 700;
    color: #111111;
}
.app-card-links {
    list-style: none;
    margin-top: 12px;
    display: grid;
    gap: 6px;
}
.app-card-links a {
    font-size: 0.84rem;
    color: #aaaaaa;
    transition: color 0.18s;
}
.app-card-links a:hover { color: #111111; }

/* ==================== FEATURE JUMP ==================== */
.feature-jump {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 14px;
}
.feature-jump-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: #c0c0c0;
    margin-bottom: 12px;
}
.feature-jump-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.feature-jump-links a {
    font-size: 0.83rem;
    font-weight: 600;
    color: #7a7a7a;
    background: #eeeeee;
    padding: 7px 14px;
    border-radius: 999px;
    transition: background 0.18s, color 0.18s;
}
.feature-jump-links a:hover { background: #111111; color: #ffffff; }

/* ==================== FEATURE BLOCKS ==================== */
.feature-block {
    background: #ffffff;
    border: 1px solid #efefef;
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 14px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
    transition: border-color 0.2s;
}
.feature-block:hover { border-color: #d8d8d8; }
.feature-block[id] { scroll-margin-top: 88px; }

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
    color: #111111;
    line-height: 1.2;
}
.feature-text {
    color: #8d8d8d;
    font-size: 0.94rem;
    line-height: 1.85;
    margin-bottom: 16px;
    font-weight: 400;
}
.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.feature-list li {
    color: #6e6e6e;
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
    font-size: 0.92rem;
    font-weight: 400;
}
.feature-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #d0d0d0;
    font-weight: 400;
}

/* ==================== SCREENSHOT STACK ==================== */
.screenshot-stack { display: grid; gap: 10px; }
.screenshot-note {
    font-size: 0.72rem;
    color: #c8c8c8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 4px;
}
.screenshot-box {
    min-height: 130px;
    border-radius: 14px;
    background: #f7f7f7;
    border: 1px dashed #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #c0c0c0;
    font-size: 0.82rem;
    line-height: 1.6;
    padding: 16px;
    transition: background 0.18s;
}
.screenshot-box:hover { background: #f0f0f0; }

/* ==================== FOOTER ==================== */
.site-footer {
    background: #111111;
    color: #ffffff;
    padding: 80px 40px 40px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 64px;
}
.footer-brand h2 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 8px;
}
.footer-brand h2 span:last-child {
    color: rgba(255,255,255,0.3);
    font-weight: 400;
}
.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}
.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}
.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}
.footer-links-list a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
    text-decoration: none;
    transition: color 0.18s;
}
.footer-links-list a:hover { color: #ffffff; }
.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 32px;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    font-weight: 400;
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.18s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 980px) {
    .apps-grid { grid-template-columns: 1fr; }
    .feature-block { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .header {
        height: auto;
        padding: 14px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .top-nav {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
    }
    .page-hero { padding: 130px 20px 28px; }
    .page-wrap { padding: 6px 20px 64px; }
    .site-footer { padding: 60px 20px 32px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #efefef;
}

.brand {
    font-size: 1.85rem;
    letter-spacing: -0.02em;
    cursor: pointer;
    user-select: none;
}

.brand .big { color: #111111; font-weight: 700; }
.brand .bite { color: rgba(0,0,0,0.25); font-weight: 400; }

.top-nav {
    display: inline-flex;
    gap: 8px;
    background: #f4f4f4;
    padding: 4px;
    border-radius: 999px;
}

.top-nav a {
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: #8f8f8f;
    padding: 10px 16px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.top-nav a.active {
    background: #111111;
    color: #ffffff;
}

.page-hero {
    max-width: 1120px;
    margin: 0 auto;
    padding: 132px 40px 30px;
}

.page-kicker {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: #c2c2c2;
    margin-bottom: 14px;
}

.page-title {
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 16px;
}

.page-subtitle {
    max-width: 720px;
    color: #9d9d9d;
    line-height: 1.75;
    font-size: 1rem;
}

.page-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 10px 40px 84px;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 26px;
}

.app-card {
    border: 1px solid #efefef;
    border-radius: 24px;
    padding: 22px;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
}

.app-card-title {
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.app-card-desc {
    color: #8c8c8c;
    font-size: 0.94rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.app-card-cta {
    color: #111111;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.app-card-links {
    list-style: none;
    margin-top: 12px;
    display: grid;
    gap: 6px;
}

.app-card-links a {
    text-decoration: none;
    font-size: 0.84rem;
    color: #949494;
}

.app-card-links a:hover {
    color: #111111;
}

.feature-jump {
    border: 1px solid #efefef;
    border-radius: 24px;
    padding: 16px;
    margin-bottom: 16px;
    background: #ffffff;
}

.feature-jump-title {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #b7b7b7;
    margin-bottom: 10px;
}

.feature-jump-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-jump-links a {
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 600;
    color: #8f8f8f;
    background: #f4f4f4;
    padding: 8px 12px;
    border-radius: 999px;
}

.feature-jump-links a:hover {
    color: #111111;
    background: #ebebeb;
}

.feature-block {
    border: 1px solid #efefef;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    align-items: start;
}

.feature-block[id] {
    scroll-margin-top: 108px;
}

.feature-title {
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.feature-text {
    color: #8d8d8d;
    font-size: 0.96rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.feature-list {
    list-style: none;
    margin-top: 6px;
}

.feature-list li {
    color: #757575;
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    font-size: 0.94rem;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #b0b0b0;
}
