/* ==========================================================================
   iSpyFire — site.css
   Modern dark + fire design system (2026 refresh)
   Used by: index.html, dispatch.html, beta.html, release.html, pay.html
   ========================================================================== */

:root {
    --bg: #0c0e12;
    --bg-alt: #12151c;
    --card: #181c25;
    --card-hover: #1e2330;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);
    --fire: #ff6b1a;
    --fire-soft: #ffa242;
    --fire-gradient: linear-gradient(135deg, #ff8c1a 0%, #ff5722 55%, #e63b12 100%);
    --text: #f2f4f8;
    --muted: #a3adbd;
    --muted-dark: #6b7484;
    --light-bg: #f5f6f8;
    --light-text: #23272f;
    --light-muted: #5b6472;
    --radius: 16px;
    --radius-sm: 10px;
    --maxw: 1120px;
    --nav-h: 64px;
    --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
            Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
    margin: 0;
    padding: 0;
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--text);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--fire-soft); text-decoration: none; }
a:hover { color: #ffc46b; text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.15; margin: 0; font-weight: 700; letter-spacing: -0.02em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 13px;
    font-weight: 700;
    color: var(--fire-soft);
    margin-bottom: 14px;
}

.section-title { font-size: clamp(28px, 4vw, 42px); }
.section-sub { color: var(--muted); max-width: 640px; margin: 18px auto 0; }
.center { text-align: center; }

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(12, 14, 18, 0.82);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.site-nav .wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}
.nav-brand:hover { color: var(--text); text-decoration: none; }
.nav-brand img { height: 34px; width: 34px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: var(--muted);
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--text); text-decoration: none; }

.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    cursor: pointer;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
}
.nav-burger span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--text);
}
.nav-toggle { display: none; }

.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 0;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-fire {
    background: var(--fire-gradient);
    color: #fff;
    box-shadow: 0 4px 18px rgba(255, 92, 26, 0.35);
}
.btn-fire:hover { color: #fff; box-shadow: 0 6px 24px rgba(255, 92, 26, 0.5); }

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-strong);
}
.btn-ghost:hover { color: var(--text); border-color: var(--fire-soft); }

.btn-lg { padding: 14px 30px; font-size: 16px; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    position: relative;
    background-image: url("../img/hero_pattern.jpg");
    background-color: #17120e;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(12, 14, 18, 0.55) 0%,
        rgba(12, 14, 18, 0.72) 60%,
        var(--bg) 100%);
}
.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
    padding: 72px 0 88px;
}

.hero h1 {
    font-size: clamp(36px, 5.4vw, 60px);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}
.hero-appicon { height: 76px; width: 76px; border-radius: 18px; margin-bottom: 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45); }
.hero-lede {
    color: #d9dee7;
    max-width: 540px;
    margin-top: 20px;
    font-size: 18px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}
.hero-ctas { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.store-badges { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.store-badges img { height: 48px; width: auto; }

.hero-phone { display: flex; justify-content: center; }

/* CSS iPhone frame around a raw app screenshot */
.phone-frame {
    width: min(290px, 100%);
    background: #0b0b0d;
    border: 3px solid #3f434b;
    border-radius: 52px;
    padding: 11px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.phone-frame img {
    width: 100%;
    display: block;
    border-radius: 40px;
}

.hero-new-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 26, 0.14);
    border: 1px solid rgba(255, 140, 60, 0.45);
    color: #ffc9a0;
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
}
.hero-new-pill:hover { text-decoration: none; color: #ffdcc2; border-color: var(--fire-soft); }
.hero-new-pill .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--fire);
    box-shadow: 0 0 8px var(--fire);
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }

.card-grid { display: grid; gap: 24px; margin-top: 48px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--card-hover); }
.card h3 { font-size: 21px; margin: 18px 0 10px; }
.card p { color: var(--muted); margin: 0; font-size: 16px; }
.card .card-icon img { height: 56px; width: auto; }

.feature-card { padding: 26px 24px; }
.feature-card h3 { font-size: 17px; margin: 14px 0 8px; }
.feature-card p { font-size: 15px; }
.feature-card .card-icon img { height: 34px; }

