:root {
	--white-color: #fff;
	--black-color: #000;
	--gold-color: #c9a84c;
	--light-white-color: #ffffff8c;
	--padding: 96px;
	--border-bottom: #ffffff14;
}

@font-face {
	font-family: "SohneHalbfett";
	src: url("../fonts/TestSohne-Halbfett.otf") format("opentype");
	font-weight: 600;
	/* Semi-bold */
	font-style: normal;
}

body,
html {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

*,
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/* font-family: 'SohneHalbfett'; */
}

ul,
li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

a {
	text-decoration: none;
}

.container-main {
	max-width: 1380px;
	margin: 0 auto;
	padding:0px 80px;
}

body {
	font-family: "Inter", sans-serif;
	background-color: var(--black-color);
}
.mob-header{
	display:none;
}
.bravendix-hero-main,
.why-bravendix-exists-main,
.the-structural-shift-main,
.bravendix-ai-economy-main,
.ai-is-reshaping-main,
.what-bravendix-delivers-main,
.inside-bravendix-main,
.current-developments-main,
.direct-contact-main,
.intelligence-feed-main,
.terms-use-main,
.bravendix-quarterly-main,
.latest-issue-main,
.insights-hero-main,
.insights-open-access-main,
.insights-open-access-research-main,
.research-hero-main,
.research-open-access-main,
.research-open-access-research-main,
.bravendix-black-process-form-main,
.buy-page-main,
.my-account-page-main,
.login-signup-page-main,
.insights-inner-page-main {
	padding-top: var(--padding);
	padding-bottom: var(--padding);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* main header */

.main-header {
	background: rgba(14, 14, 14, 0.96);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	position: sticky;
	top: 0;
	z-index: 50;
}

.main-header .container-main {
	max-width: unset;
	padding: 0 40px;
}

.main-header.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 50;
	animation: headerSlideDown 0.4s ease forwards;
}

@keyframes headerSlideDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.header-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
}

/* .header-left img {
max-width: 250px;
}
*/
.header-links ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 36px;
}

.header-links ul li {
	color: var(--light-white-color);
	transition: color 0.2s ease;
	font-size: 16px;
	font-weight: 500;
	font-family: "DM Sans", sans-serif;
}

.header-links ul li a {
	color: var(--light-white-color);
	font-weight: 500;
}

.header-links ul li a:hover,
.header-links ul li.active a {
	color: var(--white-color);
}

.header-btns {
	display: flex;
	align-items: center;
	gap: 10px;
}

.weekly-memo a {
	border: 1.5px solid var(--white-color);
	color: var(--black-color);
	padding: 8px 20px;
	border-radius: 50px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	background-color: var(--white-color);
	font-family: "DM Sans", sans-serif;
}

.sign-in a {
	border: 1.5px solid var(--light-white-color);
	color: var(--light-white-color);
	padding: 8px 20px;
	border-radius: 50px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	background-color: transparent;
	font-family: "DM Sans", sans-serif;
}

.sign-in a:hover {
	background-color: var(--white-color);
	color: var(--black-color);
}

/* middle bar */

.ticker-wrap {
	background: var(--black-color);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 10px 0;
	overflow: hidden;
	position: relative;
}

.ticker-wrap::before {
	content: "";
	position: absolute;
	left: 90px;
	top: 0;
	bottom: 0;
	width: 70px;
	background: linear-gradient(to right, #0e0e0e, transparent);
	z-index: 2;
	pointer-events: none;
}

.ticker-badge {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 90px;
	background: var(--gold-color);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-family: "DM Sans", sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--black-color);
	z-index: 3;
}

.live-dot {
	width: 5px;
	height: 5px;
	background: var(--black-color);
	border-radius: 50%;
	animation: pulse 1.5s ease-in-out infinite;
}

.ticker-track {
	display: flex;
	width: max-content;
	animation: ticker 65s linear infinite;
	padding-left: 110px;
}

.ticker-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 28px;
	font-size: 11.5px;
	white-space: nowrap;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	font-family: "DM Sans", sans-serif;
}

.t-tag {
	font-size: 8.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold-color);
	padding: 2px 6px;
	border: 1px solid rgba(201, 168, 76, 0.28);
	border-radius: 2px;
	flex-shrink: 0;
}

.t-text {
	color: rgba(255, 255, 255, 0.55);
	font-weight: 300;
}

.t-val {
	color: var(--white-color);
	font-weight: 600;
}

.t-date {
	color: rgba(255, 255, 255, 0.28);
	font-size: 10px;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.2;
	}
}

.ticker-track {
	display: flex;
	width: max-content;
	animation: ticker 65s linear infinite;
	padding-left: 110px;
}

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

@keyframes ticker {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* hero section */

.bravendix-hero-content .sub-heading,
.bravendix-hero-content .bravendix-hero-content-heading,
.bravendix-hero-content .bravendix-hero-content-desc {
	display: flex;
	align-items: center;
	justify-content: center;
}

.sub-heading p {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: "Inter", sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold-color);
	border: 1px solid rgba(201, 168, 76, 0.28);
	background: rgba(201, 168, 76, 0.12);
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 32px;
}

.bravendix-hero-content-heading h1 {
	font-family: "SohneHalbfett";
	font-size: 75px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.025em;
	margin-bottom: 22px;
	color: var(--white-color);
	text-align: center;
}

.bravendix-hero-content-heading h1 span {
	color: var(--gold-color);
}

.bravendix-hero-content-desc p {
	font-size: 16px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.55);
	max-width: 580px;
	margin-bottom: 14px;
	line-height: 1.8;
	text-align: center;
	font-family: "Inter", sans-serif;
}

.bravendix-hero-content-small-text p {
	font-size: 14px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.28);
	margin-bottom: 44px;
	line-height: 1.8;
	font-family: "Inter", sans-serif;
	text-align: center;
}

.bravendix-hero-btns {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
}

.get-started-free a {
	border: 1.5px solid var(--gold-color);
	color: var(--black-color);
	padding: 8px 20px;
	border-radius: 50px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	background-color: var(--gold-color);
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: 500;
}

.view-research a {
	border: 1.5px solid rgba(255, 255, 255, 0.75);
	color: rgba(255, 255, 255, 0.75);
	padding: 8px 20px;
	border-radius: 50px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	background-color: transparent;
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: 500;
}

