/* ═══════════════════════════════════════════════════
   RENEWEDPRINT — DESIGN SYSTEM (shared)
   "Bold retail punch" · white + near-black + electric cobalt
   Archivo (oversized grotesque) + Hanken Grotesk
   ═══════════════════════════════════════════════════ */

:root {
    /* Neutrals */
    --bg:        #FFFFFF;
    --bg-2:      #F4F6F9;   /* cool light panel */
    --surface:   #FFFFFF;
    --ink:       #0B0D12;   /* near-black */
    --ink-2:     #4C525C;   /* body */
    --ink-3:     #6B7280;   /* meta — AA-compliant on white */
    --line:      #E5E8EC;
    --line-2:    #D3D7DD;

    /* Brand — electric cobalt, used LOUD */
    --brand:        #2347E5;
    --brand-700:    #1B39C4;   /* darker: text-on-white / hover */
    --brand-bright: #3D63FF;   /* highlight */
    --brand-ink:    #0B1E66;   /* deep cobalt for dark fills */
    --brand-tint:   #EAF0FF;   /* light wash */
    --brand-tint-2: #D2E0FF;
    --on-brand:     #EDF2FF;   /* text on cobalt */
    --on-brand-2:   #A9BEFF;   /* muted on cobalt */
    --on-brand-3:   #7E97F0;

    --dark:      #0B0D12;      /* near-black sections */
    --on-dark:   #EEF0F4;
    --on-dark-2: #9aa1ad;

    --warn:      #E5484D;
    --star:      #F5A623;      /* review stars amber */

    --display: 'Archivo', system-ui, -apple-system, sans-serif;
    --body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;

    --maxw: 1220px;
    --gutter: clamp(20px, 5vw, 64px);
    --r-sm: 8px; --r-md: 12px; --r-lg: 18px; --r-xl: 26px;
    --ease: cubic-bezier(.16, 1, .3, 1);
    --shadow-sm: 0 1px 2px rgba(11,13,18,.05), 0 2px 6px rgba(11,13,18,.05);
    --shadow-md: 0 14px 36px -16px rgba(11,13,18,.22);
    --shadow-lg: 0 44px 90px -36px rgba(11,13,18,.4);
    --shadow-brand: 0 16px 34px -12px rgba(35,71,229,.5);

    /* Legacy aliases — keep old inline styles / pages on-brand */
    --paper: #FFFFFF; --paper-2: #F4F6F9; --card: #FFFFFF; --off: #FFFFFF;
    --white: #FFFFFF; --black: #0B0D12;
    --navy: #0B0D12; --navy-2: #16181F;
    --muted: #4C525C; --muted-2: #878D97;
    --grey: #4C525C; --grey-light: #878D97;
    --border: #E5E8EC;
    --gold: #2347E5; --gold-dk: #1B39C4; --gold-soft: #EAF0FF; --gold-light: #7E97F0;
    --orange: #2347E5; --orange-bg: #EAF0FF;
    --green: #18A05A;          /* keep a real green only for "in stock / verified" ticks */
    --red: #E5484D;
    --serif: 'Archivo', system-ui, sans-serif;
    --sans: 'Hanken Grotesk', system-ui, sans-serif;
    --font: 'Hanken Grotesk', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--body);
    background: var(--bg);
    color: var(--ink);
    font-size: 16px; line-height: 1.6;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; -webkit-user-drag: none; -khtml-user-drag: none; user-select: none; -webkit-user-select: none; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
    font-family: var(--display); font-weight: 800; font-stretch: 110%;
    letter-spacing: -.025em; color: var(--ink); line-height: 1.02;
}
.display { font-family: var(--display); font-weight: 900; font-stretch: 120%; letter-spacing: -.035em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.rule { height: 1px; background: var(--line); border: 0; }

/* Single brand label (used sparingly) */
.tag {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--body); font-size: 12.5px; font-weight: 700;
    letter-spacing: .01em; color: var(--brand-700);
    background: var(--brand-tint); border: 1px solid var(--brand-tint-2);
    padding: 6px 13px; border-radius: 100px;
}
.tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }

