/*
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* ============================================================
   LOCAL FONTS — Prata (display) + Cabin (body/UI)
   ============================================================ */

/* Prata — display headings, weight 300–400 (single file serves both) */
@font-face {
	font-family: 'Prata';
	font-style: normal;
	font-weight: 300 400;
	font-display: swap;
	src: url('fonts/prata-400-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
	               U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
	               U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
	               U+FEFF, U+FFFD;
}

/* Cabin — variable font, covers weight 400 (regular) and 600 (semibold) */
@font-face {
	font-family: 'Cabin';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('fonts/cabin-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
	               U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
	               U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
	               U+FEFF, U+FFFD;
}


/* ============================================================
   BTCB GLOBAL RESET / BASE
   ============================================================ */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--btcb-black);
	color: var(--btcb-white);
	font-family: 'Cabin', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
}

/* ── BTCB brand tokens ──────────────────────────────────── */
:root {
	--btcb-black:       #000000;
	--btcb-white:       #ffffff;
	--btcb-orange:      #EF5A33;
	--btcb-card:        #111111;
	--btcb-elevated:    #1a1a1a;
	--btcb-border:      #2a2a2a;
	--btcb-text:        #ffffff;
	--btcb-text-soft:   #F6F6F6;
	--btcb-text-muted:  #777777;
	--btcb-success:     #22c55e;
	--btcb-warning:     #f59e0b;
	--btcb-error:       #ef4444;

	/* ── Override every WordPress core colour preset ──────── */
	--wp--preset--color--black:                  #000000;
	--wp--preset--color--cyan-bluish-gray:       #2a2a2a;
	--wp--preset--color--white:                  #ffffff;
	--wp--preset--color--pale-pink:              #EF5A33;
	--wp--preset--color--vivid-red:              #EF5A33;
	--wp--preset--color--luminous-vivid-orange:  #EF5A33;
	--wp--preset--color--luminous-vivid-amber:   #f59e0b;
	--wp--preset--color--light-green-cyan:       #22c55e;
	--wp--preset--color--vivid-green-cyan:       #22c55e;
	--wp--preset--color--pale-cyan-blue:         #2a2a2a;
	--wp--preset--color--vivid-cyan-blue:        #EF5A33;
	--wp--preset--color--vivid-purple:           #EF5A33;
}

/* ── Global type & link colours ─────────────────────────── */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Prata', Georgia, serif;
	font-weight: 300;
	color: var(--btcb-text);
	line-height: 1.2;
}

h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 18px; }

p {
	font-family: 'Cabin', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--btcb-text-soft);
}

/* Section labels — Cabin 600, uppercase, tracked */
.btcb-label {
	font-family: 'Cabin', sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--btcb-text-muted);
}

a {
	color: var(--btcb-orange);
}

a:hover,
a:focus {
	color: var(--btcb-orange);
}

/* Push page content below fixed header (54px bar + 10px top gap) */
#btcb-content-wrap {
	padding-top: 74px;
}

/* Prevent scroll when mobile menu is open */
body.btcb-menu-open {
	overflow: hidden;
}


/* ============================================================
   FLOATING HEADER / NAV
   ============================================================ */
#btcb-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	display: flex;
	justify-content: center;
	padding: 10px 16px 0;
	pointer-events: none; /* transparent gap around nav is click-through */
}

#btcb-nav {
	background: var(--btcb-black);
	border: none;
	border-radius: 6px;
	height: 54px;
	width: 100%;
	max-width: 1300px;
	pointer-events: auto;
}

.btcb-nav-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 100%;
	padding: 0 28px;
}


/* ── Left nav links ─────────────────────────────────────── */
.btcb-nav-left {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.btcb-nav-left a {
	font-family: 'Cabin', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: var(--btcb-white);
	text-decoration: none;
	letter-spacing: 0.01em;
	transition: color 0.15s;
}

.btcb-nav-left a:hover,
.btcb-nav-left a:focus-visible {
	color: var(--btcb-orange);
	outline: none;
}


/* ── Centre logo ────────────────────────────────────────── */
.btcb-nav-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.btcb-nav-logo svg {
	height: 28px;
	width: auto;
	display: block;
}


/* ── Right group ────────────────────────────────────────── */
.btcb-nav-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
}