.view-research a:hover {
	background-color: var(--gold-color);
	border: 1.5px solid var(--gold-color);
	color: var(--black-color);
}

.bravendix-hero-provocation {
	display: flex;
	justify-content: center;
	align-items: center;
}

.bravendix-hero-provocation p {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 18px;
	font-weight: 300;
	font-style: italic;
	color: rgba(255, 255, 255, 0.28);
	margin-top: 56px;
	padding-top: 40px;
	max-width: 700px;
	letter-spacing: 0.01em;
	line-height: 1.7;
	font-family: "Inter", sans-serif;
}

/* why-bravendix-exists-main */
.why-bravendix-exists-flex {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.why-bravendix-exists-left,
.why-bravendix-exists-right {
	width: 50%;
}

.why-bravendix-exists-right {
	padding-left: 56px;
}

.why-bravendix-exists-left-content-sub-heading p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.28);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 16px;
	font-family: "Inter", sans-serif;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.why-bravendix-exists-left-content-heading h2 {
	font-family: "SohneHalbfett";
	font-size: 38px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 22px;
	letter-spacing: -0.01em;
	color: var(--white-color);
}

.why-bravendix-exists-left-content-desc p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 10px;
	font-family: "DM Sans", sans-serif;
}

.why-bravendix-exists-left-content-desc ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.why-bravendix-exists-left-content-desc ul li {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 300;
	line-height: 1.8;
	position: relative;
	display: inline-flex;
	align-items: center;
	font-family: "DM Sans", sans-serif;
}

.why-bravendix-exists-left-content-desc ul li::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--gold-color);
	margin-right: 10px;
}

.why-bravendix-exists-left-content-box {
	border-left: 2px solid var(--gold-color);
	margin-top: 16px;
	max-width: 400px;
}

.why-bravendix-exists-left-content-box p {
	font-size: 15px;
	font-weight: 600;
	color: var(--white-color);
	padding-left: 16px;
	line-height: 1.55;
	font-family: "Inter", sans-serif;
}

.why-bravendix-exists-right-flex {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.why-bravendix-exists-right-block {
	background: #141414;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 20px 22px;
	transition: border-color 0.2s;
}

.why-bravendix-exists-right-block-content h3 {
	font-family: "DM Sans", sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-color);
	margin-bottom: 6px;
}

.why-bravendix-exists-right-block-content p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 300;
	line-height: 1.65;
	font-family: "Inter", sans-serif;
}

/* the-structural-shift-main */
.the-structural-shift-content {
	background: #141414;
	border: 1px solid var(--border-bottom);
	border-radius: 12px;
	padding: 48px;
}

.the-structural-shift-heading h2 {
	font-family: "SohneHalbfett";
	font-size: 38px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 22px;
	letter-spacing: -0.01em;
	color: var(--white-color);
	text-align: center;
}

.the-structural-shift-desc p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 10px;
	font-family: "DM Sans", sans-serif;
	text-align: center;
}

.the-structural-shift-flex-top {
	display: flex;
	gap: 32px;
}

.the-structural-shift-chart-panel {
	width: 65%;
	background: #0f0f0f;
	border: 1px solid var(--border-bottom);
	border-radius: 10px;
	padding: 20px;
	height: 320px;
	position: relative;
}

.the-structural-shift-chart-panel canvas {
	width: 100% !important;
	height: 100% !important;
}

.the-structural-shift-card {
	width: 35%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.the-structural-shift-card-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.the-structural-shift-card-inner {
	background: #0f0f0f;
	border: 1px solid var(--border-bottom);
	border-radius: 10px;
	padding: 18px;
}

.the-structural-shift-card-inner-value-gold h3 {
	font-family: "DM Sans", sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	color: var(--gold-color);
}

.the-structural-shift-card-inner-value-white h3 {
	font-family: "DM Sans", sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	color: var(--white-color);
}

.the-structural-shift-card-inner-text p {
	font-size: 11px;
	font-weight: 300;
	margin-top: 6px;
	line-height: 1.4;
	color: var(--light-white-color);
}

.the-structural-shift-card-bottom-highlight {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	background: #141414;
	border: 1px solid var(--gold-color);
	border-radius: 10px;
	padding: 20px;
}

.the-structural-shift-card-bottom-highlight-heading h3 {
	font-family: "DM Sans", sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: var(--gold-color);
	line-height: 1;
}

.the-structural-shift-card-bottom-highlight-heading p {
	font-size: 11px;
	color: var(--light-white-color);
	font-weight: 300;
	margin-top: 6px;
	line-height: 1.4;
}

.the-structural-shift-card-bottom-highlight-desc p {
	font-size: 10px;
	color: #ffffff47;
	text-align: right;
	line-height: 1.5;
}

.the-structural-shift-bottom {
	margin-top: 32px;
	border-top: 1px solid var(--border-bottom);
}

.the-structural-shift-bottom-grid {
	margin-top: 24px;
	border-top: 1px solid var(--border);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.the-structural-shift-bottom-flex {
	display: flex;
	align-items: center;
	gap: 8px;
}

.the-structural-shift-bottom-tag p {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-bottom);
	border-radius: 3px;
	font-size: 9px;
	color: var(--light-white-color);
	padding: 1px 5px;
	white-space: nowrap;
	margin-top: 1px;
	font-family: "DM Sans", sans-serif;
}

.the-structural-shift-bottom-text p {
	font-size: 11px;
	color: var(--light-white-color);
	line-height: 1.55;
}

/* bravendix-ai-economy-main */

.bravendix-ai-economy-heading-main .sub-heading,
.bravendix-ai-economy-heading {
	display: flex;
	justify-content: center;
	align-items: center;
}

.bravendix-ai-economy-heading h2 {
	font-family: "SohneHalbfett";
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 22px;
	letter-spacing: -0.01em;
	color: var(--white-color);
	text-align: center;
}

.bravendix-ai-economy-desc p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 10px;
	font-family: "DM Sans", sans-serif;
	max-width: 500px;
	margin: 0 auto;
}

.bravendix-ai-economy-flex {
	display: flex;
	flex-wrap: wrap;
	margin: -20px;
	padding-top: 80px;
}

.bravendix-ai-economy-block {
	width: 20%;
	padding: 0px 6px;
	position: relative;
}