/* ── NAV ─────────────────────────────────────────── */
.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(1.3) blur(16px); -webkit-backdrop-filter: saturate(1.3) blur(16px);
    border-bottom: 1px solid var(--line);
    height: 70px;
}
.nav .nav-inner {
    max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
    height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
}
.nav-logo { grid-column: 1; justify-self: start; font-family: var(--display); font-size: 21px; font-weight: 900; font-stretch: 115%; letter-spacing: -.035em; color: var(--ink); }
.nav-logo .o { color: var(--brand); }
.nav-links { grid-column: 2; justify-self: center; display: flex; align-items: center; gap: 32px; }
.nav-links a {
    position: relative; font-family: var(--body); font-size: 14.5px; font-weight: 600;
    color: var(--ink-2); white-space: nowrap; padding: 6px 1px; transition: color .18s var(--ease);
}
.nav-links a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 2px;
    background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .26s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }
.nav-right { grid-column: 3; justify-self: end; display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; white-space: nowrap; }
.nav-rating { grid-column: 3; justify-self: end; display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--ink); white-space: nowrap; text-decoration: none; transition: color .15s; }
.nav-rating:hover { color: var(--brand); }
.nav-rating em { color: var(--star); font-style: normal; font-size: 13px; }
.nr-count { color: var(--ink-3); font-weight: 600; }
.nav-div { width: 1px; height: 13px; background: var(--line-2); flex-shrink: 0; }
.nav-stock { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--ink-3); white-space: nowrap; }
.nav-stock-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 3px rgba(35,71,229,.14); flex-shrink: 0; }
.nav-stock #navUnits { font-weight: 800; color: var(--ink); }
@media (max-width: 1040px) { .nr-count { display: none; } }
@media (max-width: 840px) { .nav-right, .nav-rating { display: none; } }
@media (min-width: 769px) and (max-width: 1080px) { .nav .nav-inner { grid-template-columns: auto 1fr auto; gap: 16px; } .nav-links { justify-self: center; gap: clamp(14px, 1.6vw, 30px); } }
.nav-cta {
    font-family: var(--body); font-size: 14px; font-weight: 700;
    background: var(--brand); color: #fff; padding: 11px 22px; border-radius: 9px;
    transition: background .2s var(--ease), transform .15s var(--ease); white-space: nowrap;
}
.nav-cta:hover { background: var(--brand-700); }
.nav-toggle { grid-column: 3; justify-self: end; display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; margin-right: -9px; background: none; border: none; cursor: pointer; padding: 9px 10px; }
.nav-toggle span { display: block; height: 2px; width: 22px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--body); font-size: 16.5px; font-weight: 800; letter-spacing: -.01em;
    padding: 17px 32px; border-radius: 11px; border: none; cursor: pointer;
    transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .25s var(--ease);
    white-space: nowrap; text-align: center;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--brand-700); transform: translateY(-2px); box-shadow: 0 22px 44px -14px rgba(35,71,229,.6); }