/* Split feature bands (image + copy) */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.split-copy h2 { font-size: clamp(26px, 3.4vw, 36px); }
.split-copy p { color: var(--muted); }
.split-media img {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.badge-live {
    display: inline-block;
    background: rgba(46, 204, 113, 0.14);
    color: #6fe3a1;
    border: 1px solid rgba(46, 204, 113, 0.4);
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.badge-new {
    display: inline-block;
    background: rgba(255, 107, 26, 0.16);
    color: var(--fire-soft);
    border: 1px solid rgba(255, 140, 60, 0.45);
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.check-list { list-style: none; padding: 0; margin: 22px 0 0; }
.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--muted);
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--fire-gradient);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.7 5.9-4.2 5a.75.75 0 0 1-1.13.03L4.3 8.7a.75.75 0 1 1 1.1-1.02l1.5 1.62 3.66-4.36a.75.75 0 1 1 1.15.96z'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.7 5.9-4.2 5a.75.75 0 0 1-1.13.03L4.3 8.7a.75.75 0 1 1 1.1-1.02l1.5 1.62 3.66-4.36a.75.75 0 1 1 1.15.96z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ==========================================================================
   CarPlay + Apple Watch device mockups (pure CSS — swap in screenshots later)
   ========================================================================== */

.devices-band {
    background:
        radial-gradient(1200px 500px at 20% 0%, rgba(255, 107, 26, 0.10), transparent 60%),
        radial-gradient(900px 400px at 85% 100%, rgba(255, 107, 26, 0.07), transparent 60%),
        var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.devices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 56px;
    align-items: stretch;
}

.device-panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}
.device-panel h3 { font-size: 22px; }
.device-panel > p { color: var(--muted); font-size: 15.5px; max-width: 420px; margin: 6px 0 26px; }

