:root {
    --mac-dark: #0d1117;
    --mac-panel: #161b22;
    --mac-border: #30363d;
    --mac-blue: #58a6ff;
    --mac-text: #c9d1d9;
    --mac-dim: #8b949e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--mac-dark);
    color: var(--mac-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    line-height: 1.5;
}

/* Apple-style floating dock nav */
.dock-nav {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
    background: rgba(22, 27, 34, 0.8); backdrop-filter: blur(20px);
    border: 1px solid var(--mac-border); border-radius: 20px;
    padding: 10px 20px; display: flex; gap: 25px; align-items: center; z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.dock-item {
    color: var(--mac-dim); font-size: 13px; font-weight: 600; text-decoration: none;
    display: flex; flex-direction: column; align-items: center; gap: 5px; transition: 0.2s;
}
.dock-item:hover { color: var(--mac-blue); transform: translateY(-3px); }
.dock-item.brand { font-size: 16px; font-weight: 900; color: #fff; }
.dock-btn {
    background: var(--mac-blue); color: #000; padding: 8px 20px; border-radius: 15px;
    font-weight: bold; font-size: 13px; text-decoration: none;
}
.dock-btn:hover { background: #79c0ff; }

/* Layout: Full width sections, alternating styles */
.wrapper { margin-bottom: 120px; }

.sec-hero {
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 20px;
    background: radial-gradient(circle at top, #1f2a3a, var(--mac-dark) 50%);
}
.sec-hero h1 { font-size: 72px; font-weight: 800; letter-spacing: -2px; margin-bottom: 20px; color: #fff;}
.sec-hero p { font-size: 24px; color: var(--mac-dim); max-width: 800px; margin-bottom: 40px; font-weight: 500;}
.hero-acts { display: flex; gap: 20px; }
.btn-m {
    padding: 15px 35px; border-radius: 30px; font-size: 18px; font-weight: 600; text-decoration: none;
    background: var(--mac-blue); color: #000; transition: 0.2s;
}
.btn-m:hover { transform: scale(1.05); }
.btn-outline {
    background: transparent; color: var(--mac-blue); border: 2px solid var(--mac-blue);
}

.sec-pad { padding: 100px 5vw; border-top: 1px solid var(--mac-border); }

/* Bento Grid for Features and Stats */
.bento-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 20px;
    max-width: 1400px; margin: 0 auto;
}
.b-card { background: var(--mac-panel); border: 1px solid var(--mac-border); border-radius: 20px; padding: 40px; }
.b-large { grid-column: span 2; grid-row: span 2; }
.b-wide { grid-column: span 2; grid-row: span 1; display: flex; flex-direction: column; justify-content: center;}

.b-card h3 { font-size: 24px; color: #fff; margin-bottom: 15px; }
.b-large h3 { font-size: 36px; }
.b-card p { font-size: 16px; color: var(--mac-dim); }

.stat-val { font-size: 48px; font-weight: 900; color: var(--mac-blue); margin-bottom: 10px; line-height: 1;}
.stat-lbl { font-size: 14px; font-weight: 600; color: var(--mac-text); text-transform: uppercase;}

/* Trust Strip inside a bento */
.trust-list { display: flex; flex-direction: column; gap: 15px; }
.t-li { font-size: 16px; color: var(--mac-text); display: flex; align-items: center; gap: 10px; }
.t-li::before { content: '✓'; color: var(--mac-blue); font-weight: bold; }

/* Horizontal scrolling nodes */
.node-scroller {
    display: flex; gap: 30px; overflow-x: auto; padding: 20px 0;
    scrollbar-width: none;
}
.node-scroller::-webkit-scrollbar { display: none; }
.n-item { flex: 0 0 300px; background: var(--mac-panel); border: 1px solid var(--mac-border); border-radius: 16px; padding: 30px; }
.n-item h4 { font-size: 20px; color: #fff; margin-bottom: 10px; }
.n-item span { font-size: 14px; color: var(--mac-blue); font-weight: bold; }

/* Info Section (Reviews & FAQ) */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1400px; margin: 0 auto; }
.i-head { font-size: 32px; color: #fff; margin-bottom: 40px; }

.r-box { border-bottom: 1px solid var(--mac-border); padding: 20px 0; }
.r-stars { color: #fbbf24; margin-bottom: 10px; }
.r-box p { font-size: 16px; color: var(--mac-text); margin-bottom: 10px; }
.r-box b { font-size: 14px; color: var(--mac-dim); }

.q-box { border-bottom: 1px solid var(--mac-border); padding: 20px 0; }
.q { font-size: 18px; font-weight: 600; color: #fff; cursor: pointer; display: flex; justify-content: space-between; }
.a { padding-top: 15px; color: var(--mac-dim); display: none; }

footer { text-align: center; padding: 40px; color: var(--mac-dim); font-size: 14px; border-top: 1px solid var(--mac-border);}

@media (max-width: 1000px) {
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .b-large, .b-wide { grid-column: span 1; grid-row: span 1; }
    .info-grid { grid-template-columns: 1fr; }
    .sec-hero h1 { font-size: 48px; }
    .dock-nav { width: 95%; justify-content: space-around; padding: 10px; }
    .dock-item { font-size: 11px; }
}