/* Omni Remote — Landing pages shared styles (Apple-style refresh) */

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

:root {
    --primary: #0071e3;
    --primary-dark: #0077ed;
    --ink: #1d1d1f;
    --ink-soft: #6e6e73;
    --muted: #86868b;
    --bg: #ffffff;
    --bg-soft: #f5f5f7;
    --border: #d2d2d7;
    --success: #34c759;
    --radius: 18px;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.47;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    letter-spacing: -0.005em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Top bar — sticky, translucent, minimal */
.topbar {
    padding: 12px 0;
    border-bottom: 1px solid rgba(210, 210, 215, 0.5);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    position: sticky;
    top: 0;
    z-index: 50;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.brand {
    font-weight: 500;
    font-size: 17px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 9px;
    letter-spacing: -0.01em;
}
.brand-mark {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 600;
    font-size: 11px;
}
.topbar a.cta-mini {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary);
}
.topbar a.cta-mini:hover { text-decoration: underline; }

/* Hero — solid white, generous spacing */
.hero {
    padding: 96px 0 80px;
    background: var(--bg);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero h1 {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.022em;
    color: var(--ink);
}
.hero h1 .accent {
    color: inherit;
}
.hero p.lead {
    font-size: 21px;
    line-height: 1.4;
    color: var(--ink-soft);
    margin-bottom: 36px;
    letter-spacing: -0.005em;
}

/* Proof points — inline microtext, no pills */
.badges {
    display: block;
    margin-bottom: 24px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: var(--ink-soft);
}
.badge {
    display: inline;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
}
.badge + .badge::before {
    content: '·';
    margin: 0 8px;
    color: var(--muted);
}
.badge .dot { display: none; }

/* CTAs — pill buttons */
.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 15px;
    transition: background-color .15s ease, color .15s ease;
    text-decoration: none !important;
    letter-spacing: -0.005em;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-dark);
}
.btn-ghost {
    background: var(--bg-soft);
    color: var(--ink);
    border: none;
}
.btn-ghost:hover {
    background: #ebebed;
}
.cta-meta {
    font-size: 14px;
    color: var(--muted);
    margin-top: 20px;
}

.hero-image {
    text-align: center;
}
.hero-image img {
    max-width: 340px;
    margin: 0 auto;
    border-radius: 32px;
}

/* Sections — generous padding, no borders */
section.block {
    padding: 112px 0;
}
section.block + section.block { border-top: none; }
.block.alt { background: var(--bg-soft); }

h2.section-title {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.022em;
    line-height: 1.1;
    margin-bottom: 14px;
    color: var(--ink);
}
p.section-lead {
    color: var(--ink-soft);
    font-size: 19px;
    line-height: 1.4;
    margin-bottom: 56px;
    max-width: 720px;
    letter-spacing: -0.005em;
}

/* Feature grid — no cards, line icons */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
}
.feature {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}
.feature .icon {
    width: 28px; height: 28px;
    color: var(--primary);
    display: grid; place-items: center;
    margin-bottom: 16px;
    line-height: 1;
}
.feature .icon svg {
    width: 100%; height: 100%;
    display: block;
}
.feature h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.feature p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.5;
}

/* Steps — minimalist, "01 / 02 / 03" labels */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    counter-reset: step;
}
.step {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    position: relative;
}
.step img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 0 20px;
    border-radius: 18px;
    background: var(--bg-soft);
}
.step::before {
    counter-increment: step;
    content: '0' counter(step);
    position: static;
    width: auto; height: auto;
    background: transparent;
    color: var(--primary);
    box-shadow: none;
    border-radius: 0;
    display: block;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    margin-top: 0;
    padding: 0;
}
.step h3 {
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.step p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.5;
}

/* Screenshot strip — clean, no card chrome */
.shots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: end;
}
.shot {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: center;
}
.shot img {
    border-radius: 18px;
    margin: 0 auto 16px;
    max-height: 420px;
    width: auto;
}
.shot .label {
    font-size: 13px;
    color: var(--ink-soft);
    font-weight: 500;
}

/* Compatibility list — borderless, divided by lines */
.compat {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
}
.compat li {
    list-style: none;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 14px 0;
    font-size: 15px;
    color: var(--ink);
}
.compat li::before {
    content: '✓';
    color: var(--success);
    font-weight: 500;
    margin-right: 10px;
    font-size: 13px;
}

/* FAQ — divider lines, no card boxes */
.faq details {
    background: transparent;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    padding: 22px 0;
    margin-bottom: 0;
}
.faq details:last-of-type {
    border-bottom: 1px solid var(--border);
}
.faq details[open] { box-shadow: none; }
.faq summary {
    cursor: pointer;
    font-weight: 500;
    font-size: 17px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    color: var(--muted);
    font-size: 20px;
    font-weight: 300;
    transition: transform .2s ease;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer {
    margin-top: 12px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.5;
}

/* CTA section — solid black, full bleed */
.cta-final {
    text-align: center;
    background: var(--ink);
    color: #fff;
    padding: 112px 24px;
    border-radius: 0;
    margin: 0 -22px;
}
.cta-final h2 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: -0.022em;
    line-height: 1.1;
}
.cta-final p {
    font-size: 19px;
    color: var(--muted);
    margin-bottom: 36px;
    letter-spacing: -0.005em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-final .btn-primary {
    background: var(--primary);
    color: #fff;
}
.cta-final .btn-primary:hover {
    background: var(--primary-dark);
}

/* Footer — minimal */
.footer {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    color: var(--muted);
    font-size: 12px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--ink); text-decoration: underline; }

/* Responsive */
@media (max-width: 880px) {
    .hero { padding: 64px 0 48px; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-image img { max-width: 260px; }
    .hero h1 { font-size: 38px; }
    .hero p.lead { font-size: 18px; }

    .features, .steps, .shots {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .cta-row { justify-content: center; }
    .badges { text-align: center; }

    section.block { padding: 72px 0; }
    h2.section-title { font-size: 28px; }
    p.section-lead { font-size: 17px; margin-bottom: 40px; }

    .cta-final { padding: 72px 20px; }
    .cta-final h2 { font-size: 30px; }
    .cta-final p { font-size: 17px; }
}