.bravendix-ai-economy-block-inner {
	background: #141414;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 20px 18px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 8px;
	transition: border-color 0.2s;
	height: 100%;
}

.bravendix-ai-economy-numbers p {
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.28);
	letter-spacing: 0.06em;
}

.bravendix-ai-economy-block-heading h3 {
	font-family: "SohneHalbfett";
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 4px;
	line-height: 1.35;
}

.bravendix-ai-economy-block-desc p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.28);
	font-weight: 300;
	line-height: 1.5;
	font-family: "Inter", sans-serif;
}

.bravendix-ai-economy-block-box p {
	font-family: "DM Sans", sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 3px 8px;
	border-radius: 3px;
	white-space: nowrap;
	width: fit-content;
	margin-top: 4px;
}

.bravendix-ai-economy-block-inner:hover {
	border-color: var(--gold-color);
}

.bravendix-ai-economy-block-inner:hover .bravendix-ai-economy-block-box p {
	border-color: var(--gold-color);
	color: var(--gold-color);
}

.bravendix-ai-economy-block::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 0;
	border-top: 1px dashed #fff;
	top: 50%;
	z-index: -1;
}

.bravendix-ai-economy-block:last-child::before {
	content: unset;
}

/* Ai reshaping section */

.ai-is-reshaping-content .sub-heading {
	display: flex;
	justify-content: center;
	align-items: center;
}

.ai-is-reshaping-heading-big h2 {
	font-family: "SohneHalbfett";
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 22px;
	letter-spacing: -0.01em;
	color: var(--white-color);
	text-align: center;
}

.ai-is-reshaping-desc p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 10px;
	font-family: "DM Sans", sans-serif;
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}

.ai-is-reshaping-bars {
	display: grid;
	gap: 16px;
	max-width: 1100px;
	margin: 0 auto;
	padding-top: 40px;
	padding-bottom: 40px;
}

.ai-is-reshaping-bars-list {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) 3fr 64px;
	gap: 16px;
	align-items: center;
}

.ai-is-reshaping-bars-list p.label {
	font-size: 12.5px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.55);
	text-align: right;
	font-family: "DM Sans", sans-serif;
}

.ai-is-reshaping-bars-list .meter {
	position: relative;
	height: 12px;
	border-radius: 999px;
	background: #0c0c0c;
	border: 1px solid #2a2a2a;
	overflow: hidden;
}

.ai-is-reshaping-bars-list .meter .fill {
	width: 0%;
	transition: width 800ms ease-out;
}

.ai-is-reshaping-bars-list .meter .meter-line {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: repeating-linear-gradient(to bottom,
		#3a3a3a 0 4px,
		transparent 4px 8px);
	opacity: 0.8;
}

.ai-is-reshaping-bars-list .meter .fill {
	width: 0%;
	height: 100%;
	background: linear-gradient(90deg,
		rgba(255, 255, 255, 0.95),
		rgba(255, 255, 255, 0.85));
	box-shadow:
		rgba(0, 255, 153, 0.12) 0px 0px 14px inset,
		rgba(0, 255, 153, 0.08) 0px 0px 18px;
	border-right: 1px solid rgba(255, 255, 255, 0.85);
	transition: width 800ms ease-out;
}

.ai-is-reshaping-bars-list p.value {
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.02em;
	font-size: 17px;
	font-weight: 700;
	color: var(--white-color);
	text-align: right;
}

.ai-is-reshaping-bars-info p {
	max-width: 860px;
	margin: 22px auto 0;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.28);
	font-weight: 300;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 12px;
}

/* what-bravendix-delivers-main */

.what-bravendix-delivers-heading-main .sub-heading,
.what-bravendix-delivers-heading {
	display: flex;
	justify-content: center;
	align-items: center;
}

.what-bravendix-delivers-heading h2 {
	font-family: "SohneHalbfett";
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 22px;
	letter-spacing: -0.01em;
	color: var(--white-color);
	text-align: center;
}

.what-bravendix-delivers-desc p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 10px;
	font-family: "DM Sans", sans-serif;
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}

.what-bravendix-delivers-flex {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	padding-top: 40px;
}

.what-bravendix-delivers-pricing-inner {
	background: #141414;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 32px 26px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: relative;
	transition: border-color 0.2s;
	height: 100%;
}

.what-bravendix-delivers-pricing-block-pack-name p {
	font-family: "DM Sans", sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold-color);
}

.what-bravendix-delivers-pricing-block-price p {
	font-size: 36px;
	font-weight: 700;
	color: var(--white-color);
	line-height: 1;
	font-family: "Inter", sans-serif;
}

.what-bravendix-delivers-pricing-block-price span {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.28);
	font-weight: 300;
	margin-left: 3px;
}

.what-bravendix-delivers-pricing-block-small-info p {
	font-size: 12px;
	color: var(--gold-color);
	font-weight: 500;
	font-family: "DM Sans", sans-serif;
}

.what-bravendix-delivers-pricing-block-points {
	flex: 1;
}

.what-bravendix-delivers-pricing-block-points ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.what-bravendix-delivers-pricing-block-points ul li {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 300;
	position: relative;
	display: inline-flex;
	align-items: center;
	font-family: "DM Sans", sans-serif;
}

.what-bravendix-delivers-pricing-block-points ul li::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold-color);
	margin-right: 10px;
}

.what-bravendix-delivers-pricing-block-note p {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
	font-style: italic;
	font-weight: 300;
	font-family: "DM Sans", sans-serif;
}

.what-bravendix-delivers-pricing-block-btn a {
	display: block;
	text-align: center;
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	padding: 11px 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 4px;
	transition: all 0.2s;
}


.what-bravendix-delivers-pricing-block-btn a:hover {
	color: var(--white-color);
	border-color: var(--white-color);
}

p.what-bravendix-delivers-pricing-block-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gold-color);
	color: var(--black-color);
	font-family: "DM Sans", sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 20px;
	white-space: nowrap;
}

.what-bravendix-delivers-pricing-block.recommended .what-bravendix-delivers-pricing-inner {
	border-color: var(--gold-color);
}

.what-bravendix-delivers-pricing-block.recommended .what-bravendix-delivers-pricing-block-btn a {
	background-color: var(--gold-color);
	color: var(--black-color);
	border-color: var(--gold-color);
}

