.ims,
.ims * {
	box-sizing: border-box;
}

.ims {
	--ims-bg: #06111e;
	--ims-panel: #0a1b2b;
	--ims-panel-2: #0d2234;
	--ims-line: rgba(255, 255, 255, 0.09);
	--ims-text: #f8fafc;
	--ims-muted: #8da1b5;
	--ims-cyan: #61e7f3;
	--ims-green: #39d59a;
	--ims-red: #ff6475;
	background:
		linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
		var(--ims-bg);
	background-size: 64px 64px;
	color: var(--ims-text);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	overflow: hidden;
	padding: clamp(70px, 9vw, 120px) 20px;
	position: relative;
}

.ims__ambient {
	border-radius: 999px;
	filter: blur(90px);
	opacity: .15;
	pointer-events: none;
	position: absolute;
}

.ims__ambient--one {
	background: var(--ims-cyan);
	height: 360px;
	right: -120px;
	top: -140px;
	width: 360px;
}

.ims__ambient--two {
	background: var(--ims-green);
	bottom: -180px;
	height: 340px;
	left: -140px;
	width: 340px;
}

.ims__inner {
	margin: 0 auto;
	max-width: 1240px;
	position: relative;
	z-index: 1;
}

.ims__intro {
	align-items: end;
	display: grid;
	gap: 36px;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
	margin-bottom: 48px;
}

.ims__eyebrow {
	align-items: center;
	color: var(--ims-cyan);
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	gap: 9px;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.ims__eyebrow i,
.ims__market i {
	animation: ims-pulse 1.8s ease-in-out infinite;
	background: var(--ims-green);
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(57, 213, 154, .12);
	display: inline-block;
	height: 7px;
	width: 7px;
}

.ims__intro h2 {
	color: #fff;
	font-size: clamp(38px, 5vw, 66px);
	font-weight: 800;
	letter-spacing: -.045em;
	line-height: 1.02;
	margin: 16px 0 0;
	max-width: 780px;
}

.ims__intro p {
	color: var(--ims-muted);
	font-size: 17px;
	line-height: 1.75;
	margin: 0;
	max-width: 480px;
}

.ims__terminal {
	background: rgba(5, 15, 25, .72);
	border: 1px solid var(--ims-line);
	border-radius: 28px;
	box-shadow: 0 35px 90px rgba(0, 0, 0, .34);
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(300px, .78fr);
	overflow: hidden;
}

.ims__chart-card {
	border-right: 1px solid var(--ims-line);
	min-width: 0;
	padding: 26px;
}

.ims__chart-head,
.ims__trade-head,
.ims__progress-block > div:first-child {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.ims__pair > span {
	color: #fff;
	display: block;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -.02em;
}

.ims__pair small,
.ims__trade-head > div > span,
.ims__metric > span,
.ims__progress-block span {
	color: var(--ims-muted);
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	margin-top: 4px;
	text-transform: uppercase;
}

.ims__market {
	align-items: center;
	background: rgba(57, 213, 154, .08);
	border: 1px solid rgba(57, 213, 154, .18);
	border-radius: 999px;
	color: var(--ims-green);
	display: flex;
	font-size: 11px;
	font-weight: 800;
	gap: 8px;
	padding: 8px 11px;
}

.ims__chart-wrap {
	background: #071522;
	border: 1px solid rgba(255,255,255,.06);
	border-radius: 18px;
	height: 420px;
	margin-top: 22px;
	overflow: hidden;
	position: relative;
}

.ims__chart-wrap canvas {
	display: block;
	height: 100%;
	width: 100%;
}

.ims__signal-tag {
	align-items: center;
	background: rgba(7, 21, 34, .92);
	border: 1px solid rgba(97, 231, 243, .25);
	border-radius: 9px;
	display: flex;
	gap: 8px;
	left: 46%;
	opacity: 0;
	padding: 7px 9px;
	pointer-events: none;
	position: absolute;
	top: 48%;
	transform: translate(-8px, 8px);
	transition: .35s ease;
}

.ims__signal-tag.is-visible {
	opacity: 1;
	transform: translate(0, 0);
}

.ims__signal-tag span {
	background: var(--ims-green);
	border-radius: 5px;
	color: #04140e;
	font-size: 10px;
	font-weight: 900;
	padding: 4px 6px;
}

.ims__signal-tag.is-sell span {
	background: var(--ims-red);
	color: #25070b;
}

.ims__signal-tag strong,
.ims__price-pill {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 11px;
}

.ims__price-pill {
	background: var(--ims-cyan);
	border-radius: 6px 0 0 6px;
	color: #03212a;
	font-weight: 900;
	padding: 6px 8px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: top .25s ease;
}

.ims__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	padding: 20px 4px 2px;
}

.ims__legend span {
	align-items: center;
	color: var(--ims-muted);
	display: inline-flex;
	font-size: 11px;
	gap: 7px;
}

.ims__legend strong {
	color: #dbe7f2;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-weight: 700;
}

.ims__legend-dot {
	border-radius: 50%;
	display: inline-block;
	height: 7px;
	width: 7px;
}

.ims__legend-dot--entry { background: var(--ims-cyan); }
.ims__legend-dot--tp { background: var(--ims-green); }
.ims__legend-dot--sl { background: var(--ims-red); }

.ims__stats {
	background: rgba(10, 27, 43, .86);
	padding: 28px;
}

.ims__trade-head {
	border-bottom: 1px solid var(--ims-line);
	padding-bottom: 22px;
}

.ims__trade-head > div > strong {
	display: block;
	font-size: 17px;
	margin-top: 7px;
}

.ims__trade-head b {
	color: var(--ims-green);
	font-size: 12px;
	margin-right: 4px;
}

.ims__trade-head b.is-sell { color: var(--ims-red); }

.ims__status {
	background: rgba(97, 231, 243, .08);
	border-radius: 999px;
	color: var(--ims-cyan);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .08em;
	padding: 7px 9px;
	text-transform: uppercase;
}

.ims__status.is-done {
	background: rgba(57, 213, 154, .1);
	color: var(--ims-green);
}

.ims__status.is-loss {
	background: rgba(255, 100, 117, .1);
	color: var(--ims-red);
}

.ims__metric-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr 1fr;
}