/* --- CarPlay head unit --- */
.carplay-frame {
    width: 100%;
    max-width: 440px;
    background: #101114;
    border: 1px solid #33363d;
    border-radius: 22px;
    padding: 12px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    margin-top: auto;
}
.carplay-shot { display: block; width: 100%; border-radius: 12px; }
.watch-frame { max-width: 270px; background: #000; }
.watch-shot { display: block; width: 100%; border-radius: 12px; }
.carplay-screen {
    display: grid;
    grid-template-columns: 64px 1fr;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    background: #101319;
    text-align: left;
}
.carplay-dock {
    background: #0a0c10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.carplay-dock .dock-time { color: #cfd6e2; font-size: 11px; font-weight: 600; margin-bottom: 2px; }
.dock-app {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}
.dock-app.maps { background: linear-gradient(160deg, #3f4a5c, #232a36); }
.dock-app.music { background: linear-gradient(160deg, #fc4b63, #c22345); }
.dock-app.phone { background: linear-gradient(160deg, #3fcc5f, #1f9e3e); }
.dock-app.ispy {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(255, 140, 60, 0.55);
}
.dock-app.ispy img { width: 26px; height: 26px; }

.carplay-main { position: relative; }
.carplay-map {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(120, 135, 158, 0.16) 1px, transparent 1px) 0 0 / 100% 34px,
        linear-gradient(90deg, rgba(120, 135, 158, 0.16) 1px, transparent 1px) 0 0 / 34px 100%,
        linear-gradient(155deg, #1a2230 0%, #141a26 60%, #10151f 100%);
}
.carplay-route {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.carplay-callbar {
    position: absolute;
    left: 12px;
    top: 12px;
    right: 12px;
    background: rgba(10, 12, 16, 0.88);
    border: 1px solid rgba(255, 140, 60, 0.5);
    border-radius: 10px;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.carplay-callbar .flame { font-size: 18px; }
.carplay-callbar .call-type { color: #ffb066; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; }
.carplay-callbar .call-addr { color: #dfe5ee; font-size: 12px; }
.carplay-eta {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(10, 12, 16, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 7px 12px;
    color: #dfe5ee;
    font-size: 12px;
    font-weight: 600;
}
.carplay-eta span { color: #6fe3a1; }

/* --- Apple Watch --- */
.watch-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
}
.watch-strap {
    width: 108px;
    height: 46px;
    background: linear-gradient(180deg, #2a2e36, #1d2027);
    border: 1px solid #3a3f49;
}
.watch-strap.top { border-radius: 14px 14px 0 0; border-bottom: 0; }
.watch-strap.bottom { border-radius: 0 0 14px 14px; border-top: 0; }
.watch-case {
    position: relative;
    width: 176px;
    background: linear-gradient(160deg, #3c4049, #22252c);
    border: 1px solid #4a4f5a;
    border-radius: 42px;
    padding: 12px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.watch-crown {
    position: absolute;
    right: -7px;
    top: 42px;
    width: 7px;
    height: 26px;
    border-radius: 3px;
    background: linear-gradient(90deg, #4a4f5a, #2b2f37);
}
.watch-button {
    position: absolute;
    right: -5px;
    top: 82px;
    width: 5px;
    height: 34px;
    border-radius: 2px;
    background: #33373f;
}
.watch-screen {
    background: #000;
    border-radius: 32px;
    height: 190px;
    padding: 14px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.watch-time { color: #9aa3b2; font-size: 11px; font-weight: 600; }
.watch-alert-flame { font-size: 22px; line-height: 1; }
.watch-call-type { color: #ffb066; font-size: 12.5px; font-weight: 800; letter-spacing: 0.04em; }
.watch-call-addr { color: #dfe5ee; font-size: 11px; line-height: 1.35; }
.watch-actions { display: flex; gap: 6px; }
.watch-actions .w-btn {
    flex: 1;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    padding: 7px 0;
    color: #fff;
}
.w-btn.respond { background: var(--fire-gradient); }
.w-btn.ack { background: #2a2e36; color: #cfd6e2; }

.device-note { color: var(--muted-dark); font-size: 14px; margin-top: 40px; }

/* ==========================================================================
   Laptop showcase
   ========================================================================== */

.laptop-showcase { text-align: center; margin-top: 56px; }

/* CSS MacBook frame around the web dashboard screenshot */
.macbook { max-width: 860px; margin: 0 auto; }
.macbook-screen {
    background: #0b0b0d;
    border: 3px solid #3f434b;
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
    padding: 12px 12px 0;
}
.macbook-screen img { display: block; width: 100%; border-radius: 5px 5px 0 0; }
.macbook-base {
    position: relative;
    width: 112%;
    margin-left: -6%;
    height: 15px;
    background: linear-gradient(180deg, #4a4f5a, #2b2f37);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.5);
}
.macbook-base span {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 110px;
    height: 6px;
    background: #1d2026;
    border-radius: 0 0 8px 8px;
}

/* ==========================================================================
   Recognition / news
   ========================================================================== */

.news-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
}
.news-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 12, 16, 0.15) 0%, rgba(10, 12, 16, 0.88) 85%);
}
.news-card > * { position: relative; z-index: 1; }
.news-card .news-tag {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--fire-soft);
}
.news-card h3 { font-size: 20px; margin: 8px 0 6px; }
.news-card p { color: #c6cdd8; font-size: 14.5px; margin: 0; }

/* ==========================================================================
   Customers (light band)
   ========================================================================== */

.customers-band { background: var(--light-bg); color: var(--light-text); }
.customers-band .section-title { color: var(--light-text); }
.customers-band .section-sub { color: var(--light-muted); }
.customer-logos {
    margin-top: 44px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px 34px;
}
.customer-logos img {
    max-height: 88px;
    max-width: 118px;
    filter: grayscale(35%);
    opacity: 0.85;
    transition: filter 0.2s ease, opacity 0.2s ease;
}
.customer-logos img:hover { filter: none; opacity: 1; }

/* ==========================================================================
   Pricing / CTA
   ========================================================================== */

.pricing-card {
    max-width: 760px;
    margin: 48px auto 0;
    background:
        radial-gradient(600px 260px at 50% 0%, rgba(255, 107, 26, 0.12), transparent 70%),
        var(--card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: 48px 40px;
    text-align: center;
}
.pricing-points { list-style: none; margin: 26px 0 0; padding: 0; }
.pricing-points li { margin-bottom: 16px; color: var(--muted); }
.pricing-points strong { color: var(--text); }
.pricing-phone {
    margin-top: 34px;
    font-size: 22px;
    font-weight: 700;
}
.pricing-phone a { color: var(--fire-soft); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: #090b0e;
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
    font-size: 15px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
}
.site-footer h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-dark);
    margin-bottom: 18px;
}
.site-footer p, .site-footer li { color: var(--muted); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--fire-soft); }
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}
.footer-brand img { height: 30px; width: 30px; }
.footer-social { display: flex; gap: 14px; margin-top: 8px; }
.footer-social img { height: 28px; width: 28px; border-radius: 6px; }
.footer-legal {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--muted-dark);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

/* ==========================================================================
   Login modal (overrides for jquery-modal + legacy form classes)
   ========================================================================== */

.modal {
    border-radius: var(--radius) !important;
    background: #fff;
}
.modal .headerTextDark { font-size: 26px; font-weight: 700; color: #23272f; }
.modal a.close-modal { top: 14px; right: 14px; }

.ispyform {
    width: 80%;
    line-height: 30px;
    font-size: 17px;
    margin-bottom: 12px;
    font-family: var(--font);
}
.ispyformInput {
    background-color: #fff;
    border: solid 2px #d8dce3;
    font-size: 16px;
    color: #23272f;
    border-radius: 10px;
    padding: 10px 12px;
}
.ispyformInput:focus { outline: none; border-color: var(--fire); }
.ispyformSubmit, .ispyformAgencySelect {
    background: var(--fire-gradient);
    border: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 13px 25px;
    border-radius: 999px;
    cursor: pointer;
    margin: 16px 0;
    font-family: var(--font);
}
.ispyformAgencySelect { width: 60%; margin: 4px; }
.ispyformLarge { width: 85%; }
.alignCenter { text-align: center; }
.alignLeft { text-align: left; }
.marginTop20 { margin-top: 20px; }
.marginBottom40 { margin-bottom: 40px; }

/* ==========================================================================
   Subpages (dispatch, beta, release, pay)
   ========================================================================== */

.page-header {
    background:
        radial-gradient(900px 340px at 50% -10%, rgba(255, 107, 26, 0.14), transparent 70%),
        var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 72px 0;
    text-align: center;
}
.page-header h1 { font-size: clamp(30px, 4.6vw, 46px); }
.page-header p { color: var(--muted); max-width: 640px; margin: 18px auto 0; }

.prose { max-width: 760px; margin: 0 auto; color: var(--muted); }
.prose strong { color: var(--text); }
.prose h2 { color: var(--text); font-size: 24px; margin: 40px 0 14px; }

/* Legacy release-note markup (release.html) restyled without touching content */
.release-list { max-width: 800px; margin: 0 auto; padding: 24px; }
.release-list .content { max-width: 100%; }
.release-list .paddingTB50_20 { padding: 12px 0; }
.release-list .releasebox {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 30px;
    width: auto;
    float: none;
    min-width: 0;
    text-align: left;
}
.release-list .headerTextDark {
    font-size: 21px;
    font-weight: 700;
    color: var(--text);
}
.release-list .generalTextLight { color: var(--muted); font-size: 15.5px; }
.release-list .generalTextLight ul { margin: 14px 0 0; padding-left: 22px; }
.release-list .generalTextLight li { margin-bottom: 6px; }
.release-list .box2, .release-list .box2right { float: none; width: auto; min-width: 0; }
.release-list .clearfix::after { content: ""; clear: both; display: block; }
.release-list img {
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    margin: 10px;
    max-width: 380px;
}

.release-entry {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-bottom: 24px;
}
.release-entry h2, .release-entry .headerTextDark {
    font-size: 21px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 4px;
}
.release-entry .release-date, .release-entry .generalTextLight { color: var(--muted); font-size: 15px; }
.release-entry ul { color: var(--muted); margin: 14px 0 0; padding-left: 22px; }
.release-entry li { margin-bottom: 6px; }
.release-entry img, .box2releaseimage {
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    margin: 10px;
    max-width: 380px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media screen and (max-width: 1150px) {
    .nav-links { gap: 16px; }
    .nav-links a { font-size: 14px; }
}

@media screen and (max-width: 960px) {
    .nav-burger { display: flex; }
    .site-nav nav {
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #0c0e12;
        border-bottom: 1px solid var(--border);
        padding: 8px 0;
        position: relative;
        z-index: 99;
    }
    .nav-toggle:checked ~ nav .nav-links { display: flex; }
    .nav-links a {
        display: block;
        padding: 13px 24px;
        font-size: 16px;
    }
}

@media screen and (max-width: 1000px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { grid-template-columns: 1fr; padding: 56px 0 64px; }
    .hero-phone { order: 2; }
    .phone-frame { width: min(250px, 100%); }
    .split { grid-template-columns: 1fr; gap: 32px; }
    .devices-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media screen and (max-width: 680px) {
    body { font-size: 16px; }
    .section { padding: 60px 0; }
    .grid-3 { grid-template-columns: 1fr; }
    .hero-phone { display: none; }
    .macbook-base { width: 100%; margin-left: 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .store-badges img { height: 42px; }
    .pricing-card { padding: 36px 24px; }
    .device-panel { padding: 28px 18px; }
}