/* .what-bravendix-delivers-pricing-block-note p {
padding-top: 20px;
} */

/* inside-bravendix-main */

.inside-bravendix-heading-main .sub-heading,
.inside-bravendix-heading {
	display: flex;
	justify-content: center;
	align-items: center;
}

.inside-bravendix-heading h2 {
	font-family: "SohneHalbfett";
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 22px;
	letter-spacing: -0.01em;
	color: var(--white-color);
	text-align: center;
}

.inside-bravendix-desc p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 10px;
	font-family: "DM Sans", sans-serif;
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}

.inside-bravendix-flex {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	padding-top: 40px;
}

.inside-bravendix-block-inner {
	background: #141414;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 28px;
	transition: border-color 0.2s;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.inside-bravendix-block-type p {
	font-family: "DM Sans", sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold-color);
	display: block;
	margin-bottom: 12px;
}

.inside-bravendix-block-heading h3 {
	font-family: "SohneHalbfett";
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 1.35;
	color: var(--white-color);
}

.inside-bravendix-block-info {
	flex: 1;
}

.inside-bravendix-block-info p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 300;
	line-height: 1.7;
	margin-bottom: 14px;
}

.inside-bravendix-block-read-insight a {
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: var(--gold-color);
	text-decoration: none;
	transition: opacity 0.2s;
}

.inside-bravendix-block-read-insight a:hover {
	opacity: 0.7;
}

.locked-btn a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 9px 16px;
	border-radius: 4px;
	margin-top: 12px;
	cursor: pointer;
}

.locked-in .inside-bravendix-block-inner {
	opacity: 0.55;
}

/* current-developments-main */

.current-developments-heading-main .sub-heading,
.current-developments-heading {
	display: flex;
	justify-content: center;
	align-items: center;
}

.current-developments-heading h2 {
	font-family: "SohneHalbfett";
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--white-color);
	text-align: center;
}

.current-developments-desc p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 10px;
	font-family: "DM Sans", sans-serif;
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}

.current-developments-flex {
	max-width: 760px;
	margin: 0 auto 32px;
	margin-top: 80px;
}

.dev-feed {
	position: relative;
}

.dev-line {
	position: absolute;
	left: 7px;
	top: 8px;
	bottom: 8px;
	width: 1px;
	border-left: 1px dashed rgba(255, 255, 255, 0.12);
}

.dev-row {
	display: flex;
	align-items: flex-start;
	gap: 22px;
	padding-bottom: 32px;
	position: relative;
}

.dev-dot-wrap {
	width: 15px;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	padding-top: 6px;
	position: relative;
	z-index: 1;
}

.dev-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gold-color);
	flex-shrink: 0;
}

.dev-body {
	flex: 1;
}

.dev-tag {
	font-family: "DM Sans", sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-color);
	display: block;
	margin-bottom: 6px;
}

.dev-body h4 {
	font-family: "SohneHalbfett";
	font-size: 18px;
	font-weight: 600;
	color: var(--white-color);
	margin-bottom: 6px;
	line-height: 1.35;
}

.dev-body p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 300;
	line-height: 1.65;
}

.current-developments-btns {
	padding-top: 16px;
}

.current-developments-btns a {
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: var(--gold-color);
	text-decoration: none;
	transition: opacity 0.2s;
}

.current-developments-btns a:hover {
	opacity: 0.7;
}

.about-bravendix-closing-box {
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 20px;
	margin-top: 8px;
	line-height: 1.6;
}

.about-bravendix-closing-box p span {
	color: var(--gold-color);
}

/* footer */

.footer-main {
	padding-top: var(--padding);
}

.footer-flex {
	display: flex;
	padding-bottom: 60px;
	justify-content: space-between;
}

.footer-logo {
	max-width: 220px;
}

.footer-block p {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	margin-top: 15px;
	color: rgba(255, 255, 255, 0.35);
	max-width: 350px;
}

.footer-block h6 {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold-color);
	margin-bottom: 20px;
	font-family: "DM Sans", sans-serif;
}

.footer-block ul li {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.38);
	text-decoration: none;
	font-weight: 300;
	transition: color 0.2s;
	font-family: "DM Sans", sans-serif;
	margin-top: 15px;
}

.footer-block ul li a {
	color: rgba(255, 255, 255, 0.38);
	padding: unset;
}

.footer-block ul li a:hover {
	color: var(--white-color);
}

.footer-copyright-main {
	padding:30px 0px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copyright p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 300;
	font-style: italic;
	text-align:center;
	line-height: 1.7;
	font-family: "DM Sans", sans-serif;
}



.copy-right-end .footer-copyright p {
	max-width: unset;
	margin: unset;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 300;
	font-style: unset;
	text-align: unset;
	line-height: 1.7;
}
.footer-copyright {
	display: flex;
	gap: 5px;
	justify-content: center;
}

/* Get In Touch */

.get-in-touch-main {
	padding: 96px 0px;
	border-bottom: 1px solid var(--border-bottom);
}

.get-in-touch-heading h1 {
	font-family: "SohneHalbfett";
	color: var(--white-color);
	font-size: 51.2px;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin-bottom: 12px;
}

.get-in-touch-desc p {
	font-size: 15px;
	color: var(--light-white-color);
	font-weight: 300;
	max-width: 520px;
	line-height: 1.8;
}

/* Direct Contact */

.direct-contact-main {
	padding: 96px 0px;
	border-bottom: 1px solid var(--border-bottom);
}

.direct-contact-contain {
	display: flex;
	gap: 72px;
}

.direct-contact-left-contain,
.direct-contact-right-contain {
	width: 50%;
}

.general-support-info {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--border-bottom);
}

.general-support-info span {
	display: block;
	font-size: 14px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

.general-support-block {
	background: #141414;
	border: 1px solid var(--border-bottom);
	border-radius: 8px;
	padding: 18px 20px;
	margin-bottom: 12px;
	transition: border-color 0.2s;
}

.general-support-block p {
	font-family: "DM Sans", sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ffffff40;
	margin-bottom: 6px;
}

.general-support-block a {
	font-size: 14px;
	color: var(--white-color);
}

.general-support-block h2 {
	font-size: 12px;
	color: #ffffff40;
	font-weight: 300;
	margin-top: 4px;
}

.who-we-hear-info {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--border-bottom);
}

