:root{
    --bg:#0f172a;
    --bg-soft:#111c33;
    --card:#1e293b;
    --card-soft:#172033;

    --primary:#38bdf8;
    --primary-dark:#0ea5e9;

    --text:#f8fafc;
    --muted:#94a3b8;

    --border:#334155;
    --border-soft:rgba(148,163,184,.18);

    --success:#22c55e;

    --shadow:0 24px 70px rgba(0,0,0,.35);
    --radius:22px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:'Inter',sans-serif;
    background:
        radial-gradient(circle at top left, rgba(56,189,248,.14), transparent 32%),
        radial-gradient(circle at top right, rgba(34,197,94,.08), transparent 28%),
        var(--bg);
    color:var(--text);
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:min(1180px, calc(100% - 40px));
    margin:0 auto;
}

/* HEADER */

.site-header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(15,23,42,.82);
    backdrop-filter:blur(18px);
    border-bottom:1px solid var(--border-soft);
}

.header-inner{
    min-height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:20px;
    font-weight:800;
    letter-spacing:-.03em;
}

.brand img{
    width:75px;
    height:75px;
    object-fit:contain;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:26px;
    color:var(--muted);
    font-size:14px;
    font-weight:600;
}

.main-nav a:hover{
    color:var(--text);
}

.header-btn{
    padding:11px 18px;
    border-radius:999px;
    background:rgba(56,189,248,.12);
    color:var(--primary);
    border:1px solid rgba(56,189,248,.32);
    font-size:14px;
    font-weight:700;
}

.header-btn:hover{
    background:rgba(56,189,248,.2);
}

/* BUTTONS */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 22px;
    border-radius:999px;
    font-weight:800;
    font-size:15px;
    transition:.2s ease;
}

.btn-primary{
    background:var(--primary);
    color:#082f49;
    box-shadow:0 12px 35px rgba(56,189,248,.22);
}

.btn-primary:hover{
    background:#7dd3fc;
    transform:translateY(-2px);
}

.btn-secondary{
    color:var(--text);
    border:1px solid var(--border);
    background:rgba(30,41,59,.45);
}

.btn-secondary:hover{
    border-color:rgba(56,189,248,.5);
    transform:translateY(-2px);
}

/* HERO */

.hero{
    padding:120px 0 100px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1.05fr;
    gap:58px;
    align-items:center;
}

.eyebrow,
.section-heading span,
.section-label{
    display:inline-flex;
    margin-bottom:18px;
    padding:8px 13px;
    border-radius:999px;
    background:rgba(56,189,248,.1);
    color:var(--primary);
    border:1px solid rgba(56,189,248,.24);
    font-size:13px;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.hero h1{
    margin:0;
    max-width:620px;
    font-size:clamp(46px, 6vw, 78px);
    line-height:.95;
    letter-spacing:-.075em;
    max-width:700px;
}

.hero p{
    margin:28px 0 0;
    max-width:560px;
    color:var(--muted);
    font-size:19px;
    line-height:1.7;
}

.hero-actions{
    margin-top:34px;
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

/* PREVIEWS */

.hero-preview,
.safety-preview{
    overflow:hidden;
    border-radius:var(--radius);
    border:1px solid var(--border);
    background:
        linear-gradient(145deg, rgba(30,41,59,.95), rgba(15,23,42,.95));
    box-shadow:var(--shadow);
}

.browser-bar{
    height:44px;
    display:flex;
    align-items:center;
    gap:8px;
    padding:0 16px;
    border-bottom:1px solid var(--border-soft);
    background:rgba(15,23,42,.82);
}

.browser-bar span{
    width:11px;
    height:11px;
    border-radius:50%;
    background:#64748b;
}

.browser-bar span:nth-child(1){
    background:#ef4444;
}

.browser-bar span:nth-child(2){
    background:#f59e0b;
}

.browser-bar span:nth-child(3){
    background:#22c55e;
}

.preview-placeholder{
    min-height:410px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px;
    color:var(--muted);
    font-size:18px;
    font-weight:800;
    text-align:center;
    background:
        linear-gradient(135deg, rgba(56,189,248,.12), transparent 35%),
        radial-gradient(circle at center, rgba(56,189,248,.08), transparent 42%),
        #0b1220;
}

/* SECTIONS */

.section{
    padding:86px 0;
}

.section-heading{
    max-width:720px;
    margin:0 auto 44px;
    text-align:center;
}

.section-heading h2,
.safety-grid h2{
    margin:0;
    font-size:clamp(34px, 4vw, 52px);
    line-height:1;
    letter-spacing:-.055em;
}

.section-heading p,
.safety-grid p{
    margin:18px auto 0;
    color:var(--muted);
    font-size:18px;
    line-height:1.7;
}

/* CARDS */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
}


.card{
    padding:32px;
    border-radius:20px;
    background:rgba(30,41,59,.72);
    border:1px solid var(--border-soft);
    transition:.2s ease;
    min-height:240px;
}

.card:hover{
    transform:translateY(-4px);
    border-color:rgba(56,189,248,.38);
    background:rgba(30,41,59,.92);
}

.card h3{
    margin:0 0 14px;
    font-size:20px;
    letter-spacing:-.03em;
}

.card p{
    margin:0;
    color:var(--muted);
    line-height:1.65;
}

/* SPORTS */

.sports-section{
    padding-top:20px;
}

.sports-grid{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:14px;
}

.sports-grid div{
    padding:18px 14px;
    border-radius:16px;
    background:rgba(15,23,42,.64);
    border:1px solid var(--border-soft);
    color:var(--text);
    font-weight:800;
    text-align:center;
}

/* SAFETY */

.safety-section{
    background:rgba(15,23,42,.42);
}

.safety-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:54px;
    align-items:center;
}