.btn-primary:active { transform: translateY(0); }
.btn-white { background: #fff; color: var(--brand-700); box-shadow: 0 14px 34px -14px rgba(0,0,0,.35); }
.btn-white:hover { transform: translateY(-2px); background: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-block { width: 100%; }

/* legacy aliases */
.btn-orange { display:inline-flex; align-items:center; justify-content:center; gap:9px; background:var(--brand); color:#fff; font-family:var(--body); font-size:16.5px; font-weight:800; padding:17px 32px; border-radius:11px; border:none; cursor:pointer; width:100%; transition:background .2s var(--ease), transform .15s var(--ease); box-shadow:var(--shadow-brand); }
.btn-orange:hover { background:var(--brand-700); transform:translateY(-2px); }

/* ── STICKY MOBILE BUY BAR ───────────────────────── */
.sm-bar {
    display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    background: rgba(255,255,255,.96); backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    padding: 11px var(--gutter); align-items: center; justify-content: space-between; gap: 14px;
}
.sm-was { font-size: 12px; color: var(--ink-3); text-decoration: line-through; }
.sm-now { font-family: var(--display); font-size: 24px; font-weight: 900; font-stretch: 110%; letter-spacing: -.03em; color: var(--brand); }
.sm-btn { background: var(--brand); color: #fff; padding: 13px 26px; border-radius: 9px; font-weight: 800; font-size: 14.5px; white-space: nowrap; }

/* ── INNER PAGES ─────────────────────────────────── */
.page-wrap { max-width: 760px; margin: 0 auto; padding: clamp(52px,7vw,88px) var(--gutter) 104px; }
.page-eyebrow { display:inline-block; font-family: var(--body); font-size: 12.5px; font-weight: 700; letter-spacing: .01em; color: var(--brand-700); background: var(--brand-tint); border:1px solid var(--brand-tint-2); padding:5px 12px; border-radius:100px; margin-bottom: 18px; }
.page-wrap h1 { font-size: clamp(36px, 5.4vw, 62px); line-height: .98; margin-bottom: 14px; letter-spacing: -.035em; }
.page-intro { font-size: 18px; color: var(--ink-2); line-height: 1.7; margin-bottom: 44px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.page-wrap h2 { font-family: var(--display); font-size: 25px; font-weight: 800; font-stretch:108%; margin: 44px 0 14px; letter-spacing: -.025em; }
.page-wrap p { color: var(--ink-2); line-height: 1.8; margin-bottom: 14px; }
.page-wrap ul, .page-wrap ol { color: var(--ink-2); line-height: 1.8; padding-left: 22px; margin-bottom: 16px; }
.page-wrap li { margin-bottom: 8px; }
.page-wrap a { color: var(--brand-700); font-weight: 600; border-bottom: 1px solid var(--brand-tint-2); transition: border-color .2s; }
.page-wrap a:hover { border-color: var(--brand-700); }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 32px; margin: 28px 0; box-shadow: var(--shadow-sm); }
.info-card.accent { background: var(--brand-tint); border-color: var(--brand-tint-2); box-shadow: none; }
.info-card h3 { font-family: var(--display); font-size: 18px; font-weight: 800; margin-bottom: 14px; color: var(--ink); }
.info-card.accent h3 { color: var(--brand-700); }
.info-card p, .info-card ul { font-size: 15px; }

/* ── FOOTER (near-black) ─────────────────────────── */
footer { background: var(--dark); color: var(--on-dark-2); padding: 76px var(--gutter) 40px; position: relative; }
.ft-inner { max-width: var(--maxw); margin: 0 auto; }
.ft-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 56px; padding-bottom: 44px; border-bottom: 1px solid rgba(238,240,244,.12); }
.ft-logo { font-family: var(--display); font-size: 23px; font-weight: 900; font-stretch:115%; color: #fff; display: block; margin-bottom: 14px; letter-spacing: -.035em; }
.ft-logo span { color: var(--brand-bright); }
.ft-tagline { font-size: 14px; color: var(--on-dark-2); line-height: 1.7; max-width: 30ch; }
.ft-contact-title { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #8b919c; margin-bottom: 18px; }
.ft-contact-items { display: flex; flex-direction: column; gap: 13px; }
.ft-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--on-dark-2); line-height: 1.5; transition: color .18s; }
a.ft-contact-item:hover { color: #fff; }
.ft-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--brand-bright); }
.ft-links-col { display: flex; flex-direction: column; gap: 12px; }
.ft-links-col a { position: relative; width: fit-content; font-size: 14px; color: var(--on-dark-2); transition: color .18s; }
.ft-links-col a:hover { color: #fff; }
.ft-bottom { padding-top: 26px; text-align: center; }
.ft-copy { font-size: 12px; color: #8b919c; line-height: 1.8; max-width: 660px; margin: 0 auto; }

@media (max-width: 860px) { .ft-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 768px) { .ft-links-col a, .ft-contact-item { padding-top: 8px; padding-bottom: 8px; } }
@media (max-width: 768px) {
    .nav { height: 62px; }
    .nav-right, .nav-rating, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav-links {
        position: absolute; top: 100%; left: 0; right: 0; justify-self: stretch;
        flex-direction: column; align-items: stretch; gap: 0;
        background: rgba(255,255,255,.98); backdrop-filter: saturate(1.3) blur(16px); -webkit-backdrop-filter: saturate(1.3) blur(16px);
        border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
        padding: 2px var(--gutter) 10px;
        max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
        transition: max-height .3s var(--ease), opacity .2s var(--ease), padding .3s var(--ease);
    }
    .nav.open .nav-links { max-height: 340px; opacity: 1; pointer-events: auto; }
    .nav-links a { padding: 15px 2px; font-size: 16px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
    .nav-links a:last-child { border-bottom: none; }
    .nav-links a::after { display: none; }
    .sm-bar { display: flex; }

    .ft-top { grid-template-columns: 1fr; gap: 32px; }
    footer { padding: 54px var(--gutter) 104px; }
}