.who-we-hear-info span {
	display: block;
	font-size: 14px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

.who-we-hear-info ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.who-we-hear-info ul li {
	position: relative;
	display: inline-flex;
	align-items: center;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #393b3f;
}

.who-we-hear-info ul li::before {
	content: "";
	width: 5px;
	height: 5px;
	background-color: var(--gold-color);
	margin-right: 16px;
	border-radius: 50%;
	box-shadow: 0px 0px 6px 0px #fdbd1373;
}

.response-time-info {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--border-bottom);
}

.response-time-info span {
	display: block;
	font-size: 14px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

.response-time-block {
	background: var(--black-color);
	border: 1px solid var(--border-bottom);
	border-radius: 8px;
	padding: 18px 20px;
}

.response-time-block p {
	font-size: 13px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.75;
}

.response-time-block strong {
	color: var(--white-color);
	font-weight: 500;
}

.not-sure-info span {
	font-size: 14px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

.not-sure-info p {
	font-size: 14px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.8;
}

.not-sure-info a {
	color: var(--gold-color);
}

/* FORM  */
.form-panel {
	background: #141414;
	border: 1px solid var(--border-bottom);
	border-radius: 12px;
	padding: 36px;
	position: sticky;
	top: 80px;
}

.form-panel-heading h1 {
	font-family: "SohneHalbfett";
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 6px;
}

.form-panel-desc p {
	font-size: 13px;
	color: #ffffff40;
	font-weight: 300;
	margin-bottom: 28px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.f-field {
	margin-bottom: 16px;
}

.f-field p {
	font-family: "DM Sans", sans-serif;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ffffff40;
	margin-bottom: 8px;
}

.f-field input,
.f-field select,
.f-field textarea {
	width: 100%;
	background: #111;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 13.5px;
	font-weight: 300;
	padding: 12px 14px;
	outline: none;
	transition: border-color 0.2s;
}

.f-field select {
	appearance: none;
}

.f-field select option {
	background: #1a1a1a;
	color: #fff;
}

.f-field textarea {
	resize: vertical;
	min-height: 110px;
}

.f-field input[type="submit"] {
	width: 100%;
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--black-color);
	background: var(--gold-color);
	border: none;
	border-radius: 50px;
	padding: 14px;
	cursor: pointer;
	margin-top: 4px;
}

.form-privacy p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.18);
	font-weight: 300;
	margin-top: 12px;
	text-align: center;
}

.form-privacy a {
	color: rgba(255, 255, 255, 0.28);
}

/* Intelligence Feed */

.intelligence-feed-main {
	padding: 96px 0px;
	border-bottom: 1px solid var(--border-bottom);
}

.intelligence-feed-heading h1 {
	font-family: "SohneHalbfett";
	color: var(--white-color);
	font-size: 51.2px;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin-bottom: 12px;
}

.intelligence-feed-desc p {
	font-size: 15px;
	color: var(--light-white-color);
	font-weight: 300;
	max-width: 520px;
	line-height: 1.8;
}

/* Breaking */

.breaking-main {
	padding: 96px 0px;
}

.breaking-info-flex {
	display: flex;
	gap: 56px;
}

.breaking-info-left,
.breaking-info-right {
	width: 50%;
}

.breaking-info-left {
	position: relative;
}

.left-line {
	position: absolute;
	left: 7px;
	top: 10px;
	bottom: 36px;
	width: 1px;
	border-left: 1px dashed #ffffff1a;
}

.feed-dot-wrap {
	width: 15px;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	padding-top: 7px;
	position: relative;
	z-index: 1;
}

.feed-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gold-color);
	flex-shrink: 0;
}

.breaking-info-left-block {
	display: flex;
	align-items: flex-start;
	gap: 22px;
	padding-bottom: 36px;
	position: relative;
}

.breaking-info-left-block-inner {
	flex: 1;
	background: #141414;
	border: 1px solid var(--border-bottom);
	border-radius: 8px;
	padding: 20px 22px;
	transition: border-color 0.2s;
}

.feed-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.feed-tag span {
	font-family: "DM Sans", sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold-color);
	border: 1px solid #c9a84c47;
	background: #c9a84c1a;
	padding: 3px 8px;
	border-radius: 2px;
}

.feed-category span {
	font-family: "DM Sans", sans-serif;
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffffff40;
}

.breaking-info-left-block-inner h3 {
	font-family: "SohneHalbfett";
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 8px;
	line-height: 1.35;
}

.breaking-info-left-block-inner p {
	font-size: 13px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.7;
	margin-bottom: 10px;
}

.feed-impact {
	border-top: 1px solid var(--border-bottom);
}

.feed-impact p {
	padding-top: 8px;
	font-family: "DM Sans", sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ffffff40;
}

.feed-impact span {
	color: #ffffff66;
}

.breaking-info-right-card {
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: sticky;
	top: 88px;
}

.breaking-info-right-card-inner {
	background: #141414;
	border: 1px solid var(--border-bottom);
	border-radius: 10px;
	padding: 22px;
}

.breaking-info-right-card-inner p {
	font-size: 13px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.7;
	margin-bottom: 14px;
}

.btn {
	display: block;
	text-align: center;
	font-family: "DM Sans", sans-serif;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--black-color);
	background: var(--gold-color);
	border-radius: 50px;
	padding: 8px 20px;
}

.get-btn {
	display: block;
	text-align: center;
	font-family: "DM Sans", sans-serif;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--light-white-color);
	border: 1px solid var(--border-bottom);
	border-radius: 50px;
	padding: 9px 20px;
	text-decoration: none;
	margin-top: 8px;
	transition: all 0.2s;
}

/* Terms Use */

.terms-use-main {
	padding: 96px 0px;
	border-bottom: 1px solid var(--border-bottom);
}

.terms-use-heading h1 {
	font-family: "SohneHalbfett";
	color: var(--white-color);
	font-size: 51.2px;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin-bottom: 12px;
}

.terms-use-desc p {
	font-size: 12px;
	color: #ffffff40;
	font-weight: 300;
	margin-bottom: 48px;
	font-family: "DM Sans", sans-serif;
}

.terms-use-block {
	margin-bottom: 40px;
}

.terms-use-block h2 {
	font-family: "SohneHalbfett";
	font-size: 17px;
	font-weight: 600;
	color: var(--white-color);
	margin-bottom: 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border-bottom);
	padding-top:20px;
}

