/* ============================================================
   Share50 site stylesheet
   File suggestion: /css/share50-site.css
   Requires: Bootstrap 5.3+
   ============================================================ */

/* ------------------------------
   Base tokens
   ------------------------------ */

:root {
    --s50-blue: #0153A3;
    --s50-blue-dark: #003a73;
    --s50-dark: #07111f;
    --s50-ink: #0d1726;
    --s50-muted: #65758b;
    --s50-soft: #f3f7fb;
    --s50-line: rgba(13, 23, 38, .1);
    --s50-card: rgba(255,255,255,.92);
    --s50-radius-lg: 30px;
    --s50-radius-md: 22px;
    --s50-shadow: 0 28px 70px rgba(3, 19, 38, .22);
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--s50-ink);
    background: #fff;
    line-height: 1.55;
}

a { text-decoration: none; }

.site-nav {
    position: fixed;
    z-index: 30;
    top: 0;
    left: 0;
    right: 0;
    min-height: var(--s50-nav-height);
    border-bottom: 1px solid var(--s50-white-line);
    background: rgba(7, 17, 31, .72);
    backdrop-filter: blur(18px);
}

.site-nav .navbar-brand img,
.site-logo {
    width: 138px;
    height: auto;
}

.site-nav .nav-link {
    color: rgba(255, 255, 255, .78) !important;
    font-weight: 650;
    font-size: .95rem;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: #ffffff !important;
}

.site-nav .navbar-toggler {
    border: 0;
}

.site-nav .navbar-toggler-icon {
    filter: invert(1);
}


/*
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7, 17, 31, .74);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.navbar-brand img { width: 132px; height: auto; }

.nav-link {
    color: rgba(255,255,255,.78) !important;
    font-weight: 600;
    font-size: .93rem;
}

.nav-link:hover { color: #fff !important; }*/

.btn-s50 {
    border: 0;
    border-radius: 999px;
    padding: .85rem 1.2rem;
    background: var(--s50-blue);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 18px 38px rgba(1, 83, 163, .25);
    transition: transform .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}

.btn-s50:hover,
.btn-s50:focus {
    background: var(--s50-blue-dark);
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-ghost-light {
    color: #fff;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    padding: .82rem 1.15rem;
    font-weight: 800;
}

.btn-ghost-light:hover {
    color: #fff;
    border-color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.08);
}

.hero {
    min-height: 100vh;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    padding: 116px 0 72px;
    overflow: hidden;
    background:
            radial-gradient(circle at 74% 20%, rgba(1,83,163,.68), transparent 33%),
            linear-gradient(110deg, rgba(7,17,31,.95) 0%, rgba(7,17,31,.88) 42%, rgba(7,17,31,.58) 100%),
            url('../images/sd/fotballkid.jpg') center top / cover no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(transparent, rgba(7,17,31,.82));
    pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .48rem .82rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.88);
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .02em;
}

.eyebrow .dot {
    width: .55rem;
    height: .55rem;
    background: #25d366;
    border-radius: 999px;
    box-shadow: 0 0 0 6px rgba(37, 211, 102, .15);
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 6.7rem);
    line-height: .92;
    letter-spacing: -.065em;
    font-weight: 900;
    max-width: 920px;
    margin: 1.35rem 0 1.1rem;
}

.hero .lead {
    color: rgba(255,255,255,.84);
    font-size: clamp(1.12rem, 2vw, 1.45rem);
    max-width: 770px;
    font-weight: 500;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 136px;
    height: 136px;
    border-radius: 999px;
    background: #05070b;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 22px 60px rgba(0,0,0,.34);
    transition: transform .2s ease, border-color .2s ease;
}

.store-badge:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.32); }
.store-badge img { max-width: 64%; max-height: 64%; object-fit: contain; }

.hero-panel {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--s50-radius-lg);
    padding: 1.15rem;
    backdrop-filter: blur(18px);
    box-shadow: var(--s50-shadow);
}

.phone-card {
    background: linear-gradient(160deg, #fff, #dfeefe);
    color: var(--s50-ink);
    border-radius: 34px;
    padding: 1.15rem;
    min-height: 520px;
    position: relative;
    overflow: hidden;
}

.phone-card::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    top: -70px;
    border-radius: 50%;
    background: rgba(1,83,163,.16);
}

.mock-status, .mock-card, .mock-progress { position: relative; z-index: 1; }

.mock-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .78rem;
    font-weight: 900;
    color: rgba(13,23,38,.55);
    margin-bottom: 1.2rem;
}

.mock-card {
    background: #fff;
    border-radius: 26px;
    padding: 1rem;
    box-shadow: 0 18px 40px rgba(13,23,38,.12);
}

.mock-club {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: 1rem;
}

.mock-logo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--s50-blue), #0b8dff);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
}

.mock-card h3 {
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -.04em;
    margin: .3rem 0;
}