.safety-grid p{
    margin-left:0;
    max-width:620px;
}

.check-list{
    list-style:none;
    padding:0;
    margin:28px 0 0;
    display:grid;
    gap:13px;
}

.check-list li{
    position:relative;
    padding-left:30px;
    color:var(--text);
    font-weight:700;
}

.check-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:4px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:rgba(34,197,94,.16);
    border:1px solid rgba(34,197,94,.42);
}

.check-list li::after{
    content:"";
    position:absolute;
    left:6px;
    top:9px;
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--success);
}

.safety-preview .preview-placeholder{
    min-height:360px;
}
/* WHY BEACON */

.why-section{
    padding-top:80px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

.why-card{
    padding:30px;

    border-radius:22px;

    background:
        linear-gradient(145deg, rgba(30,41,59,.76), rgba(15,23,42,.72));

    border:1px solid var(--border-soft);

    transition:.2s ease;
}

.why-card:hover{
    transform:translateY(-4px);

    border-color:rgba(56,189,248,.38);

    background:
        linear-gradient(145deg, rgba(30,41,59,.92), rgba(15,23,42,.82));
}

.why-card h3{
    margin:0 0 14px;

    font-size:22px;
    line-height:1.2;
    letter-spacing:-.04em;
}

.why-card p{
    margin:0;

    color:var(--muted);

    line-height:1.65;
}
/* INCLUDED */

.includes-section{
    padding-top:30px;
    padding-bottom:40px;
}

.compact-heading{
    margin-bottom:28px;
}

.includes-list{
    max-width:980px;
    margin:0 auto;

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.includes-list span{
    padding:11px 16px;

    border-radius:999px;

    background:rgba(30,41,59,.62);

    border:1px solid var(--border-soft);

    color:var(--text);

    font-size:14px;
    font-weight:800;
}

.includes-list span:hover{
    border-color:rgba(56,189,248,.38);

    color:var(--primary);
}
/* SCREENSHOTS */

.screens-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
}

.screenshot-card{
    padding:14px;
    border-radius:20px;
    background:rgba(30,41,59,.72);
    border:1px solid var(--border-soft);
    transition:.2s ease;
    overflow:hidden;
}

.screenshot-card:hover{
    transform:translateY(-4px);
    border-color:rgba(56,189,248,.38);
}

.screenshot-box{
    min-height:190px;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--muted);
    font-weight:800;
    background:
        linear-gradient(135deg, rgba(56,189,248,.12), transparent 38%),
        #0b1220;
    border:1px solid rgba(148,163,184,.12);
}

.screenshot-card h3{
    margin:14px 4px 4px;
    font-size:17px;
    letter-spacing:-.02em;
}


/* FOOTER */

.site-footer{
    border-top:1px solid var(--border-soft);
    padding:42px 0;
    background:rgba(15,23,42,.78);
}