.terms-use-block p {
	font-size: 14px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.85;
	margin-bottom: 12px;
}

.terms-use-block ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 12px;
}

.terms-use-block ul li {
	position: relative;
	display: flex;
	align-items: center;
	font-weight: 300;
	line-height: 1.75;
	gap: 10px;
	color: var(--light-white-color);
}

.terms-use-block ul li::before {
	content: "";
	width: 5px;
	height: 5px;
	background-color: var(--gold-color);
	margin-right: 16px;
	border-radius: 50%;
	box-shadow: 0px 0px 6px 0px #fdbd1373;
}

.terms-use-block strong {
	color: var(--white-color);
	font-weight: 500;
}

.terms-use-box {
	background: #141414;
	border: 1px solid var(--border-bottom);
	border-radius: 8px;
	padding: 20px 24px;
	margin: 16px 0;
}

.terms-use-box p {
	font-size: 14px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.85;
}

.terms-use-block a {
	color: var(--gold-color);
}

.terms-use-block-note {
	margin-top: 32px;
	padding-top: 20px;
	border-top: 1px solid var(--border-bottom);
}

.terms-use-block-note p {
	font-size: 13px;
	color: #ffffff40;
	font-weight: 300;
}

.terms-use-block-note a {
	color: var(--gold-color);
}

/* bravendix-quarterly-main */

.bravendix-quarterly-heading h2 {
	font-family: "SohneHalbfett";
	font-size: 38px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 22px;
	letter-spacing: -0.01em;
	color: var(--white-color);
}

.bravendix-quarterly-desc p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 10px;
	font-family: "DM Sans", sans-serif;
}

.latest-issues-content-flex {
	display: flex;
	gap: 56px;
}

.latest-issues-content-left {
	width: 60%;
}

.latest-issues-content-right {
	width: 40%;
}

.latest-issues-content-left-block-inner {
	background: #141414;

	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	padding: 20px 22px;
	transition: border-color 0.2s;
}

.latest-issues-content-left-block-inner-heading h2 {
	font-family: "SohneHalbfett";
	font-size: 38px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 22px;
	letter-spacing: -0.01em;
	color: var(--white-color);
}

.latest-issues-content-left-block-inner-desc p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 10px;

}

.key-themes-info {
	background: #201f1f;
	border: 1px solid var(--border-bottom);
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	padding: 20px 22px;
	transition: border-color 0.2s;
}

.key-themes-heading p {

	font-size: 14px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.85;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.key-themes-points ul {
	display: flex;
	flex-direction: column;
	gap: 9px;
	flex: 1;
}

.key-themes-points ul li {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 300;
	line-height: 1.8;
	position: relative;
	display: inline-flex;
	align-items: center;
	font-family: "DM Sans", sans-serif;
}

.key-themes-points ul li::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--gold-color);
	margin-right: 10px;
}

.key-themes-btns {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.key-themes-access a {
	border: 1.5px solid var(--gold-color);
	color: var(--black-color);
	padding: 8px 20px;
	border-radius: 50px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	background-color: var(--gold-color);
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: bold;
}

.archive-content {
	padding-top: 30px;
}

.archive-content-block {

	border: 1px solid var(--border-bottom);
	border-radius: 8px;
	padding: 20px 22px;
	transition: border-color 0.2s;
}

.archive-content-block-inner-heading h2 {
	font-family: "SohneHalbfett";
	font-size: 38px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 22px;
	letter-spacing: -0.01em;
	color: var(--white-color);
}

.archive-content-block-inner-text p {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--light-white-color);
}

.latest-issues-content-left-block-inner-heading h2 {
	font-family: "SohneHalbfett";
	font-size: 38px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 22px;
	letter-spacing: -0.01em;
	color: var(--white-color);
}

.archive-content-block-inner-desc p {
	font-size: 14px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 10px;
}

.archive-content-btns {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.latest-issues-content-right-card {
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: sticky;
	top: 88px;
}

.latest-issues-content-right-card-inner {
	background: #141414;
	border: 1px solid var(--border-bottom);
	border-radius: 10px;
	padding: 22px;
}

.archive-content-access-report a {
	border: 1px solid var(--light-white-color);
	color: var(--light-white-color);
	padding: 8px 20px;
	border-radius: 50px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	background-color: transparent;
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: bold;
}

.latest-issues-content-right-card-inner-desc p {
	font-size: 14px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 10px;
}

.latest-issues-content-right-card-inner-btns {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}

.latest-issues-content-right-card-inner-btns a {
	font-family: "DM Sans", sans-serif;
	border: 1.5px solid var(--gold-color);
	color: var(--black-color);
	padding: 8px 20px;
	border-radius: 50px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--gold-color);
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}

.latest-issues-content-right-card-inner-btns-trans a {
	font-family: "DM Sans", sans-serif;
	display: block;
	text-align: center;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--light-white-color);
	border: 1px solid var(--border-bottom);
	border-radius: 50px;
	padding: 9px 20px;
	text-decoration: none;
	margin-top: 8px;
	transition: all 0.2s;
	background: transparent;
}

.latest-issues-content-right-card-inner-text {
	display: flex;
	justify-content: space-between;
}

.latest-issues-content-right-card-inner-topic p {
	font-size: 14px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 10px;

}

.latest-issues-content-right-card-inner-time p {
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 22px;
	letter-spacing: -0.01em;
	color: var(--white-color);
}

/* insights-hero-main */

.insights-hero-content-heading h2 {
	font-family: "SohneHalbfett";
	font-size: 38px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 22px;
	letter-spacing: -0.01em;
	color: var(--white-color);
}

.insights-hero-content-desc p {
	font-size: 14px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 10px;
	font-family: "DM Sans", sans-serif;
}

/* insights-open-access-main */

.insights-open-access-heading h2 {
	font-family: "SohneHalbfett";
	font-size: 38px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 22px;
	letter-spacing: -0.01em;
	color: var(--white-color);
}

.insights-open-access-desc p {
	font-size: 14px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 10px;

}

.insights-open-access-read-btn a {
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	color: var(--white-color);
	border-bottom: 1px solid var(--white-color);
}

/* insights-open-access-research-main */

.insights-open-access-research-box {
	padding: 26px 30px;
	border: 1px solid #2a2a2a;
	border-radius: 16px;
	background: #0b0b0b;
}