.btcb-nav-right-links {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.btcb-nav-right-links a {
	font-family: 'Cabin', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: var(--btcb-white);
	text-decoration: none;
	letter-spacing: 0.01em;
	transition: color 0.15s;
}

.btcb-nav-right-links a:hover,
.btcb-nav-right-links a:focus-visible {
	color: var(--btcb-orange);
	outline: none;
}

.btcb-nav-cta {
	display: flex;
	align-items: center;
	gap: 10px;
}


/* ── Shared button styles ───────────────────────────────── */
.btcb-btn-outline,
.btcb-btn-filled {
	display: inline-block;
	padding: 7px 18px;
	border-radius: 8px;
	font-family: 'Cabin', sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	line-height: 1;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
	white-space: nowrap;
}

/* Sign In — black bg, orange text, orange border */
.btcb-btn-outline {
	background: var(--btcb-black);
	color: var(--btcb-orange);
	border: 1.5px solid var(--btcb-orange);
}

.btcb-btn-outline:hover,
.btcb-btn-outline:focus-visible {
	background: var(--btcb-orange);
	color: var(--btcb-black);
	outline: none;
}

/* Sign Up — orange bg, black text */
.btcb-btn-filled {
	background: var(--btcb-orange);
	color: var(--btcb-black);
	border: 1.5px solid var(--btcb-orange);
}

.btcb-btn-filled:hover,
.btcb-btn-filled:focus-visible {
	background: var(--btcb-white);
	border-color: var(--btcb-white);
	color: var(--btcb-orange);
	outline: none;
}


/* ── Hamburger (hidden on desktop) ─────────────────────── */
.btcb-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	background: none !important;
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
	cursor: pointer;
	padding: 0;
	margin-left: auto;
	-webkit-appearance: none;
	appearance: none;
}

.btcb-hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--btcb-orange);
	border-radius: 2px;
	transition: transform 0.2s, opacity 0.2s;
}


/* ============================================================
   MOBILE FULLSCREEN MENU
   ============================================================ */
#btcb-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: var(--btcb-black);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 24px;

	/* Hidden state */
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

#btcb-mobile-menu.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* Close button — top right */
.btcb-mobile-close {
	position: absolute;
	top: 20px;
	right: 24px;
	width: 36px;
	height: 36px;
	background: none !important;
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-appearance: none;
	appearance: none;
}

.btcb-mobile-close span {
	position: absolute;
	width: 22px;
	height: 2px;
	background: var(--btcb-orange);
	border-radius: 2px;
}

.btcb-mobile-close span:first-child {
	transform: rotate(45deg);
}

.btcb-mobile-close span:last-child {
	transform: rotate(-45deg);
}

.btcb-mobile-close:hover span {
	background: var(--btcb-white);
}

/* Logo in mobile menu */
.btcb-mobile-logo {
	margin-bottom: 48px;
}

.btcb-mobile-logo svg {
	height: 40px;
	width: auto;
}

/* Mobile nav links */
.btcb-mobile-links {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	width: 100%;
}

.btcb-mobile-links li {
	border-bottom: 1px solid #2a2a2a;
}

.btcb-mobile-links li:first-child {
	border-top: 1px solid #2a2a2a;
}

.btcb-mobile-links a {
	display: block;
	padding: 18px 0;
	font-family: 'Prata', Georgia, serif;
	font-size: 26px;
	font-weight: 300;
	color: var(--btcb-white);
	text-decoration: none;
	transition: color 0.15s;
}

.btcb-mobile-links a:hover,
.btcb-mobile-links a:focus-visible {
	color: var(--btcb-orange);
	outline: none;
}

/* Mobile CTA buttons */
.btcb-mobile-cta {
	display: flex;
	gap: 14px;
	margin-top: 40px;
}

.btcb-mobile-cta .btcb-btn-outline,
.btcb-mobile-cta .btcb-btn-filled {
	padding: 12px 36px;
	font-size: 15px;
}


/* ============================================================
   RESPONSIVE — hide/show nav elements
   ============================================================ */
