/* BlockHive Public Pages — self-contained, prefixed to avoid theme clashes */
.bh-topbar, .bh-hero, .bh-section, .bh-page-hero, .bh-footer,
.bh-topbar *, .bh-hero *, .bh-section *, .bh-page-hero *, .bh-footer * {
    box-sizing: border-box;
}

:root {
    --bh-void: #070b16;
    --bh-deep: #0b1120;
    --bh-navy: #111a2e;
    --bh-card: #131d33;
    --bh-elevated: #182543;
    --bh-cyan: #22d3ee;
    --bh-blue: #2f6bff;
    --bh-blue-deep: #1d4ed8;
    --bh-text: #e8edf6;
    --bh-dim: #9fb0c9;
    --bh-faint: #64748b;
    --bh-border: #23324f;
    --bh-green: #34d399;
    --bh-grad: linear-gradient(135deg, #22d3ee 0%, #2f6bff 100%);
}

/* Reset the page area BlockHive controls */
.bh-topbar, .bh-hero, .bh-section, .bh-page-hero, .bh-footer {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--bh-text);
    line-height: 1.6;
}
.bh-hero, .bh-section, .bh-page-hero { background: var(--bh-void); }

.bh-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.bh-h1, .bh-h2, .bh-topbar h1, .bh-topbar h2,
.bh-hero h1, .bh-hero h2, .bh-hero h3,
.bh-section h1, .bh-section h2, .bh-section h3,
.bh-page-hero h1, .bh-page-hero h2, .bh-page-hero h3,
.bh-footer h4, .bh-brand {
    font-family: 'Syne', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin: 0;
}

.bh-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bh-cyan); margin: 0 0 16px; }

/* Topbar */
.bh-topbar { position: sticky; top: 0; z-index: 999; background: rgba(11,17,32,0.85); backdrop-filter: blur(16px); border-bottom: 1px solid var(--bh-border); }
.bh-topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.bh-brand { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 22px; color: var(--bh-text); text-decoration: none; }
.bh-brand span { color: var(--bh-cyan); }
.bh-nav { display: flex; gap: 30px; }
.bh-nav a { font-size: 15px; color: var(--bh-dim); text-decoration: none; transition: color .2s; }
.bh-nav a:hover { color: var(--bh-text); }
.bh-cta { display: flex; gap: 10px; align-items: center; }