.insights-open-access-research-box-desc p {
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	margin-bottom: 20px;
	color: var(--light-white-color);
}

.insights-open-access-research-box-btn a {
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	color: var(--white-color);
	border-bottom: 1px solid var(--white-color);
}

/* research-hero-main */

.research-hero-content-heading h2 {
	font-family: "SohneHalbfett";
	font-size: 38px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 22px;
	letter-spacing: -0.01em;
	color: var(--white-color);
}

.research-hero-content-desc p {
	font-size: 14px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 10px;
	font-family: "DM Sans", sans-serif;
}

.research-open-access-desc p {
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	margin-bottom: 20px;
	color: var(--light-white-color);
}

.research-open-access-read-btn a {
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	color: var(--white-color);
	border-bottom: 1px solid var(--white-color);
}

/* research-open-access-research-main */

.research-open-access-research-box {
	padding: 26px 30px;
	border: 1px solid #2a2a2a;
	border-radius: 16px;
	background: #0b0b0b;
}

.research-open-access-research-box-desc p {
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	margin-bottom: 20px;
	color: var(--light-white-color);
	font-family: "DM Sans", sans-serif;
}

.research-open-access-research-box-btn a {
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	color: var(--white-color);
	border-bottom: 1px solid var(--white-color);
}

/* bravendix-black-main */
.bravendix-black-main{
	padding-bottom:25px;
	padding-top:var(--padding);
}
.bravendix-black-hero-content-heading h2 {
	font-family: "SohneHalbfett";
	font-size: 38px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 22px;
	letter-spacing: -0.01em;
	color: var(--white-color);
}

.bravendix-black-hero-content-desc p {
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	margin-bottom: 20px;
	color: var(--light-white-color);
	font-family: "DM Sans", sans-serif;
}

.bravendix-black-hero-content-text p {
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	margin-bottom: 20px;
	color: var(--light-white-color);
	font-family: "DM Sans", sans-serif;
}

.bravendix-black-hero-content-text span {
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 22px;
	letter-spacing: -0.01em;
	color: var(--white-color);
}

/* access-alignment-main */
.access-alignment-main{
	padding:25px 0px;
}
.access-alignment-flex {
	display: flex;
}

.access-alignment-left,
.access-alignment-right {
	width: 50%;
}

.access-alignment-left-imp-points ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.access-alignment-left-imp-points li {
	position: relative;
	display: inline-flex;
	align-items: center;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: var(--light-white-color);
}

.access-alignment-left-imp-points ul li::before {
	content: "";
	width: 5px;
	height: 5px;
	background-color: var(--gold-color);
	margin-right: 16px;
	border-radius: 50%;
	box-shadow: 0px 0px 6px 0px #fdbd1373;
}

.access-alignment-right-imp-points ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.access-alignment-right-imp-points li {
	position: relative;
	display: inline-flex;
	align-items: center;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: var(--light-white-color);
}

.access-alignment-right-imp-points ul li::before {
	content: "";
	width: 5px;
	height: 5px;
	background-color: var(--gold-color);
	margin-right: 16px;
	border-radius: 50%;
	box-shadow: 0px 0px 6px 0px #fdbd1373;
}

/* bravendix-black-process-main */
.bravendix-black-process-main{
	padding:25px 0px;
}
.bravendix-black-process-hero-content-block-inner {
	padding-top: 16px;
	padding-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 16px;
	border-bottom: 1px solid var(--border-bottom);
}

.bravendix-black-process-hero-content-block-inner-number p {
	font-weight: 800;
	font-size: 20px;
	line-height: 22px;
	letter-spacing: 0px;
	color: var(--gold-color);
	padding-right: 10px;
}

.bravendix-black-process-hero-content-block-inner-info-heading h3 {
	font-family: "SohneHalbfett";
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 8px;
	line-height: 1.35;
}

.bravendix-black-process-hero-content-block-inner-info-desc p {
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.75;
}

.bravendix-black-process-hero-content-block-inner:last-child {
	border-bottom: none;
}

.bravendix-black-process-hero-content-text {
	margin: 20px;
	margin-left: 0px;
	padding: 20px 20px 20px 0px;
	border-bottom: 1px solid var(--border-bottom);
	opacity: 0.6;
}

.bravendix-black-process-hero-content-text p {
	font-size: 12px;
	font-style: italic;
	color: var(--light-white-color);
	line-height: 1.6;
}

/* bravendix-black-process-form-main */
.bravendix-black-process-form-main{
	padding:25px 0px;
}
.bravendix-black-process-form-panel {
	background: #141414;
	border: 1px solid var(--border-bottom);
	border-radius: 12px;
	padding: 36px;
	position: sticky;
	top: 80px;
}

.bravendix-black-process-form-panel-heading h2 {
	font-family: "SohneHalbfett";
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 6px;
}

.bravendix-black-process-form-panel-desc p {
	font-size: 13px;
	color: #ffffff40;
	font-weight: 300;
	margin-bottom: 28px;
}

.bravendix-black-process-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.bravendix-black-process-form-row-field {
	margin-bottom: 16px;
}

.bravendix-black-process-form-row-field p {
	font-family: "DM Sans", sans-serif;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ffffff40;
	margin-bottom: 8px;
}

.bravendix-black-process-form-row-field input,
.bravendix-black-process-form-row-field select,
.bravendix-black-process-form-row-field textarea {
	width: 100%;
	background: #0f0f0f;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 13.5px;
	padding: 13px 14px;
	transition: all 0.25s ease;
}

.bravendix-black-process-form-row-field select {
	appearance: none;
}

.bravendix-black-process-form-row-field select option {
	background: #1a1a1a;
	color: #fff;
}

.bravendix-black-process-form-row-field textarea {
	resize: vertical;
}

.bravendix-black-process-form-row-field input[type="submit"] {
	width: 30%;
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--black-color);
	background: var(--white-color);
	border: none;
	border-radius: 50px;
	padding: 14px;
	cursor: pointer;
	margin-top: 4px;
}

.bravendix-black-process-form-privacy p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.18);
	font-weight: 300;
	margin-top: 12px;
}

.bravendix-black-process-form-privacy a {
	color: rgba(255, 255, 255, 0.28);
}

.full-width {
	grid-column: 1 / -1;
}