@media ( max-width: 768px ) {

	#btcb-nav {
		background: transparent;
		border-radius: 0;
	}

	.btcb-nav-inner {
		grid-template-columns: 1fr auto;
		padding: 0 20px;
	}

	.btcb-nav-left,
	.btcb-nav-right {
		display: none;
	}

	.btcb-nav-logo {
		justify-content: flex-start;
	}

	.btcb-hamburger {
		display: flex;
	}
}


/* ============================================================
   FOOTER
   ============================================================ */
#btcb-footer {
	display: flex;
	justify-content: center;
	padding: 0 16px 16px;
}

#btcb-footer-bar {
	background: var(--btcb-black);
	border-radius: 6px;
	width: 100%;
	max-width: 1300px;
	padding: 40px 28px 32px;
}

.btcb-footer-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

/* Legal links row */
.btcb-footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 40px;
}

.btcb-footer-links a {
	font-family: 'Cabin', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: var(--btcb-white);
	text-decoration: none;
	transition: color 0.15s;
}

.btcb-footer-links a:hover,
.btcb-footer-links a:focus-visible {
	color: var(--btcb-orange);
	outline: none;
}

/* Copyright line */
.btcb-footer-copy {
	font-family: 'Cabin', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: var(--btcb-text-muted);
	margin: 0;
	text-align: center;
}

/* Mobile */
@media ( max-width: 768px ) {
	#btcb-footer-bar {
		padding: 32px 20px 24px;
		border-radius: 0;
	}

	.btcb-footer-links {
		gap: 12px 24px;
	}

	.btcb-footer-links a {
		font-size: 13px;
	}
}


/* ============================================================
   HERO SECTION
   ============================================================ */

/* On front page the hero spans full viewport — no top padding needed */
.home #btcb-content-wrap {
	padding-top: 0;
}

.btcb-hero {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--btcb-black);
}

/* ── Video background ───────────────────────────────────── */
.btcb-hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	pointer-events: none;
}

/* ── Dark overlay on top of video ───────────────────────── */
.btcb-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	z-index: 1;
}

/* ── Hero content ───────────────────────────────────────── */
.btcb-hero-content {
	position: relative;
	z-index: 2;
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
	padding: 120px 28px 140px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}

.btcb-hero-label {
	font-family: 'Cabin', sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--btcb-white);
}

.btcb-hero-heading {
	font-family: 'Prata', Georgia, serif;
	font-size: clamp(36px, 5vw, 64px);
	font-weight: 300;
	line-height: 1.15;
	color: var(--btcb-white);
	margin: 0;
}

.btcb-hero-accent {
	color: var(--btcb-orange);
}

/* Hero CTA button */
.btcb-hero-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	min-width: 360px;
	border-radius: 20px;
	border: 1.5px solid rgba(255, 255, 255, 0.4);
	background: rgba(0, 0, 0, 0.45);
	color: var(--btcb-white);
	font-family: 'Cabin', sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s;
}

.btcb-hero-cta:hover,
.btcb-hero-cta:focus-visible {
	border-color: var(--btcb-orange);
	color: var(--btcb-white);
	outline: none;
}

.btcb-hero-cta-icon {
	font-size: 20px;
	line-height: 1;
}


/* ── Ticker ─────────────────────────────────────────────── */
.btcb-ticker-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
}

/* Gradient fading video into ticker */
.btcb-ticker-gradient {
	height: 120px;
	background: linear-gradient(to bottom, transparent, var(--btcb-black));
}

/* Ticker track */
.btcb-ticker-track {
	background: var(--btcb-black);
	overflow: hidden;
	padding: 14px 0;
}

.btcb-ticker-content {
	display: inline-flex;
	white-space: nowrap;
	animation: btcb-ticker-scroll 35s linear infinite;
}

.btcb-ticker-content:hover {
	animation-play-state: paused;
}

@keyframes btcb-ticker-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.btcb-ticker-item {
	font-family: 'Cabin', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--btcb-white);
	padding: 0 8px;
}

.btcb-ticker-sep {
	color: var(--btcb-orange);
	margin-left: 8px;
}