.progress {
    height: 12px;
    background: #e7eef7;
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar { background: var(--s50-blue); }

.mock-offer {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 22px;
    background: var(--s50-dark);
    color: #fff;
}

.section-pad { padding: clamp(4.5rem, 7vw, 7.2rem) 0; }

.section-title {
    font-size: clamp(2.2rem, 4.2vw, 4.6rem);
    line-height: .96;
    letter-spacing: -.06em;
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-lead {
    color: var(--s50-muted);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    max-width: 760px;
    font-weight: 500;
}

.soft-section { background: var(--s50-soft); }

.explain-card {
    background: #fff;
    border: 1px solid var(--s50-line);
    border-radius: var(--s50-radius-lg);
    padding: clamp(1.6rem, 4vw, 3rem);
    box-shadow: 0 20px 50px rgba(13, 23, 38, .07);
}

.quote-line {
    border-left: 6px solid var(--s50-blue);
    padding-left: 1.15rem;
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.18;
}

.campaign {
    color: #fff;
    background:
            radial-gradient(circle at 18% 10%, rgba(0,123,255,.54), transparent 32%),
            radial-gradient(circle at 84% 76%, rgba(37,211,102,.24), transparent 34%),
            linear-gradient(135deg, #07111f, #041a36 62%, #0153A3);
}

.prize-card {
    height: 100%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 28px;
    padding: 1.35rem;
    backdrop-filter: blur(16px);
}

.prize-label {
    color: rgba(255,255,255,.67);
    font-weight: 800;
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .08em;
}

.prize-value {
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.055em;
    margin: .45rem 0 .7rem;
}

.step-card {
    height: 100%;
    border: 1px solid var(--s50-line);
    border-radius: 28px;
    padding: 1.4rem;
    background: #fff;
    transition: transform .18s ease, box-shadow .18s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(13,23,38,.09);
}

.step-number {
    color: var(--s50-blue);
    font-weight: 900;
    font-size: .95rem;
    margin-bottom: 2.5rem;
}

.step-card h3 {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -.035em;
}

.split-card {
    border-radius: var(--s50-radius-lg);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--s50-line);
    box-shadow: 0 24px 60px rgba(13,23,38,.08);
}

.split-card .text-side { padding: clamp(1.6rem, 4vw, 3rem); }

.image-side {
    min-height: 420px;
    background: linear-gradient(rgba(7,17,31,.2), rgba(7,17,31,.2)), url('../images/sd/swimmer.jpg') center / cover no-repeat;
}

.mini-list {
    list-style: none;
    padding: 0;
    margin: 1.35rem 0 0;
}

.mini-list li {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    margin-bottom: .8rem;
    color: var(--s50-muted);
    font-weight: 600;
}

.check {
    flex: 0 0 auto;
    width: 25px;
    height: 25px;
    border-radius: 999px;
    background: rgba(1,83,163,.12);
    color: var(--s50-blue);
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: .85rem;
}

.video-shell {
    border-radius: var(--s50-radius-lg);
    overflow: hidden;
    background: #06101d;
    box-shadow: var(--s50-shadow);
}

.video-ratio {
    position: relative;
    padding-top: 177.7777777778%;
}

.video-ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.audience-card {
    border-radius: 28px;
    padding: 1.4rem;
    height: 100%;
    background: #fff;
    border: 1px solid var(--s50-line);
}

.audience-card h3 { font-weight: 900; letter-spacing: -.035em; }
.audience-card p { color: var(--s50-muted); font-weight: 500; }

.activity-pill {
    display: inline-flex;
    align-items: center;
    padding: .62rem .88rem;
    border-radius: 999px;
    border: 1px solid var(--s50-line);
    background: #fff;
    color: var(--s50-ink);
    font-weight: 800;
    margin: .25rem;
    box-shadow: 0 8px 22px rgba(13,23,38,.05);
}

.cta-band {
    color: #fff;
    border-radius: var(--s50-radius-lg);
    padding: clamp(1.8rem, 5vw, 4rem);
    background:
            radial-gradient(circle at 14% 16%, rgba(255,255,255,.16), transparent 34%),
            linear-gradient(135deg, var(--s50-blue), #07111f);
    box-shadow: var(--s50-shadow);
}

.section-light {
    padding: 78px 0;
    background: var(--s50-soft);
}

.section-white {
    padding: 78px 0;
    background: #fff;
}

.section-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 900;
    letter-spacing: -.05em;
}

.section-kicker {
    margin-bottom: .65rem;
    color: var(--s50-blue);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
}

.soft-lead {
    color: var(--s50-muted);
    font-size: 1.1rem;
    line-height: 1.65;
}

.result-card,
.info-card,
.video-card {
    height: 100%;
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 60px rgba(9,17,31,.1);
}

.result-card-top {
    min-height: 108px;
    padding: 1rem;
    color: #fff;
    background:
            linear-gradient(180deg, rgba(0,0,0,.24), rgba(0,0,0,.66)),
            url('https://www.share50.no/images/sd/grass.jpg') center / cover no-repeat;
}

.result-logo {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,.86);
    background: #fff;
}

.result-name {
    margin: 0;
    font-weight: 900;
    line-height: 1.15;
}

.result-card-body { padding: 1.25rem; }

.result-money {
    display: block;
    font-size: 1.65rem;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.035em;
}

.site-footer {
    padding: 3.5rem 0;
    color: rgba(255, 255, 255, .76);
    background: #07111f;
}

.site-footer-logo {
    width: 145px;
    height: auto;
}

.site-footer p {
    color: rgba(255, 255, 255, .76);
    line-height: 1.65;
    margin-bottom: 0;
}

.site-footer h3 {
    margin-bottom: 1rem;
}

.site-footer a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    font-weight: 700;
}

.site-footer a:hover {
    color: #ffffff;
}

.site-footer hr {
    opacity: 1;
}

@media (max-width: 991.98px) {
    .site-nav { position: sticky; }
    .hero { min-height: auto; padding-top: 72px; }
    .hero-panel { margin-top: 2rem; }
    .store-badge { width: 112px; height: 112px; }
    .phone-card { min-height: 430px; }
}

@media (max-width: 575.98px) {
    .hero h1 { font-size: 3.1rem; }
    .btn-s50, .btn-ghost-light { width: 100%; }
    .store-badge { width: 92px; height: 92px; }
    .quote-line { border-left-width: 4px; }
    .section-pad { padding: 4rem 0; }
}