.footer-compact{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.footer-brand-compact{
    display:flex;
    justify-content:center;
}

.footer-brand-compact img{
    width:180px;
    height:auto;
    object-fit:contain;
}

.footer-brand-compact strong{
    display:block;
    font-size:28px;
    line-height:1;
    letter-spacing:-.05em;
}

.footer-brand-compact p{
    margin:7px 0 0;
    color:var(--muted);
    font-size:15px;
    font-weight:700;
}

.footer-links-compact{
    margin-top:28px;

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px 22px;
    margin-bottom:20px;
}

.footer-links-compact a{
    color:var(--muted);
    font-size:14px;
    font-weight:800;
}

.footer-links-compact a:hover{
    color:var(--primary);
}

.footer-tagline{
    margin-top:26px;

    color:var(--text);

    font-size:15px;
    font-weight:800;
}

.footer-copy{
    margin-top:12px;

    color:var(--muted);

    font-size:13px;
    font-weight:700;
}

/* RESPONSIVE */

@media (max-width:1000px){

    .hero-grid,
    .safety-grid{
        grid-template-columns:1fr;
    }
    .why-grid{
    grid-template-columns:1fr;
    }
    .feature-grid{
    grid-template-columns:repeat(2, 1fr);
    }

    .capture-list{
    grid-template-columns:1fr;
    }
    .sports-grid{
    grid-template-columns:repeat(3, 1fr);
    }
    .workflow-grid{
    grid-template-columns:repeat(2, 1fr);
    }

    .workflow-step::after{
    display:none;
    }

}


@media (max-width:760px){

    .container{
        width:min(100% - 28px, 1180px);
    }
.why-grid{
    grid-template-columns:1fr;
}
    .header-inner{
        min-height:auto;
        padding:16px 0;
        align-items:flex-start;
        flex-direction:column;
    }

    .main-nav{
        width:100%;
        overflow:auto;
        padding-bottom:4px;
    }

    .header-btn{
        display:none;
    }

    .hero{
        padding:52px 0 54px;
    }

    .hero h1{
        font-size:46px;
    }

    .hero p{
        font-size:17px;
    }
    .footer-brand-compact{
    flex-direction:column;
    gap:12px;
}

.footer-links-compact{
    max-width:280px;
}
    .feature-grid,
.capture-list,
.screens-grid,
.sports-grid{
    grid-template-columns:1fr;
}
.workflow-grid{
    grid-template-columns:1fr;
}
    .section{
        padding:58px 0;
    }

    .cta-box{
        padding:36px 24px;
    }

    .footer-inner{
        align-items:flex-start;
        flex-direction:column;
    }

}


.preview-image{
    width:100%;
    display:block;
}

.hero-preview .preview-image{
    width:100%;
    height:520px;
    object-fit:cover;
}

.safety-preview .preview-image{
    min-height:360px;
    object-fit:cover;
}

.screenshot-box{
    overflow:hidden;
}

.screenshot-box img{
    width:100%;
    height:100%;
    min-height:190px;
    object-fit:cover;
    display:block;
}
.card p{
    margin:0;
    color:var(--muted);
    line-height:1.65;
}
/* DATA CAPTURE */

.capture-section{
    padding-top:40px;
}

.capture-list{
    max-width:980px;
    margin:34px auto 0;

    display:grid;
    grid-template-columns:repeat(3, 1fr);

    gap:18px;
}

.capture-method{
    padding:24px;

    border-radius:20px;

    background:rgba(30,41,59,.72);

    border:1px solid var(--border-soft);

    transition:.2s ease;
}

.capture-method:hover{
    transform:translateY(-4px);

    border-color:rgba(56,189,248,.38);

    background:rgba(30,41,59,.92);
}

.capture-method h3{
    margin:0 0 16px;

    font-size:20px;

    letter-spacing:-.03em;
}

.capture-method ul{
    list-style:none;

    margin:0;
    padding:0;

    display:grid;

    gap:10px;
}

.capture-method li{
    position:relative;

    padding-left:24px;

    color:var(--muted);

    line-height:1.5;
}

.capture-method li::before{
    content:"✓";

    position:absolute;

    left:0;

    color:var(--success);

    font-weight:700;
}
/* WORKFLOW */

.workflow-section{
    padding-top:40px;
}

.workflow-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
}

.workflow-step{
    position:relative;

    padding:26px 24px;

    border-radius:20px;

    background:rgba(15,23,42,.54);

    border:1px solid var(--border-soft);
}

.workflow-step::after{
    content:"";

    position:absolute;
    top:38px;
    right:-10px;

    width:20px;
    height:1px;

    background:rgba(56,189,248,.45);
}

.workflow-step:last-child::after{
    display:none;
}

.step-number{
    margin-bottom:22px;

    color:var(--primary);

    font-size:14px;
    font-weight:900;
    letter-spacing:.08em;
}

.workflow-step h3{
    margin:0 0 12px;

    font-size:19px;
    line-height:1.2;
    letter-spacing:-.03em;
}

.workflow-step p{
    margin:0;

    color:var(--muted);

    font-size:15px;
    line-height:1.6;
}
.services-section {
    background:
        radial-gradient(
            circle at top left,
            rgba(14, 165, 233, 0.12),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            rgba(15, 23, 42, 0.96),
            rgba(2, 6, 23, 1)
        );
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 46px;
}

.service-card {
    position: relative;
    padding: 28px;
    border-radius: 24px;
    background:
        linear-gradient(
            180deg,
            rgba(15, 23, 42, 0.92),
            rgba(15, 23, 42, 0.72)
        );
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow:
        0 22px 70px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(14, 165, 233, 0.16),
            transparent 32%
        );
    opacity: 0.8;
    pointer-events: none;
}

.service-card h3 {
    position: relative;
    margin: 0 0 14px;
    color: #f8fafc;
    font-size: 19px;
    letter-spacing: -0.02em;
}

.service-card p {
    position: relative;
    margin: 0;
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.75;
}

@media (max-width: 980px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 24px;
    }
}

.footer-quick-links{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}

.footer-quick-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:0 15px;
    border-radius:10px;
    background:#1e293b;
    border:1px solid rgba(148,163,184,.18);
    color:#e2e8f0;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

.footer-quick-btn:hover{
    background:#263449;
    border-color:rgba(56,189,248,.5);
    color:#ffffff;
    transform:translateY(-1px);
}

@media(max-width:700px){

    .footer-quick-links{
        width:100%;
    }

}