/* ── Hero mobile ────────────────────────────────────────── */
@media ( max-width: 768px ) {

	.btcb-hero-content {
		padding: 100px 20px 130px;
	}

	.btcb-hero-heading {
		font-size: clamp(32px, 9vw, 48px);
	}
}


/* ============================================================
   SECTION 1 — Copy + CTAs (left) / Equity chart (right)
   ============================================================ */

.btcb-s1 {
	background: var(--btcb-black);
	padding: 96px 24px;
}

.btcb-s1-inner {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 45fr 55fr;
	gap: 64px;
	align-items: center;
}

/* ── Left column ──────────────────────────────────────────── */

.btcb-s1-left {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.btcb-s1-heading {
	font-family: 'Prata', Georgia, serif;
	font-size: clamp(28px, 3.2vw, 46px);
	font-weight: 300;
	line-height: 1.15;
	color: var(--btcb-text);
	margin: 0;
}

.btcb-s1-subheading {
	font-family: 'Prata', Georgia, serif;
	font-size: clamp(16px, 1.6vw, 22px);
	font-weight: 300;
	line-height: 1.45;
	color: var(--btcb-orange);
	margin: 0;
}

.btcb-s1-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
}

.btcb-s1-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: 'Cabin', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: var(--btcb-text-soft);
	background: var(--btcb-card);
	border: 1.5px solid var(--btcb-border);
	border-radius: 20px;
	padding: 13px 24px;
	min-width: 360px;
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btcb-s1-btn:hover {
	border-color: var(--btcb-orange);
	color: var(--btcb-white);
	background: var(--btcb-elevated);
}

.btcb-s1-btn-icon {
	font-size: 18px;
	line-height: 1;
	color: var(--btcb-orange);
}

.btcb-s1-body {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.btcb-s1-body p {
	font-family: 'Cabin', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--btcb-text-soft);
	margin: 0;
}

/* ── Right column ─────────────────────────────────────────── */

.btcb-s1-right {
	width: 100%;
	min-width: 0;    /* prevent CSS Grid blowout — canvas resize feedback loop */
	overflow: hidden;
}

/* ── Section 1 mobile ─────────────────────────────────────── */
@media ( max-width: 900px ) {

	.btcb-s1 {
		padding: 64px 20px;
	}

	.btcb-s1-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.btcb-s1-heading {
		font-size: clamp(26px, 7vw, 36px);
	}

	.btcb-s1-subheading {
		font-size: clamp(15px, 4vw, 18px);
	}
}


/* ============================================================
   SECTION 2 — Target audience + press logo carousel
   ============================================================ */

.btcb-s2 {
	background: var(--btcb-black);
	padding: 96px 24px 0;
	text-align: center;
}

.btcb-s2-inner {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
	padding-bottom: 80px;
}

.btcb-s2-heading {
	font-family: 'Prata', Georgia, serif;
	font-size: clamp(28px, 3.8vw, 54px);
	font-weight: 300;
	line-height: 1.15;
	color: var(--btcb-text);
	margin: 0;
}

.btcb-s2-subheading {
	font-family: 'Prata', Georgia, serif;
	font-size: clamp(18px, 2.2vw, 30px);
	font-weight: 300;
	line-height: 1.4;
	color: var(--btcb-orange);
	margin: 0;
}

.btcb-s2-intro {
	font-family: 'Cabin', sans-serif;
	font-size: 16px;
	color: var(--btcb-text-soft);
	margin: 0;
}

.btcb-s2-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.btcb-s2-list li {
	font-family: 'Cabin', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--btcb-text-soft);
}

.btcb-s2-list li strong {
	font-weight: 700;
	color: var(--btcb-text);
}

.btcb-s2-tagline {
	font-family: 'Cabin', sans-serif;
	font-size: clamp(16px, 1.8vw, 20px);
	font-weight: 600;
	color: var(--btcb-orange);
	margin: 0;
}

/* ── Press logo carousel ──────────────────────────────────── */

.btcb-press-wrap {
	width: 100%;
	padding: 48px 0 64px;
	overflow: hidden;
}

.btcb-press-label {
	font-family: 'Prata', Georgia, serif;
	font-size: 24px;
	font-weight: 300;
	color: var(--btcb-orange);
	text-align: center;
	margin: 0 0 36px;
}