.ims__metric {
	background: rgba(255,255,255,.035);
	border: 1px solid rgba(255,255,255,.065);
	border-radius: 14px;
	padding: 16px;
}

.ims__metric--featured {
	background: linear-gradient(135deg, rgba(97,231,243,.1), rgba(57,213,154,.035));
	margin: 16px 0 12px;
	padding: 20px;
}

.ims__metric strong {
	display: block;
	font-size: 16px;
	margin-top: 8px;
}

.ims__metric strong small {
	color: var(--ims-muted);
	font-size: 10px;
}

.ims__metric--featured strong {
	color: var(--ims-green);
	font-size: 34px;
	letter-spacing: -.04em;
}

.ims__metric--featured strong.is-loss { color: var(--ims-red); }

.ims__metric--featured > small {
	color: var(--ims-muted);
	display: block;
	font-size: 11px;
	margin-top: 5px;
}

.ims__progress-block {
	margin-top: 22px;
}

.ims__progress-block strong {
	color: var(--ims-cyan);
	font-size: 12px;
}

.ims__progress {
	background: rgba(255,255,255,.07);
	border-radius: 999px;
	height: 7px;
	margin-top: 10px;
	overflow: hidden;
}

.ims__progress i {
	background: linear-gradient(90deg, var(--ims-cyan), var(--ims-green));
	border-radius: inherit;
	display: block;
	height: 100%;
	transition: width .35s ease;
	width: 0;
}

.ims__steps {
	display: grid;
	gap: 13px;
	list-style: none;
	margin: 26px 0 0;
	padding: 0;
}

.ims__steps li {
	align-items: center;
	display: flex;
	gap: 11px;
	opacity: .42;
	transition: .25s ease;
}

.ims__steps li.is-active,
.ims__steps li.is-complete { opacity: 1; }

.ims__steps li > i {
	align-items: center;
	border: 1px solid var(--ims-line);
	border-radius: 50%;
	color: var(--ims-muted);
	display: flex;
	font-size: 10px;
	font-style: normal;
	font-weight: 800;
	height: 28px;
	justify-content: center;
	width: 28px;
}

.ims__steps li.is-active > i,
.ims__steps li.is-complete > i {
	background: var(--ims-cyan);
	border-color: var(--ims-cyan);
	color: #03212a;
}

.ims__steps strong,
.ims__steps small { display: block; }
.ims__steps strong { font-size: 12px; }
.ims__steps small { color: var(--ims-muted); font-size: 10px; margin-top: 2px; }