.bh-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 22px; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; border: none; text-decoration: none; transition: transform .2s, box-shadow .2s, background .2s; white-space: nowrap; }
.bh-btn-primary { background: var(--bh-grad); color: #04121f; }
.bh-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(34,211,238,0.3); }
.bh-btn-ghost { background: transparent; color: var(--bh-text); border: 1px solid var(--bh-border); }
.bh-btn-ghost:hover { border-color: var(--bh-cyan); color: var(--bh-cyan); }
.bh-btn-dark { background: #04121f; color: var(--bh-text); }
.bh-btn-dark:hover { background: #071527; }
.bh-btn-lg { padding: 15px 32px; font-size: 16px; }
.bh-btn-block { width: 100%; }
.bh-navtoggle { display: none; background: none; border: none; color: var(--bh-text); font-size: 26px; cursor: pointer; }

/* Hero */
.bh-hero { position: relative; padding: 110px 0 90px; overflow: hidden; }
.bh-hero::before { content:""; position:absolute; top:-30%; right:-10%; width:700px; height:700px; background: radial-gradient(circle, rgba(47,107,255,0.18) 0%, transparent 65%); pointer-events:none; }
.bh-hero::after { content:""; position:absolute; bottom:-40%; left:-15%; width:600px; height:600px; background: radial-gradient(circle, rgba(34,211,238,0.12) 0%, transparent 65%); pointer-events:none; }
.bh-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.bh-h1 { font-size: clamp(40px, 7vw, 74px); margin-bottom: 22px; }
.bh-accent { background: var(--bh-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.bh-lead { font-size: clamp(17px, 2vw, 21px); color: var(--bh-dim); max-width: 620px; margin: 0 0 38px; }
.bh-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 54px; }
.bh-hero-stats { display: flex; gap: 46px; flex-wrap: wrap; padding-top: 38px; border-top: 1px solid var(--bh-border); }
.bh-hstat .n { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 700; color: var(--bh-text); }
.bh-hstat .l { font-size: 13px; color: var(--bh-faint); margin-top: 4px; }

/* Sections */
.bh-section { padding: 96px 0; position: relative; }
.bh-bg-deep { background: var(--bh-deep); }
.bh-bg-navy { background: var(--bh-navy); }
.bh-head { max-width: 640px; margin: 0 0 60px; }
.bh-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.bh-h2 { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 16px; }
.bh-sub { font-size: 17px; color: var(--bh-dim); margin: 0; }

.bh-page-hero { padding: 88px 0 36px; }
.bh-page-hero .bh-h1 { font-size: clamp(38px, 6vw, 60px); margin-bottom: 14px; }

/* Packages */
.bh-pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.bh-pkg { background: var(--bh-card); border: 1px solid var(--bh-border); border-radius: 16px; padding: 36px 30px; position: relative; transition: transform .3s, border-color .3s; }
.bh-pkg:hover { transform: translateY(-6px); border-color: var(--bh-cyan); }
.bh-pkg.featured { border-color: var(--bh-cyan); box-shadow: 0 0 60px rgba(34,211,238,0.15); }
.bh-pkg-flag { position: absolute; top: 24px; right: 24px; background: var(--bh-grad); color: #04121f; font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 20px; }
.bh-pkg-orb { width: 60px; height: 60px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #38e0f5, var(--bh-blue-deep)); box-shadow: 0 8px 24px rgba(47,107,255,0.4); margin-bottom: 24px; }
.bh-pkg-name { font-size: 24px; margin-bottom: 6px; }
.bh-pkg-range { color: var(--bh-faint); font-size: 15px; margin: 0 0 20px; }
.bh-pkg-rate { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 700; color: var(--bh-green); line-height: 1; }
.bh-pkg-rate small { font-size: 14px; color: var(--bh-dim); font-weight: 400; font-family: 'Inter'; display: block; margin-top: 6px; }
.bh-pkg-feats { list-style: none; margin: 26px 0; padding: 0; }
.bh-pkg-feats li { padding: 9px 0 9px 28px; position: relative; color: var(--bh-dim); font-size: 15px; }
.bh-pkg-feats li::before { content: "✓"; position: absolute; left: 0; color: var(--bh-cyan); font-weight: 700; }
.bh-pkg-note { font-size: 12px; color: var(--bh-faint); margin: 18px 0 0; padding-top: 18px; border-top: 1px solid var(--bh-border); }

/* Steps */
.bh-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; }
.bh-step { padding: 32px 26px; background: var(--bh-card); border: 1px solid var(--bh-border); border-radius: 16px; }
.bh-step-n { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--bh-cyan); letter-spacing: 0.1em; margin-bottom: 16px; }
.bh-step h3 { font-size: 20px; margin: 0 0 10px; }
.bh-step p { color: var(--bh-dim); font-size: 15px; margin: 0; }

/* Features */
.bh-feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.bh-feat { padding: 30px; background: var(--bh-card); border: 1px solid var(--bh-border); border-radius: 16px; }
.bh-feat-ic { width: 48px; height: 48px; border-radius: 12px; background: rgba(34,211,238,0.12); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.bh-feat h3 { font-size: 19px; margin: 0 0 10px; }
.bh-feat p { color: var(--bh-dim); font-size: 15px; margin: 0; }

/* CTA band */
.bh-cta-band { background: var(--bh-grad); border-radius: 24px; padding: 62px 48px; text-align: center; }
.bh-cta-band h2 { color: #04121f; font-size: clamp(28px, 4vw, 44px); margin: 0 0 14px; }
.bh-cta-band p { color: rgba(4,18,31,0.8); font-size: 18px; margin: 0 0 30px; }

/* Prose */
.bh-prose { max-width: 760px; }
.bh-prose p { color: var(--bh-dim); font-size: 17px; margin: 0 0 20px; }
.bh-prose h2 { font-size: 30px; margin: 40px 0 16px; }
.bh-prose ul { margin: 0 0 20px 22px; color: var(--bh-dim); }
.bh-prose li { margin-bottom: 10px; }

/* Contact */
.bh-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.bh-contact-card { background: var(--bh-card); border: 1px solid var(--bh-border); border-radius: 16px; padding: 32px; }
.bh-frow { margin-bottom: 20px; }
.bh-frow label { display: block; font-size: 14px; margin-bottom: 8px; color: var(--bh-text); }
.bh-frow input, .bh-frow textarea { width: 100%; padding: 13px 16px; background: var(--bh-deep); border: 1px solid var(--bh-border); border-radius: 10px; color: var(--bh-text); font-size: 15px; font-family: inherit; }
.bh-frow input:focus, .bh-frow textarea:focus { outline: none; border-color: var(--bh-cyan); box-shadow: 0 0 0 3px rgba(34,211,238,0.1); }
.bh-cinfo { display: flex; gap: 14px; margin-bottom: 24px; }
.bh-cic { width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0; background: rgba(34,211,238,0.12); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.bh-clbl { font-size: 13px; color: var(--bh-faint); }
.bh-cval { font-size: 16px; color: var(--bh-text); }
.bh-cnote { color: var(--bh-dim); margin-top: 24px; font-size: 15px; }
.bh-cnote a { color: var(--bh-cyan); text-decoration: none; }
.bh-alert-ok { background: rgba(52,211,153,0.12); border: 1px solid var(--bh-green); border-radius: 10px; padding: 16px; margin-bottom: 20px; color: var(--bh-green); }

/* Footer */
.bh-footer { background: var(--bh-deep); border-top: 1px solid var(--bh-border); padding: 62px 0 30px; }
.bh-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 46px; }
.bh-footer .bh-brand { display: block; margin-bottom: 16px; }
.bh-footer-desc { color: var(--bh-dim); font-size: 15px; max-width: 280px; margin: 0; }
.bh-footer-col h4 { font-size: 14px; margin: 0 0 18px; color: var(--bh-text); }
.bh-footer-col a { display: block; color: var(--bh-dim); font-size: 15px; text-decoration: none; margin-bottom: 11px; transition: color .2s; }
.bh-footer-col a:hover { color: var(--bh-cyan); }
.bh-risk { background: var(--bh-navy); border: 1px solid var(--bh-border); border-radius: 12px; padding: 20px 24px; margin-bottom: 28px; font-size: 13px; color: var(--bh-faint); line-height: 1.7; }
.bh-footer-bottom { padding-top: 26px; border-top: 1px solid var(--bh-border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--bh-faint); font-size: 13px; }

/* Responsive */
@media (max-width: 900px) {
    .bh-nav, .bh-cta .bh-btn-ghost { display: none; }
    .bh-navtoggle { display: block; }
    .bh-contact-grid { grid-template-columns: 1fr; }
    .bh-footer-grid { grid-template-columns: 1fr 1fr; }
    .bh-hero { padding: 70px 0 56px; }
    .bh-section { padding: 64px 0; }
    .bh-nav.open { display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; background: var(--bh-navy); padding: 20px 24px; border-bottom: 1px solid var(--bh-border); gap: 16px; }
}
@media (max-width: 560px) {
    .bh-footer-grid { grid-template-columns: 1fr; }
    .bh-hero-stats { gap: 26px; }
    .bh-cta-band { padding: 44px 24px; }
}