.btcb-press-track {
	overflow: hidden;
	width: 100%;
}

.btcb-press-content {
	display: inline-flex;
	align-items: center;
	gap: 64px;
	white-space: nowrap;
	animation: btcb-press-scroll 30s linear infinite;
}

.btcb-press-content:hover {
	animation-play-state: paused;
}

.btcb-press-logo {
	height: 32px;
	width: auto;
	max-width: 160px;
	object-fit: contain;
	opacity: 0.55;
	filter: brightness(0) invert(1);
	transition: opacity 0.2s;
	flex-shrink: 0;
}

.btcb-press-logo:hover {
	opacity: 0.9;
}

@keyframes btcb-press-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ── Section 2 mobile ─────────────────────────────────────── */
@media ( max-width: 768px ) {

	.btcb-s2 {
		padding: 64px 20px 0;
	}

	.btcb-s2-inner {
		gap: 22px;
		padding-bottom: 56px;
	}

	.btcb-press-content {
		gap: 40px;
	}

	.btcb-press-logo {
		height: 24px;
	}
}


/* ============================================================
   SECTION 3 — Simple Setup / 3-step process
   ============================================================ */

.btcb-s3 {
	background: linear-gradient(
		to bottom,
		#000000  0%,
		#0d0200  4%,
		#2b0c02 15%,
		#4e1806 30%,
		#7a2c10 45%,
		#ad4020 60%,
		#d45028 72%,
		#EF5A33 85%,
		#EF5A33 100%
	);
	padding: 96px 24px 96px;
}

.btcb-s3-inner {
	max-width: 1100px;
	margin: 0 auto;
}

/* ── Header block ─────────────────────────────────────────── */

.btcb-s3-header {
	text-align: center;
	margin-bottom: 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.btcb-s3-heading {
	font-family: 'Prata', Georgia, serif;
	font-size: clamp(28px, 3.6vw, 52px);
	font-weight: 300;
	line-height: 1.2;
	color: var(--btcb-text);
	margin: 0;
}

.btcb-s3-accent {
	color: var(--btcb-orange);
}

.btcb-s3-body {
	font-family: 'Cabin', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: var(--btcb-text-soft);
	max-width: 780px;
	margin: 0;
}

.btcb-s3-cta {
	margin-top: 8px;
}

/* ── Step cards ───────────────────────────────────────────── */

.btcb-s3-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

.btcb-s3-step {
	padding: 0 40px 0 28px;
	position: relative;
}

/* Vertical dashed line — GSAP scrubs scaleY with scroll */
.btcb-s3-line {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 1px;
	background: repeating-linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.25) 0px,
		rgba(255, 255, 255, 0.25) 5px,
		transparent               5px,
		transparent               10px
	);
	transform: scaleY(0);
	transform-origin: bottom center;
	pointer-events: none;
}

/* Horizontal dash at top — GSAP scrubs opacity */
.btcb-s3-dash {
	position: absolute;
	left: -12px;
	top: 0;
	width: 24px;
	height: 1px;
	background: rgba(255, 255, 255, 0.25);
	opacity: 0;
	pointer-events: none;
}

.btcb-s3-badge {
	display: inline-block;
	background: var(--btcb-white);
	color: #1a0600;
	font-family: 'Cabin', sans-serif;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 14px;
	border-radius: 20px;
	margin-bottom: 28px;
	letter-spacing: 0.03em;
}

.btcb-s3-step-heading {
	font-family: 'Prata', Georgia, serif;
	font-size: clamp(22px, 2.2vw, 34px);
	font-weight: 300;
	line-height: 1.2;
	color: var(--btcb-text);
	margin: 0 0 16px;
}

.btcb-s3-step-body {
	font-family: 'Cabin', sans-serif;
	font-size: 15px;
	line-height: 1.7;
	color: var(--btcb-text-soft);
	margin: 0;
}