.ims__replay {
	background: transparent;
	border: 1px solid var(--ims-line);
	border-radius: 11px;
	color: #dce7f1;
	cursor: pointer;
	font: inherit;
	font-size: 12px;
	font-weight: 800;
	margin-top: 24px;
	padding: 12px 16px;
	transition: .2s ease;
	width: 100%;
}

.ims__replay:hover,
.ims__replay:focus-visible {
	background: rgba(255,255,255,.06);
	border-color: rgba(97,231,243,.35);
	outline: none;
}

.ims__replay span { display: inline-block; font-size: 17px; margin-right: 5px; }

.ims__disclaimer {
	color: #768da1;
	font-size: 11px;
	line-height: 1.7;
	margin: 20px auto 0;
	max-width: 940px;
	text-align: center;
}

.ims__disclaimer strong { color: #a8b8c7; }

@keyframes ims-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: .6; transform: scale(.82); }
}

@media (max-width: 900px) {
	.ims__intro,
	.ims__terminal { grid-template-columns: 1fr; }
	.ims__intro { align-items: start; gap: 20px; }
	.ims__chart-card { border-bottom: 1px solid var(--ims-line); border-right: 0; }
}

@media (max-width: 560px) {
	.ims { padding-left: 14px; padding-right: 14px; }
	.ims__intro h2 { font-size: 38px; }
	.ims__chart-card,
	.ims__stats { padding: 18px; }
	.ims__chart-wrap { height: 320px; }
	.ims__market { font-size: 9px; }
	.ims__legend { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
	.ims *, .ims *::before, .ims *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}

/* Content integrated after the original Elementor hero and market strip. */
.ims__intro h2 { font-family: "Manrope", sans-serif; font-size: 46px; font-weight: 600; line-height: 1.3; letter-spacing: normal; }
.ims__metric--featured strong { font-size: 27px; }
.ims-theme { color: #465967; background: #fff; font-family: "Manrope", sans-serif; font-size: 16px; line-height: 1.7; }
.ims-theme * { box-sizing: border-box; }
.ims-theme img { max-width: 100%; }
.ims-theme a { text-decoration: none; }
.ims-theme__shell { width: min(1200px, calc(100% - 40px)); margin-inline: auto; }
.ims-theme__section { padding: 100px 0; background: #fff; }
.ims-theme__soft { background: #f5f7f8; }
.ims-theme--page { overflow: hidden; }
.ims-theme__page-hero { padding: 105px 0 90px; background: linear-gradient(135deg, #f7fafb 0%, #fff 62%); border-bottom: 1px solid #e5ebee; }
.ims-theme__page-hero h1 { max-width: 880px; margin: 0; color: #222; font-family: "Manrope", sans-serif; font-size: 58px; font-weight: 600; line-height: 1.18; letter-spacing: normal; }
.ims-theme__page-hero p { max-width: 720px; margin: 24px 0 0; color: #657784; font-size: 18px; line-height: 1.75; }
.ims-theme__split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.ims-theme__eyebrow { display: block; margin-bottom: 15px; color: #16869a; font-size: 12px; font-weight: 700; letter-spacing: .13em; }
.ims-theme h2 { margin: 0; color: #222; font-size: 46px; font-weight: 600; line-height: 1.3; letter-spacing: normal; }
.ims-theme h3 { margin: 0; color: #222; font-size: 25px; font-weight: 600; line-height: 1.4; }
.ims-theme p { margin: 0 0 18px; }
.ims-theme__tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.ims-theme__tags span { padding: 8px 13px; border: 1px solid #d9e1e5; border-radius: 999px; background: #fff; color: #304958; font-size: 12px; font-weight: 600; }
.ims-theme__heading { max-width: 760px; margin-bottom: 48px; }
.ims-theme__heading > p { margin-top: 13px; }
.ims-theme__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ims-theme__cards article { position: relative; display: flex; flex-direction: column; min-height: 490px; padding: 32px; border: 1px solid #dfe5e8; border-radius: 16px; background: #fff; box-shadow: 0 16px 42px rgba(33, 55, 70, .06); }
.ims-theme__cards small { color: #16869a; font-weight: 700; letter-spacing: .12em; }
.ims-theme__cards h3 { margin: 37px 0 12px; }
.ims-theme__cards ul { list-style: none; margin: 18px 0 24px; padding: 0; }
.ims-theme__cards li { position: relative; padding: 6px 0 6px 23px; font-size: 13px; }
.ims-theme__cards li::before { content: "✓"; position: absolute; left: 0; color: #1ba574; font-weight: 700; }
.ims-theme__price { margin-top: auto; color: #222; font-size: 32px; font-weight: 600; }
.ims-theme__price em { color: #71818c; font-size: 13px; font-style: normal; }
.ims-theme__annual { margin: 3px 0 16px; font-size: 13px; }
.ims-theme__button { display: inline-flex; align-items: center; justify-content: center; align-self: flex-start; min-height: 48px; padding: 0 23px; border-radius: 8px; background: #16a8bd; color: #fff !important; font-size: 13px; font-weight: 700; }
.ims-theme__link { margin-top: auto; color: #137c8e !important; font-size: 13px; font-weight: 700; }
.ims-theme__gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ims-theme__gallery figure { margin: 0; overflow: hidden; border: 1px solid #dfe5e8; border-radius: 16px; background: #fff; }
.ims-theme__gallery a { display: block; height: 550px; padding: 12px; background: #f1f4f5; }
.ims-theme__gallery img { width: 100%; height: 100%; border-radius: 10px; object-fit: cover; object-position: top; }
.ims-theme__gallery figcaption { padding: 17px 19px; color: #334957; font-size: 13px; font-weight: 600; }
.ims-theme__notice { margin-top: 25px !important; color: #73828d; font-size: 12px; }
.ims-theme__broker { background: #142a3a; color: #c5d0d7; }
.ims-theme__broker h2, .ims-theme__broker .ims-theme__eyebrow { color: #fff; }
.ims-theme__dprime { display: grid; justify-items: center; padding: 50px 25px; border: 1px solid rgba(255,255,255,.17); border-radius: 18px; background: rgba(255,255,255,.06); text-align: center; }
.ims-theme__dprime b { display: grid; place-items: center; width: 78px; height: 78px; border-radius: 18px; background: #16a8bd; color: #fff; font-size: 49px; }
.ims-theme__dprime strong { margin-top: 15px; color: #fff; font-size: 27px; letter-spacing: .16em; }
.ims-theme__dprime span { max-width: 290px; margin-top: 12px; font-size: 12px; }
.ims-theme__contact { display: grid; grid-template-columns: 1fr 1fr .85fr; gap: 18px; }
.ims-theme__contact article, .ims-theme__contact aside { overflow: hidden; border: 1px solid #dfe5e8; border-radius: 16px; background: #fff; }
.ims-theme__contact iframe { display: block; width: 100%; height: 270px; border: 0; }
.ims-theme__contact article > div, .ims-theme__contact aside { padding: 22px; }
.ims-theme__contact small { color: #16869a; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.ims-theme__contact aside { display: flex; align-items: flex-start; flex-direction: column; justify-content: center; padding: 32px; }
.ims-theme__contact aside h3 { margin: 7px 0 15px; }
.ims-theme__contact aside > a:not(.ims-theme__button) { margin-bottom: 22px; color: #526571; overflow-wrap: anywhere; }
.ims-theme__values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ims-theme__values article { padding: 32px; border: 1px solid #dfe5e8; border-radius: 16px; background: #fff; }
.ims-theme__values small { color: #16869a; font-weight: 700; letter-spacing: .12em; }
.ims-theme__values h3 { margin: 30px 0 10px; }
.ims-theme__values p { margin-bottom: 0; font-size: 14px; }

@media (max-width: 900px) {
	.ims-theme__split { grid-template-columns: 1fr; gap: 35px; }
	.ims-theme__cards, .ims-theme__gallery { grid-template-columns: 1fr 1fr; }
	.ims-theme__values { grid-template-columns: 1fr; }
	.ims-theme__cards article:first-child, .ims-theme__gallery figure:first-child { grid-column: 1 / -1; }
	.ims-theme__contact { grid-template-columns: 1fr 1fr; }
	.ims-theme__contact aside { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
	.ims__intro h2, .ims-theme h2 { font-size: 28px; }
	.ims-theme__page-hero { padding: 72px 0 62px; }
	.ims-theme__page-hero h1 { font-size: 38px; }
	.ims-theme__page-hero p { font-size: 16px; }
	.ims-theme__section { padding: 72px 0; }
	.ims-theme__shell { width: min(100% - 28px, 1200px); }
	.ims-theme__cards, .ims-theme__gallery, .ims-theme__contact { grid-template-columns: 1fr; }
	.ims-theme__cards article:first-child, .ims-theme__gallery figure:first-child, .ims-theme__contact aside { grid-column: auto; }
	.ims-theme__cards article { min-height: auto; }
	.ims-theme__gallery a { height: 500px; }
}