/* premium-membership-main */
.premium-membership-main{
	padding-bottom: 25px;   
	padding-top: var(--padding);
}
.premium-membership-content-heading h2 {
	font-family: "SohneHalbfett";
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 22px;
	letter-spacing: -0.01em;
	color: var(--white-color);
}

.premium-membership-content-desc p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 10px;
	font-family: "DM Sans", sans-serif;
}

.what-you-unlock-content-points ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.what-you-unlock-content-points ul li {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 300;
	line-height: 1.8;
	position: relative;
	display: inline-flex;
	align-items: center;
	font-family: "DM Sans", sans-serif;
}

.what-you-unlock-content-points ul li::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--gold-color);
	margin-right: 10px;
}

.inside-the-membership-content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 24px;
}

.inside-the-membership-content-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 16px;
}

.inside-the-membership-content-card-heading h3 {
	font-family: "SohneHalbfett";
	color: var(--white-color);
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
}

.inside-the-membership-content-card-desc p {
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.6;
}

.built-for-content-desc {
	margin-bottom: 28px;
	padding: 16px;

	border-radius: 6px;
}

.built-for-content-desc p {
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.8;
}
.what-you-unlock-main,
.inside-the-membership-main{
	padding: 25px 0px;
}

/* membership-price-main */
.membership-price-main{
	padding: 25px 0px;
}
.membership-price-content {
	padding: 30px;
	background: #0b0b0b;
	border-radius: 10px;
}

.membership-price-content-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.membership-price-content-left-heading h3 {
	font-family: "SohneHalbfett";
	color: var(--light-white-color);
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
}

.membership-price-content-left-amount p {
	font-family: "DM Sans", sans-serif;
	font-size: 25px;
	color: var(--white-color);
	font-weight: 300;
	line-height: 1.8;

}

.membership-price-content-left-amount span {
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.8;

}

.membership-price-content-left-desc p {
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	color: var(--light-white-color);
	font-weight: 300;
	line-height: 1.8;
}

.membership-price-content-right a {
	display: block;
	text-align: center;
	font-family: "DM Sans", sans-serif;
	font-size: 12.5px;
	font-weight: 800;
	color: var(--black-color);
	background: var(--gold-color);
	border-radius: 50px;
	padding: 10px 20px;
}


.buy-page-content{
	background: #141414;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 32px 26px;
	display: flex;
	flex-direction: column;
	align-items:center;
	gap: 18px;
	position: relative;
	transition: border-color 0.2s;
	height: 100%;
}
.buy-page-content h1{
	font-family: "SohneHalbfett";
	color: var(--white-color);
	font-size: 51.2px;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin-bottom:20px;
}
.buy-page-content-price {
	font-size: 36px;
	font-weight: 700;
	color: var(--white-color);
	line-height: 1;
	font-family: "Inter", sans-serif;

}
.buy-page-content-desc{
	font-size: 12px;
	color: var(--gold-color);
	font-weight: 500;
	font-family: "DM Sans", sans-serif;

}


.venor-paddle-checkout btn {
	background-color: var(--gold-color);
	color: var(--black-color);
	padding: 15px 40px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
	font-size: 18px;
}
.venor-ai-black-form-inner {
	padding-top: 10px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-content:center;
	justify-self:center;
}

.venor-ai-black-form-submit {
	align-items: center;
	display: flex;
	justify-content: center;
	padding-top: 10px;
}
.venor-ai-black-form-submit input[type="submit"] {
	width: 100%;
	font-family: "DM Sans", sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: var(--black-color);
	background: var(--gold-color);
	border: none;
	border-radius: 50px;
	padding: 8px;
	cursor: pointer;
}



.insights-inner-page-main {
	background-color: var(--black-color);
	color: var(--white-color);
	font-family: "Inter", sans-serif;
}



.insights-inner-page-main h1,
.insights-inner-page-main h2,
.insights-inner-page-main h3,
.insights-inner-page-main h4,
.insights-inner-page-main h5,
.insights-inner-page-main h6,
.insights-inner-page-main strong {
	font-family: "SohneHalbfett";
	color: var(--white-color);
	letter-spacing: -0.02em;
}


.insights-inner-page-heading h1 {
	font-size: 64px;
	line-height: 1.1;
	margin-bottom: 24px;
}

.insights-inner-page-main h1 {
	font-size: 40px;
	margin: 60px 0 20px;
}

.insights-inner-page-main h2 {
	font-size: 26px;
	margin: 40px 0 16px;
}

.insights-inner-page-main p {
	font-family: "Inter", sans-serif;
	font-size: 18px;
	line-height: 1.8;
	color: var(--light-white-color);
	margin-bottom: 20px;
}

.insights-inner-page-main em {
	font-style: italic;
	color: var(--white-color);
	opacity: 0.8;
}

.insights-inner-page-info-block > p:first-child,
.insights-inner-page-info-block > p:nth-child(2),
.insights-inner-page-info-block ul,
.insights-inner-page-info-block li {
	font-family: "DM Sans", sans-serif;
	letter-spacing: 0.04em;
}


.insights-inner-page-main ul {
	padding-left: 20px;
}

.insights-inner-page-main li {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 10px;
}


.insights-inner-page-main table {
	width: 100%;
	border-collapse: collapse;
	margin: 40px 0;
}

.insights-inner-page-main td {
	border-bottom: 1px solid var(--border-bottom);
	padding: 16px;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	color: var(--light-white-color);
	vertical-align: top;
}


.insights-inner-page-main td strong {
	font-family: "SohneHalbfett";
	color: var(--white-color);
	display: block;
	margin-bottom: 4px;
}



.insights-inner-page-main p strong {
	font-family: "SohneHalbfett";
	color: var(--white-color);
	font-size: 18px;
}


.insights-inner-page-main figure {
	margin: 20px 0;
	border-bottom: 1px solid var(--border-bottom);
}


.insights-inner-page-main figure::-webkit-scrollbar {
	height: 6px;
}

.insights-inner-page-main figure::-webkit-scrollbar-track {
	background: transparent;
}

.insights-inner-page-main figure::-webkit-scrollbar-thumb {
	background: var(--gold-color);
	border-radius: 10px;
}


.insights-inner-page-main figure {
	scrollbar-color: var(--gold-color) transparent;
	scrollbar-width: thin;
}