/* ── Section 3 mobile ─────────────────────────────────────── */
@media ( max-width: 768px ) {

	.btcb-s3 {
		padding: 64px 20px;
	}

	.btcb-s3-steps {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.btcb-s3-step {
		padding: 0 0 0 24px;
	}
}


/* ============================================================
   SECTION 4 — Affiliate Program
   ============================================================ */

.btcb-s4 {
	background: var(--btcb-black);
	padding: 96px 24px 112px;
}

.btcb-s4-inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.btcb-s4-heading {
	font-family: 'Prata', Georgia, serif;
	font-size: clamp(28px, 3.8vw, 54px);
	font-weight: 300;
	line-height: 1.1;
	color: var(--btcb-text);
	margin: 0;
}

.btcb-s4-accent {
	color: var(--btcb-orange);
}

.btcb-s4-body {
	font-family: 'Cabin', sans-serif;
	font-size: 17px;
	line-height: 1.75;
	color: var(--btcb-text-soft);
	max-width: 820px;
	margin: 0;
}

.btcb-s4-body strong {
	font-weight: 700;
	color: var(--btcb-text);
}

/* CTA + radial glow */
.btcb-s4-cta-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	margin-top: 8px;
}

.btcb-s4-cta {
	position: relative;
	z-index: 1;
	min-width: 360px;
}

.btcb-s4-glow {
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	width: 480px;
	height: 120px;
	background: radial-gradient( ellipse at center, rgba(239,90,51,0.35) 0%, transparent 70% );
	pointer-events: none;
	z-index: 0;
}

/* ── Section 4 mobile ─────────────────────────────────────── */
@media ( max-width: 768px ) {

	.btcb-s4 {
		padding: 64px 20px 80px;
	}

	.btcb-s4-cta {
		min-width: unset;
		width: 100%;
	}

	.btcb-s4-glow {
		width: 300px;
	}
}


/* ============================================================
   MOVING BORDER GLOW — all buttons
   Border-glow technique: outer shell = 2px transparent padding,
   inner div = actual background. Glow shines through the gap.
   ============================================================ */

/* Track — absolutely covers the button, behind content */
.btcb-mb-track {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

/* SVG path — invisible, used only for path length maths */
.btcb-mb-svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

/* Glow orb — tight and concentrated so it lights the 2px gap */
.btcb-mb-glow {
	position: absolute;
	width: 180px;
	height: 180px;
	background: radial-gradient(
		circle,
		rgba( 239, 90, 51, 0.80 )  0%,
		rgba( 239, 90, 51, 0.48 ) 25%,
		rgba( 239, 90, 51, 0.16 ) 40%,
		transparent               50%
	);
	transform: translateX( -50% ) translateY( -50% );
	pointer-events: none;
}

/* ── Outer shell — strip background/border, keep only the 2px gap ── */
[data-mb-init].btcb-hero-cta,
[data-mb-init].btcb-s1-btn,
[data-mb-init].btcb-btn-outline,
[data-mb-init].btcb-btn-filled {
	position: relative;
	overflow: hidden;
	background: transparent !important;
	border-color: transparent !important;
	padding: 2px !important;
}

/* ── Inner div — carries the actual visual appearance ── */
[data-mb-init].btcb-hero-cta .btcb-mb-inner {
	position: relative;
	z-index: 2;
	background: rgba( 0, 0, 0, 0.45 );
	border: 1.5px solid rgba( 255, 255, 255, 0.15 );
	border-radius: 18px;
	padding: 12px 26px;
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: background 0.2s, border-color 0.2s;
}

[data-mb-init].btcb-hero-cta:hover .btcb-mb-inner,
[data-mb-init].btcb-hero-cta:focus-visible .btcb-mb-inner {
	border-color: var( --btcb-orange );
}

[data-mb-init].btcb-s1-btn .btcb-mb-inner {
	position: relative;
	z-index: 2;
	background: var( --btcb-card );
	border: 1.5px solid var( --btcb-border );
	border-radius: 18px;
	padding: 11px 22px;
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}

[data-mb-init].btcb-s1-btn:hover .btcb-mb-inner {
	border-color: var( --btcb-orange );
}

[data-mb-init].btcb-btn-outline .btcb-mb-inner {
	background: var( --btcb-black );
	border: 1.5px solid var( --btcb-orange );
	border-radius: 18px;
	width: 100%;
	height: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
	transition: background 0.2s, color 0.2s;
}

[data-mb-init].btcb-btn-outline:hover .btcb-mb-inner {
	background: var( --btcb-orange );
	color: var( --btcb-black );
}

[data-mb-init].btcb-btn-filled .btcb-mb-inner {
	background: var( --btcb-orange );
	border: 1.5px solid var( --btcb-orange );
	border-radius: 18px;
	width: 100%;
	height: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
	transition: background 0.2s, border-color 0.2s;
}

[data-mb-init].btcb-btn-filled:hover .btcb-mb-inner {
	background: var( --btcb-white );
	border-color: var( --btcb-white );
	color: var( --btcb-orange );
}


/* ============================================================
   SOFTWARE PAGE — replicated from btcbreakout.com/software/
   ============================================================ */

/* ── Shared ──────────────────────────────────────────────── */
.btcb-sw-accent { color: var(--btcb-orange); }
.btcb-sw-orange { color: var(--btcb-orange); }
.btcb-label--light { color: rgba(255,255,255,0.55); }

/* ── TOP SECTION — 2-column hero + pricing ───────────────── */
.btcb-sw-top {
	background: var(--btcb-black);
	padding: 100px 40px 80px;
}

.btcb-sw-top-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

/* LEFT: heading + subtitle + intro */
.btcb-sw-top-left {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-right: 20px;
}

.btcb-sw-hero-heading {
	font-family: 'Prata', Georgia, serif;
	font-size: clamp(48px, 5.5vw, 80px);
	font-weight: 300;
	line-height: 1.05;
	color: var(--btcb-text);
	margin: 0;
}

.btcb-sw-hero-sub {
	font-family: 'Cabin', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--btcb-text-muted);
	margin: 0;
	letter-spacing: 0.02em;
}

.btcb-sw-intro-text {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.btcb-sw-intro-text p {
	font-family: 'Cabin', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: var(--btcb-text-soft);
	margin: 0;
}

.btcb-sw-intro-text strong {
	color: var(--btcb-text);
	font-weight: 700;
}

/* RIGHT: pricing card */
.btcb-sw-top-right {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 20px;
}

.btcb-sw-pricing-card {
	width: 100%;
	max-width: 420px;
	background: #F6F6F6;
	border: 2px solid var(--btcb-orange);
	border-radius: 40px;
	padding: 36px 32px 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

.btcb-sw-pricing-icon {
	color: var(--btcb-orange);
	margin-bottom: 16px;
}

.btcb-sw-pricing-title {
	font-family: 'Cabin', sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #111111;
	text-align: center;
	line-height: 1.4;
	margin: 0 0 24px;
}

.btcb-sw-pricing-rows {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.btcb-sw-pricing-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	background: #EFEFEF;
	gap: 16px;
}

.btcb-sw-pricing-row + .btcb-sw-pricing-row {
	margin-top: 2px;
}

.btcb-sw-pricing-label {
	font-family: 'Cabin', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #444444;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 1.4;
}

.btcb-sw-pricing-amount {
	font-family: 'Prata', Georgia, serif;
	font-size: 18px;
	font-weight: 300;
	color: #111111;
	white-space: nowrap;
}

.btcb-sw-pricing-currency {
	font-size: 14px;
	vertical-align: super;
}

.btcb-sw-pricing-per {
	font-family: 'Cabin', sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: #777777;
}

.btcb-sw-pricing-divider {
	width: 100%;
	height: 1px;
	background: #cccccc;
	border: none;
	margin: 4px 0;
}

.btcb-sw-pricing-total .btcb-sw-pricing-label {
	font-size: 14px;
	color: #111111;
}

.btcb-sw-pricing-total .btcb-sw-pricing-amount {
	font-size: 22px;
	color: var(--btcb-orange);
}

/* SOLD OUT button */
.btcb-sw-sold-out-wrap {
	width: 100%;
	margin-top: 20px;
}

.btcb-sw-sold-out {
	display: block;
	width: 100%;
	text-align: center;
	font-family: 'Cabin', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: #111111;
	background: #F6F6F6;
	border: 1.5px solid var(--btcb-orange);
	border-radius: 10px;
	padding: 12px 16px;
	box-sizing: border-box;
	cursor: default;
}


/* ── GRADIENT WRAPPER ────────────────────────────────────── */
.btcb-sw-gradient {
	background: linear-gradient(
		to bottom,
		#000000  0%,
		#0d0200  4%,
		#2b0c02 15%,
		#4e1806 30%,
		#7a2c10 45%,
		#ad4020 60%,
		#d45028 72%,
		#EF5A33 85%,
		#EF5A33 100%
	);
}


/* ── 3-column row ────────────────────────────────────────── */
.btcb-sw-cols-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	border-top: 1px solid rgba(255,255,255,0.18);
}

.btcb-sw-col {
	padding: 56px 48px 64px;
	border-right: 1px solid rgba(255,255,255,0.18);
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.btcb-sw-col:last-child {
	border-right: none;
}

.btcb-sw-col-heading {
	font-family: 'Prata', Georgia, serif;
	font-size: clamp(24px, 2.6vw, 36px);
	font-weight: 300;
	line-height: 1.2;
	color: var(--btcb-text);
	margin: 0;
}

.btcb-sw-col-intro {
	font-family: 'Cabin', sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: var(--btcb-text-soft);
	margin: 0;
}

/* Plain text items (Cloud column — no bullets) */
.btcb-sw-col-text {
	font-family: 'Cabin', sans-serif;
	font-size: 14px;
	line-height: 1.85;
	color: var(--btcb-text-soft);
	margin: 0;
}

/* Bullet list (Risk, Drawdowns, TR, Audience columns) */
.btcb-sw-col-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.btcb-sw-col-list li {
	font-family: 'Cabin', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: var(--btcb-text-soft);
	padding: 8px 0 8px 22px;
	position: relative;
}

.btcb-sw-col-list li::before {
	content: '•';
	position: absolute;
	left: 4px;
	top: 8px;
	color: var(--btcb-text);
	font-size: 12px;
	line-height: 1.6;
}

.btcb-sw-col-tagline {
	font-family: 'Cabin', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: var(--btcb-text-soft);
	margin: 0;
}

.btcb-sw-col-note {
	font-family: 'Cabin', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: var(--btcb-text-soft);
	margin: 0;
}

.btcb-sw-col-note strong {
	color: var(--btcb-text);
	font-weight: 700;
}


/* ── CTA row ─────────────────────────────────────────────── */
.btcb-sw-cta-row {
	padding: 48px 40px;
	display: flex;
	justify-content: center;
}

/* Override btcb-s1-btn for full-width software page CTA */
.btcb-sw-cta-btn {
	width: 100%;
	max-width: 1100px;
	min-width: 0;
	height: 72px;
	border-radius: 28px;
	background: rgba(0,0,0,0.6);
	border: 1px solid rgba(255,255,255,0.18);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	font-size: 16px;
	font-weight: 500;
	color: var(--btcb-text-soft);
	letter-spacing: 0.01em;
	transition: background 0.2s, border-color 0.2s;
}

.btcb-sw-cta-btn:hover {
	background: rgba(0,0,0,0.75);
	border-color: rgba(255,255,255,0.35);
	color: var(--btcb-text);
}


/* ── Software page — responsive ──────────────────────────── */
@media ( max-width: 960px ) {

	.btcb-sw-top {
		padding: 80px 24px 64px;
	}

	.btcb-sw-top-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.btcb-sw-top-left {
		padding-right: 0;
	}

	.btcb-sw-top-right {
		padding-top: 0;
	}

	.btcb-sw-pricing-card {
		max-width: 100%;
	}

	.btcb-sw-cols-row {
		grid-template-columns: 1fr;
	}

	.btcb-sw-col {
		border-right: none;
		border-bottom: 1px solid rgba(255,255,255,0.18);
		padding: 48px 24px 52px;
	}

	.btcb-sw-col:last-child {
		border-bottom: none;
	}

	.btcb-sw-cta-row {
		padding: 40px 24px;
	}

	.btcb-sw-cta-btn {
		height: 64px;
	}
}

@media ( max-width: 600px ) {

	.btcb-sw-hero-heading {
		font-size: clamp(40px, 10vw, 60px);
	}

	.btcb-sw-col {
		padding: 40px 20px 44px;
	}
}
