:root {
	--sinapsis-navy: #071637;
	--sinapsis-ink: #0a1533;
	--sinapsis-muted: #5d6c89;
	--sinapsis-blue: #2763df;
	--sinapsis-blue-deep: #124dcc;
	--sinapsis-cyan: #049cc1;
	--sinapsis-teal: #168665;
	--sinapsis-purple: #7259d9;
	--sinapsis-violet: #8d6ce8;
	--sinapsis-pink: #d84e7f;
	--sinapsis-green: #28a96b;
	--sinapsis-line: #dfe6f3;
	--sinapsis-soft: #f7faff;
	--sinapsis-paper: #ffffff;
	--sinapsis-shadow: 0 22px 58px rgba(17, 43, 92, 0.13);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.sinapsis-landing-body {
	margin: 0;
	color: var(--sinapsis-ink);
	background: var(--sinapsis-paper);
	font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

.sinapsis-page a {
	color: inherit;
	text-decoration: none;
}

.sinapsis-page svg {
	display: block;
	width: 100%;
	height: 100%;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.section-inner,
.header-inner,
.hero-inner,
.footer-inner {
	width: min(100% - 64px, 1400px);
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid var(--sinapsis-line);
	backdrop-filter: blur(14px);
	transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
	box-shadow: 0 12px 34px rgba(18, 44, 90, 0.08);
}

.header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 32px;
	min-height: 72px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--sinapsis-navy);
	font-size: 1.8rem;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.brand-mark {
	display: inline-flex;
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	color: var(--sinapsis-blue);
}

.brand-mark img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.brand-mark svg {
	fill: currentColor;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
}

.primary-nav ul,
.trust-list,
.app-sidebar ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav ul {
	display: flex;
	justify-content: center;
	gap: 44px;
}

.primary-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 72px;
	color: var(--sinapsis-ink);
	font-size: 0.98rem;
	font-weight: 700;
}

.primary-nav a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	content: "";
	background: var(--sinapsis-blue);
	border-radius: 999px 999px 0 0;
	opacity: 0;
	transform: scaleX(0.6);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus,
.primary-nav a.is-active {
	color: var(--sinapsis-blue);
}

.primary-nav a:hover::after,
.primary-nav a:focus::after,
.primary-nav a.is-active::after {
	opacity: 1;
	transform: scaleX(1);
}

.header-actions {
	display: inline-flex;
	align-items: center;
	gap: 20px;
}

.login-link {
	font-weight: 700;
	color: var(--sinapsis-ink);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 44px;
	padding: 0 26px;
	font-weight: 800;
	line-height: 1;
	border: 1px solid transparent;
	border-radius: 7px;
	box-shadow: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus {
	transform: translateY(-1px);
}

.sinapsis-page a.button-primary,
.sinapsis-page .button.button-primary {
	color: #ffffff !important;
	background: linear-gradient(135deg, var(--sinapsis-blue), var(--sinapsis-blue-deep));
	box-shadow: 0 12px 22px rgba(39, 99, 223, 0.28);
}

.sinapsis-page a.button-primary:hover,
.sinapsis-page a.button-primary:focus,
.sinapsis-page a.button-primary:visited,
.sinapsis-page .button.button-primary:hover,
.sinapsis-page .button.button-primary:focus {
	color: #ffffff !important;
	box-shadow: 0 16px 28px rgba(39, 99, 223, 0.34);
}

.button-large {
	min-width: 174px;
	min-height: 48px;
}

.sinapsis-page a.button-ghost,
.sinapsis-page .button.button-ghost {
	color: var(--sinapsis-blue) !important;
	background: rgba(255, 255, 255, 0.86);
	border-color: rgba(39, 99, 223, 0.45);
}

.button-icon {
	display: inline-flex;
	width: 26px;
	height: 26px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.button-icon svg {
	width: 14px;
	height: 14px;
	margin: auto;
	fill: currentColor;
}

.sinapsis-page a.button-light,
.sinapsis-page a.button-light:hover,
.sinapsis-page a.button-light:focus,
.sinapsis-page a.button-light:visited,
.sinapsis-page .button.button-light {
	color: var(--sinapsis-blue-deep) !important;
	background: #ffffff;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	background: #ffffff;
	border: 1px solid var(--sinapsis-line);
	border-radius: 7px;
}

.nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	background: var(--sinapsis-navy);
	border-radius: 999px;
}

.hero-section {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, #ffffff 0%, #ffffff 47%, rgba(237, 245, 255, 0.92) 72%, rgba(218, 231, 255, 0.96) 100%),
		url("../images/neural-field.svg") right center / 48% 100% no-repeat;
}

.hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	gap: 50px;
	align-items: center;
	min-height: 438px;
	padding: 42px 0 22px;
}

.hero-copy h1 {
	max-width: 620px;
	margin: 0;
	font-size: 3rem;
	font-weight: 850;
	line-height: 1.06;
	color: var(--sinapsis-navy);
}

.hero-copy h1 span {
	display: block;
	color: var(--sinapsis-blue);
}

.hero-lead {
	max-width: 610px;
	margin: 16px 0 0;
	color: var(--sinapsis-muted);
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.36;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 24px;
}

.trust-list {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
	margin-top: 22px;
	color: #52617c;
	font-size: 0.86rem;
	font-weight: 650;
}

.trust-list li {
	position: relative;
	padding-left: 24px;
}

.trust-list li::before {
	position: absolute;
	top: 1px;
	left: 0;
	display: grid;
	width: 16px;
	height: 16px;
	content: "\2713";
	place-items: center;
	color: var(--sinapsis-teal);
	font-size: 0.7rem;
	font-weight: 900;
	border: 1px solid currentColor;
	border-radius: 50%;
}

.product-visual {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	min-width: 0;
}

.laptop {
	position: relative;
	width: min(100%, 748px);
	margin-left: auto;
}

.laptop-lid {
	position: relative;
	padding: 10px 10px 12px;
	background: #10131a;
	border-radius: 20px 20px 10px 10px;
	box-shadow: 0 26px 46px rgba(15, 31, 63, 0.26);
}

.camera-notch {
	position: absolute;
	top: 9px;
	left: 50%;
	z-index: 2;
	width: 82px;
	height: 12px;
	background: #02040a;
	border-radius: 0 0 12px 12px;
	transform: translateX(-50%);
}

.dashboard-screen {
	overflow: hidden;
	display: grid;
	grid-template-columns: 132px 1fr;
	aspect-ratio: 16 / 7.35;
	min-height: 300px;
	background: #ffffff;
	border: 1px solid #d9e2f0;
	border-radius: 12px 12px 7px 7px;
}

.app-sidebar {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 16px 12px;
	background: linear-gradient(180deg, #f9fbff, #ffffff);
	border-right: 1px solid #e5ebf5;
}

.mini-brand {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	font-weight: 800;
}

.mini-brand span {
	width: 18px;
	height: 18px;
	background: radial-gradient(circle at 50% 50%, var(--sinapsis-blue) 0 22%, transparent 23%), conic-gradient(from 45deg, var(--sinapsis-blue), var(--sinapsis-cyan), var(--sinapsis-blue));
	border-radius: 50%;
}

.app-sidebar li,
.profile-pill {
	display: flex;
	align-items: center;
	min-height: 24px;
	padding: 0 9px;
	margin-bottom: 4px;
	color: #64728c;
	font-size: 0.68rem;
	font-weight: 750;
	border-radius: 6px;
}

.app-sidebar li.active {
	color: var(--sinapsis-blue-deep);
	background: #dce8ff;
}

.profile-pill {
	margin-top: auto;
	color: var(--sinapsis-navy);
	background: #ffffff;
	border: 1px solid #e3e9f3;
}

.app-main {
	min-width: 0;
	padding: 22px 24px 20px;
}

.dashboard-top,
.dashboard-grid,
.route-card,
.module-row {
	display: grid;
	gap: 12px;
}

.dashboard-top {
	grid-template-columns: 1fr auto;
	align-items: start;
	margin-bottom: 14px;
}

.dashboard-top p {
	margin: 0 0 2px;
	color: var(--sinapsis-navy);
	font-size: 1.08rem;
	font-weight: 850;
}

.dashboard-top span,
.dash-card span,
.route-card span,
.module-row span {
	color: #65738b;
	font-size: 0.63rem;
	font-weight: 700;
}

.streak-pill {
	display: flex;
	align-items: center;
	gap: 5px;
	min-height: 36px;
	padding: 0 12px;
	background: #ffffff;
	border: 1px solid #e5eaf3;
	border-radius: 7px;
}

.streak-pill::before {
	display: grid;
	width: 22px;
	height: 22px;
	content: "\25CF";
	place-items: center;
	color: #ff8356;
	background: #fff2ea;
	border-radius: 50%;
}

.streak-pill strong,
.streak-pill span {
	color: var(--sinapsis-navy);
	font-size: 0.72rem;
}

.dashboard-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 14px;
}

.dash-card {
	min-height: 82px;
	padding: 12px;
	background: #ffffff;
	border: 1px solid #e2e8f2;
	border-radius: 8px;
}

.dash-card strong {
	display: block;
	color: var(--sinapsis-navy);
	font-size: 0.98rem;
}

.ring-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 6px 0;
}

.small-ring {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	color: var(--sinapsis-blue);
	font-size: 0.72rem;
	font-weight: 900;
	border: 4px solid #d9e6ff;
	border-top-color: var(--sinapsis-blue);
	border-radius: 50%;
}

.meter {
	overflow: hidden;
	height: 5px;
	background: #e8eef7;
	border-radius: 999px;
}

.meter span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--sinapsis-blue), var(--sinapsis-cyan));
	border-radius: inherit;
}

.chart-card svg {
	height: 28px;
	margin-top: 8px;
}

.chart-card path {
	fill: none;
	stroke: var(--sinapsis-cyan);
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.score-card {
	position: relative;
}

.donut {
	position: absolute;
	right: 12px;
	bottom: 12px;
	width: 44px;
	height: 44px;
	background: conic-gradient(var(--sinapsis-blue) 0 68%, var(--sinapsis-cyan) 68% 87%, #e7edf6 87%);
	border-radius: 50%;
}

.donut::after {
	position: absolute;
	inset: 8px;
	content: "";
	background: #ffffff;
	border-radius: 50%;
}

.route-card {
	grid-template-columns: auto 1fr auto;
	align-items: center;
	padding: 12px;
	background: #ffffff;
	border: 1px solid #e2e8f2;
	border-radius: 8px;
}

.route-card strong {
	display: block;
	color: var(--sinapsis-navy);
	font-size: 0.72rem;
}

.route-card .meter {
	width: 230px;
	max-width: 100%;
	margin-top: 8px;
}

.route-icon {
	width: 40px;
	height: 40px;
	background: radial-gradient(circle at 50% 50%, var(--sinapsis-cyan) 0 22%, transparent 24%), linear-gradient(135deg, #061537, #113b8d);
	border-radius: 8px;
}

.route-card button {
	min-height: 28px;
	padding: 0 18px;
	color: #ffffff;
	font-size: 0.66rem;
	font-weight: 850;
	background: var(--sinapsis-blue-deep);
	border: 0;
	border-radius: 6px;
}

.module-row {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin-top: 12px;
}

.module-row div {
	min-height: 46px;
	padding: 9px;
	background: #ffffff;
	border: 1px solid #e2e8f2;
	border-radius: 8px;
}

.module-row strong {
	display: block;
	margin-bottom: 3px;
	color: var(--sinapsis-navy);
	font-size: 0.62rem;
}

.laptop-base {
	width: 108%;
	height: 20px;
	margin: 0 -4%;
	background: linear-gradient(180deg, #2a303a, #0b0e14);
	border-radius: 0 0 50% 50% / 0 0 100% 100%;
	box-shadow: 0 18px 24px rgba(8, 20, 42, 0.2);
}

.feature-strip {
	padding: 16px 0 10px;
	background: #ffffff;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
}

.feature-card {
	display: grid;
	grid-template-rows: auto minmax(2.3em, auto) 1fr;
	align-content: start;
	min-height: 132px;
	padding: 17px 18px;
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid var(--sinapsis-line);
	border-radius: 8px;
	box-shadow: 0 12px 34px rgba(19, 44, 91, 0.06);
}

.feature-icon,
.metric-icon {
	display: grid;
	width: 42px;
	height: 42px;
	margin-bottom: 10px;
	place-items: center;
	color: #ffffff;
	border-radius: 8px;
	box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon svg,
.metric-icon svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.blue {
	background: linear-gradient(135deg, #2d6ee8, #174dbd);
}

.teal {
	background: linear-gradient(135deg, #1e9a78, #106c52);
}

.purple {
	background: linear-gradient(135deg, #8568e6, #6144c2);
}

.cyan {
	background: linear-gradient(135deg, #078fb0, #087ca3);
}

.royal {
	background: linear-gradient(135deg, #3b73e3, #1e4db9);
}

.violet {
	background: linear-gradient(135deg, #9b78eb, #7051cf);
}

.feature-card h2 {
	margin: 0 0 8px;
	color: var(--sinapsis-navy);
	font-size: 0.96rem;
	line-height: 1.2;
	text-wrap: balance;
}

.feature-card p {
	margin: 0;
	color: #2d3850;
	font-size: 0.83rem;
	font-weight: 650;
	line-height: 1.34;
}

.path-section {
	padding: 8px 0 22px;
	background: #ffffff;
}

.path-section h2,
.testimonials-block h2 {
	margin: 0 0 18px;
	color: var(--sinapsis-navy);
	font-size: 1.55rem;
	line-height: 1.2;
	text-align: center;
}

.learning-path {
	position: relative;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
	align-items: start;
}

.learning-path::before {
	position: absolute;
	top: 39px;
	right: 70px;
	left: 70px;
	height: 2px;
	content: "";
	background-image: linear-gradient(90deg, #a7b7d3 50%, transparent 0);
	background-size: 12px 2px;
}

.path-step {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-rows: 78px auto auto;
	justify-items: center;
	min-width: 0;
	text-align: center;
}

.step-icon {
	position: relative;
	display: grid;
	width: 78px;
	height: 78px;
	margin: 0 auto 8px;
	place-items: center;
	color: var(--sinapsis-blue);
	background: #ffffff;
	border: 1px solid currentColor;
	border-radius: 50%;
	box-shadow: 0 0 0 8px #ffffff;
}

.step-icon span {
	position: absolute;
	top: -6px;
	right: -20px;
	color: currentColor;
	font-size: 0.82rem;
	font-weight: 900;
}

.step-icon svg {
	width: 34px;
	height: 34px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.physiology {
	color: var(--sinapsis-teal);
}

.pharma,
.mastery {
	color: var(--sinapsis-purple);
}

.pathology {
	color: var(--sinapsis-pink);
}

.cases {
	color: var(--sinapsis-blue);
}

.path-step h3 {
	width: 100%;
	margin: 8px 0 0;
	color: var(--sinapsis-navy);
	font-size: 0.88rem;
	line-height: 1.18;
}

.path-step p {
	max-width: 170px;
	margin: 4px auto 0;
	color: #344158;
	font-size: 0.74rem;
	font-weight: 650;
	line-height: 1.32;
	text-wrap: balance;
}

.path-finish {
	align-self: start;
	padding-top: 0;
}

.proof-section {
	padding: 8px 0 0;
	background: #ffffff;
}

.metrics-band {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	overflow: hidden;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid var(--sinapsis-line);
	border-radius: 8px;
	box-shadow: 0 12px 34px rgba(19, 44, 91, 0.06);
}

.metric-item {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	min-height: 82px;
	padding: 16px 28px;
	border-right: 1px solid var(--sinapsis-line);
}

.metric-item:last-child {
	border-right: 0;
}

.metric-icon {
	margin: 0;
}

.metric-item strong,
.metric-item span,
.metric-item small {
	display: block;
}

.metric-item strong {
	color: var(--sinapsis-navy);
	font-size: 1.25rem;
	line-height: 1.1;
	text-wrap: balance;
}

.metric-item span {
	color: var(--sinapsis-navy);
	font-size: 0.84rem;
	font-weight: 850;
	line-height: 1.16;
	text-wrap: balance;
}

.metric-item small {
	margin-top: 2px;
	color: #586780;
	font-size: 0.73rem;
	font-weight: 650;
}

.testimonials-block {
	padding: 18px 0 10px;
}

.testimonial-shell {
	display: grid;
	grid-template-columns: 36px 1fr 36px;
	gap: 12px;
	align-items: center;
}

.testimonial-arrow {
	display: grid;
	width: 36px;
	height: 36px;
	padding: 0;
	place-items: center;
	color: var(--sinapsis-blue-deep);
	background: transparent;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus {
	background: #eef4ff;
}

.testimonial-arrow svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.testimonial-track {
	display: grid;
	grid-auto-columns: minmax(280px, 1fr);
	grid-auto-flow: column;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px;
	overflow: auto;
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
}

.testimonial-track::-webkit-scrollbar {
	display: none;
}

.testimonial-card {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 16px;
	min-width: 0;
	min-height: 96px;
	padding: 14px 22px;
	background: #ffffff;
	border: 1px solid var(--sinapsis-line);
	border-radius: 8px;
	scroll-snap-align: start;
}

.avatar {
	width: 64px;
	height: 64px;
	background:
		radial-gradient(circle at 50% 38%, #f4d4c7 0 17%, transparent 18%),
		radial-gradient(circle at 50% 75%, #ffffff 0 24%, transparent 25%),
		linear-gradient(135deg, #233c67, #72b6d5);
	border: 3px solid #f2f5fa;
	border-radius: 50%;
}

.avatar-two {
	background:
		radial-gradient(circle at 50% 36%, #d2a17d 0 17%, transparent 18%),
		radial-gradient(circle at 50% 75%, #ffffff 0 24%, transparent 25%),
		linear-gradient(135deg, #1b2e4e, #4ba17f);
}

.avatar-three {
	background:
		radial-gradient(circle at 50% 36%, #efc6b6 0 17%, transparent 18%),
		radial-gradient(circle at 50% 75%, #ffffff 0 24%, transparent 25%),
		linear-gradient(135deg, #2f3559, #9b78eb);
}

.testimonial-card h3 {
	margin: 0;
	color: var(--sinapsis-navy);
	font-size: 0.84rem;
	line-height: 1.15;
}

.testimonial-card span {
	display: block;
	margin-bottom: 4px;
	color: #56647d;
	font-size: 0.72rem;
	font-weight: 650;
}

.testimonial-card p {
	margin: 0;
	color: #233047;
	font-size: 0.78rem;
	font-weight: 650;
	line-height: 1.34;
}

.stars {
	margin-top: 4px;
	color: #ffad2f;
	font-size: 0.86rem;
}

.cta-band {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 24px;
	align-items: center;
	min-height: 92px;
	padding: 20px 44px;
	color: #ffffff;
	background:
		linear-gradient(135deg, rgba(2, 38, 91, 0.98), rgba(20, 88, 185, 0.94) 48%, rgba(126, 83, 225, 0.94)),
		url("../images/neural-field.svg") center / cover no-repeat;
	border-radius: 8px;
}

.cta-band h2 {
	margin: 0;
	font-size: 1.48rem;
	line-height: 1.15;
}

.cta-band p {
	margin: 5px 0 0;
	font-size: 0.95rem;
	font-weight: 650;
}

.cta-actions {
	display: grid;
	gap: 8px;
	justify-items: center;
}

.cta-actions span {
	font-size: 0.74rem;
	font-weight: 650;
}

.site-footer {
	color: #ffffff;
	background:
		linear-gradient(180deg, rgba(6, 20, 48, 0.98), rgba(2, 14, 35, 1)),
		radial-gradient(circle at 12% 20%, rgba(39, 99, 223, 0.42), transparent 28%);
}

.footer-inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1.15fr;
	gap: 42px;
	padding: 18px 0 24px;
}

.brand-light {
	color: #ffffff;
	font-size: 1.65rem;
}

.brand-light .brand-mark {
	filter: drop-shadow(0 0 12px rgba(101, 210, 255, 0.35));
}

.footer-brand p {
	max-width: 270px;
	margin: 12px 0 0;
	color: #cbd5ea;
	font-size: 0.86rem;
	font-weight: 600;
	line-height: 1.38;
}

.footer-nav,
.social-links {
	display: grid;
	align-content: start;
	gap: 4px;
}

.footer-nav h2,
.social-links h2 {
	margin: 0 0 5px;
	color: #ffffff;
	font-size: 0.86rem;
}

.footer-nav a {
	color: #cbd5ea;
	font-size: 0.82rem;
	font-weight: 650;
}

.footer-nav a:hover,
.footer-nav a:focus {
	color: #ffffff;
}

.social-links > div {
	display: flex;
	gap: 10px;
	margin-top: 12px;
}

.social-links a {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 900;
	background: rgba(57, 116, 223, 0.44);
	border-radius: 50%;
}

.copyright {
	padding: 0 32px 18px;
	margin: 0;
	color: #cbd5ea;
	font-size: 0.78rem;
	text-align: center;
}

@media (max-width: 1180px) {
	.section-inner,
	.header-inner,
	.hero-inner,
	.footer-inner {
		width: min(100% - 40px, 1080px);
	}

	.header-inner {
		gap: 18px;
	}

	.primary-nav ul {
		gap: 24px;
	}

	.hero-inner {
		grid-template-columns: 1fr;
		gap: 30px;
		min-height: auto;
		padding-top: 34px;
	}

	.hero-copy h1,
	.hero-lead {
		max-width: 760px;
	}

	.product-visual {
		justify-content: center;
	}

	.feature-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.learning-path {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		row-gap: 30px;
	}

	.learning-path::before {
		display: none;
	}

	.metrics-band,
	.footer-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.metric-item:nth-child(2n) {
		border-right: 0;
	}

	.metric-item:nth-child(-n + 2) {
		border-bottom: 1px solid var(--sinapsis-line);
	}
}

@media (max-width: 860px) {
	.site-header {
		position: sticky;
	}

	.header-inner {
		grid-template-columns: auto auto;
		min-height: 64px;
	}

	.brand {
		font-size: 1.45rem;
	}

	.brand-mark {
		width: 38px;
		height: 38px;
	}

	.nav-toggle {
		display: block;
		justify-self: end;
	}

	.primary-nav,
	.header-actions {
		display: none;
	}

	.primary-nav.is-open,
	.header-actions.is-open {
		display: flex;
		grid-column: 1 / -1;
	}

	.primary-nav.is-open {
		padding: 10px 0 0;
		border-top: 1px solid var(--sinapsis-line);
	}

	.primary-nav ul {
		flex-direction: column;
		width: 100%;
		gap: 0;
	}

	.primary-nav a {
		min-height: 42px;
	}

	.primary-nav a::after {
		display: none;
	}

	.header-actions.is-open {
		flex-wrap: wrap;
		padding-bottom: 14px;
	}

	.hero-section {
		background:
			linear-gradient(180deg, #ffffff 0%, #ffffff 56%, rgba(239, 246, 255, 0.98) 100%),
			url("../images/neural-field.svg") right bottom / 100% 46% no-repeat;
	}

	.hero-copy h1 {
		font-size: 2.35rem;
	}

	.hero-lead {
		font-size: 0.98rem;
	}

	.trust-list {
		gap: 12px;
	}

	.dashboard-screen {
		grid-template-columns: 92px 1fr;
		min-height: 250px;
	}

	.app-main {
		padding: 16px;
	}

	.dashboard-grid,
	.module-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dashboard-grid .score-card,
	.module-row div:last-child {
		display: none;
	}

	.route-card {
		grid-template-columns: auto 1fr;
	}

	.route-card button {
		display: none;
	}

	.feature-grid,
	.metrics-band,
	.footer-inner,
	.cta-band {
		grid-template-columns: 1fr;
	}

	.metric-item,
	.metric-item:nth-child(2n) {
		border-right: 0;
		border-bottom: 1px solid var(--sinapsis-line);
	}

	.metric-item:last-child {
		border-bottom: 0;
	}

	.testimonial-shell {
		grid-template-columns: 1fr;
	}

	.testimonial-arrow {
		display: none;
	}

	.testimonial-track {
		grid-template-columns: none;
		grid-auto-columns: 86%;
		gap: 14px;
	}

	.cta-band {
		padding: 22px;
		text-align: left;
	}

	.cta-actions {
		justify-items: start;
	}
}

@media (max-width: 560px) {
	.section-inner,
	.header-inner,
	.hero-inner,
	.footer-inner {
		width: min(100% - 28px, 480px);
	}

	.hero-inner {
		padding-top: 26px;
	}

	.hero-copy h1 {
		font-size: 2rem;
		line-height: 1.08;
	}

	.hero-actions {
		display: grid;
	}

	.button-large {
		width: 100%;
	}

	.product-visual {
		margin-top: 6px;
	}

	.laptop {
		width: 112%;
		margin-right: -6%;
		margin-left: -6%;
	}

	.laptop-lid {
		padding: 7px;
		border-radius: 14px 14px 7px 7px;
	}

	.dashboard-screen {
		grid-template-columns: 76px 1fr;
		min-height: 226px;
	}

	.app-sidebar {
		padding: 12px 7px;
	}

	.app-sidebar li {
		padding: 0 5px;
		font-size: 0.55rem;
	}

	.profile-pill,
	.mini-brand strong {
		display: none;
	}

	.app-main {
		padding: 12px;
	}

	.dashboard-top {
		grid-template-columns: 1fr;
	}

	.streak-pill {
		display: none;
	}

	.dashboard-top p {
		font-size: 0.84rem;
	}

	.dash-card {
		min-height: 70px;
		padding: 9px;
	}

	.route-card .meter {
		width: 150px;
	}

	.feature-card {
		min-height: auto;
	}

	.path-section h2,
	.testimonials-block h2 {
		font-size: 1.3rem;
	}

	.learning-path {
		grid-template-columns: 1fr;
	}

	.path-step {
		display: grid;
		grid-template-columns: 66px 1fr;
		grid-template-rows: auto auto;
		gap: 12px;
		align-items: center;
		justify-items: start;
		text-align: left;
	}

	.step-icon {
		width: 58px;
		height: 58px;
		margin: 0;
		box-shadow: none;
	}

	.step-icon svg {
		width: 26px;
		height: 26px;
	}

	.step-icon span {
		top: -4px;
		right: -14px;
	}

	.path-step h3 {
		align-self: end;
		margin-top: 0;
	}

	.path-step p {
		grid-column: 2;
		max-width: none;
		margin-top: -10px;
	}

	.path-finish {
		padding-top: 0;
	}

	.metric-item {
		padding: 15px;
	}

	.testimonial-card {
		grid-template-columns: 56px 1fr;
		padding: 13px;
	}

	.avatar {
		width: 52px;
		height: 52px;
	}

	.cta-band h2 {
		font-size: 1.2rem;
	}
}

/* Sinapsis redesign: public landing, app dashboard, auth screens. */
.public-brand {
	font-size: 1.42rem;
	letter-spacing: 0.22em;
}

.public-brand .brand-mark {
	width: 48px;
	height: 48px;
}

.public-header .header-inner {
	min-height: 82px;
}

.new-hero {
	position: relative;
	overflow: hidden;
	padding: 78px 0 42px;
	background:
		radial-gradient(circle at 69% 36%, rgba(57, 133, 255, 0.14), transparent 28%),
		linear-gradient(180deg, #ffffff 0%, #fafdff 100%);
}

.new-hero::before {
	position: absolute;
	inset: 98px 8% auto auto;
	width: 52%;
	height: 420px;
	content: "";
	background-image: radial-gradient(circle, rgba(39, 99, 223, 0.18) 1px, transparent 1.5px);
	background-size: 18px 18px;
	mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
	pointer-events: none;
}

.new-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(360px, 0.82fr) minmax(420px, 1.18fr);
	gap: 48px;
	align-items: center;
	min-height: 458px;
}

.section-eyebrow {
	margin: 0 0 18px;
	color: #075ff0;
	font-size: 0.88rem;
	font-weight: 850;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.new-hero-copy h1 {
	max-width: 640px;
	margin: 0;
	color: var(--sinapsis-navy);
	font-size: clamp(3rem, 5vw, 4.55rem);
	font-weight: 850;
	line-height: 1.08;
	letter-spacing: 0;
}

.new-hero-lead {
	max-width: 650px;
	margin: 24px 0 0;
	color: #42537a;
	font-size: 1.18rem;
	font-weight: 560;
	line-height: 1.55;
}

.button-arrow {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 0;
}

.hero-note {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 18px 0 0;
	color: #52648c;
	font-size: 0.95rem;
	font-weight: 650;
}

.hero-note span {
	color: #1e63ed;
}

.hero-neuron {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 430px;
}

.hero-neuron img {
	display: block;
	width: min(100%, 900px);
	height: auto;
	margin-left: auto;
	border-radius: 26px;
	object-fit: cover;
}

.neuron-field {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 64% 45%, rgba(39, 99, 223, 0.18), transparent 22%),
		radial-gradient(circle at 77% 66%, rgba(4, 156, 193, 0.14), transparent 18%);
}

.neuron-core {
	position: absolute;
	top: 22%;
	left: 47%;
	display: grid;
	width: 168px;
	height: 168px;
	place-items: center;
	background:
		radial-gradient(circle, #ffffff 0 20%, transparent 21%),
		radial-gradient(circle, #72c9ff 0 31%, #1e74ff 43%, rgba(30, 116, 255, 0.13) 63%, transparent 64%);
	border-radius: 44% 56% 48% 52%;
	box-shadow: 0 18px 70px rgba(30, 116, 255, 0.42);
}

.neuron-core::before,
.neuron-core::after,
.neuron-core span::before,
.neuron-core span::after {
	position: absolute;
	width: 126px;
	height: 18px;
	content: "";
	background: linear-gradient(90deg, rgba(39, 99, 223, 0), rgba(39, 99, 223, 0.78), rgba(39, 99, 223, 0));
	border-radius: 999px;
	filter: blur(0.2px);
	transform-origin: center;
}

.neuron-core::before {
	transform: rotate(28deg) translateX(118px);
}

.neuron-core::after {
	transform: rotate(148deg) translateX(116px);
}

.neuron-core span::before {
	transform: rotate(82deg) translateX(116px);
}

.neuron-core span::after {
	transform: rotate(-38deg) translateX(122px);
}

.axon {
	position: absolute;
	display: block;
	background: linear-gradient(90deg, rgba(39, 99, 223, 0), rgba(60, 153, 255, 0.56), rgba(39, 99, 223, 0));
	border-radius: 999px;
}

.axon-one {
	top: 48%;
	left: 58%;
	width: 380px;
	height: 20px;
	transform: rotate(36deg);
}

.axon-two {
	top: 15%;
	left: 24%;
	width: 320px;
	height: 14px;
	transform: rotate(-14deg);
	opacity: 0.46;
}

.axon-three {
	top: 66%;
	left: 26%;
	width: 430px;
	height: 18px;
	transform: rotate(-24deg);
	opacity: 0.38;
}

.neuron-bg {
	position: absolute;
	display: block;
	width: 132px;
	height: 132px;
	background: radial-gradient(circle, rgba(39, 99, 223, 0.18), rgba(39, 99, 223, 0.04) 54%, transparent 55%);
	border-radius: 50%;
	opacity: 0.72;
}

.bg-one {
	top: 12%;
	left: 18%;
}

.bg-two {
	right: 3%;
	top: 8%;
	width: 170px;
	height: 170px;
}

.bg-three {
	bottom: 6%;
	left: 38%;
	width: 156px;
	height: 156px;
}

.hero-stats {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: center;
	overflow: hidden;
	margin-top: 34px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid #e5ebf6;
	border-radius: 12px;
	box-shadow: 0 22px 60px rgba(20, 48, 96, 0.1);
	backdrop-filter: blur(12px);
}

.hero-stat {
	display: grid;
	grid-template-columns: 46px 1fr;
	gap: 16px;
	align-items: center;
	min-height: 96px;
	padding: 18px 38px;
	border-right: 1px solid #e5ebf6;
}

.hero-stat:last-child {
	border-right: 0;
}

.stat-symbol {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	color: #ffffff;
	border-radius: 10px;
}

.stat-symbol svg,
.benefit-icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.gold {
	background: linear-gradient(135deg, #e7a508, #c27c00);
}

.hero-stat strong,
.hero-stat span {
	display: block;
}

.hero-stat strong {
	color: var(--sinapsis-navy);
	font-size: 1.12rem;
	line-height: 1.1;
}

.hero-stat span {
	margin-top: 4px;
	color: #536487;
	font-size: 0.91rem;
	font-weight: 600;
}

.featured-categories,
.public-benefits,
.plans-preview,
.about-preview {
	background: #ffffff;
}

.featured-categories {
	padding: 44px 0 30px;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.section-heading h2,
.plans-panel h2 {
	margin: 0;
	color: var(--sinapsis-navy);
	font-size: clamp(1.7rem, 3vw, 2.25rem);
	line-height: 1.15;
}

.section-heading a {
	color: #075ff0;
	font-weight: 800;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.category-card {
	display: grid;
	grid-template-columns: 86px 1fr;
	grid-template-rows: auto auto auto;
	column-gap: 18px;
	align-items: center;
	min-height: 150px;
	padding: 18px;
	background: #ffffff;
	border: 1px solid #e7edf7;
	border-radius: 12px;
	box-shadow: 0 16px 42px rgba(22, 45, 84, 0.06);
}

.category-art {
	position: relative;
	grid-row: 1 / 4;
	width: 72px;
	height: 72px;
	border-radius: 16px;
	object-fit: cover;
	box-shadow: 0 10px 24px rgba(16, 40, 78, 0.16);
}

.category-art::before,
.category-art::after {
	position: absolute;
	content: "";
}

.heart {
	background: linear-gradient(135deg, #fff2f2, #ffd9d9);
	border: 1px solid #ffc7c7;
}

.heart::before {
	inset: 19px 18px;
	background: #ff5a5a;
	clip-path: polygon(50% 82%, 12% 42%, 15% 20%, 35% 15%, 50% 28%, 65% 15%, 85% 20%, 88% 42%);
}

.brain {
	background: linear-gradient(135deg, #f7f1ff, #e7dcff);
	border: 1px solid #dac9ff;
}

.brain::before {
	inset: 22px 14px;
	background: radial-gradient(circle at 30% 44%, #9a74f2 0 18%, transparent 19%), radial-gradient(circle at 52% 34%, #8460e7 0 19%, transparent 20%), radial-gradient(circle at 68% 52%, #7a59d8 0 20%, transparent 21%), #9a74f2;
	border-radius: 44% 56% 48% 52%;
}

.microbe {
	background: linear-gradient(135deg, #ecfff2, #d8f6e3);
	border: 1px solid #c4edcf;
}

.microbe::before {
	inset: 20px;
	background: #2ac36e;
	border-radius: 50%;
	box-shadow: 18px 3px 0 -7px #2ac36e, -16px -5px 0 -8px #2ac36e, 2px 19px 0 -8px #2ac36e;
}

.pill {
	background: linear-gradient(135deg, #fff5ed, #ffe3ce);
	border: 1px solid #ffc9a4;
}

.pill::before {
	top: 25px;
	left: 17px;
	width: 40px;
	height: 22px;
	background: linear-gradient(90deg, #ff8d51 0 50%, #ffc39e 50%);
	border-radius: 999px;
	transform: rotate(-42deg);
}

.category-card h3 {
	margin: 0 0 6px;
	color: var(--sinapsis-navy);
	font-size: 1.08rem;
}

.category-card p {
	margin: 0;
	color: #46577c;
	font-size: 0.93rem;
	line-height: 1.42;
}

.category-meter {
	grid-column: 2;
	overflow: hidden;
	height: 4px;
	margin-top: 14px;
	background: #edf1f8;
	border-radius: 999px;
}

.category-meter span {
	display: block;
	height: 100%;
	border-radius: inherit;
}

.rose .category-meter span {
	background: #ffb4b4;
}

.violet-soft .category-meter span {
	background: #c7b5ff;
}

.green-soft .category-meter span {
	background: #9ce3af;
}

.orange-soft .category-meter span {
	background: #ffbc91;
}

.category-card small {
	grid-column: 2;
	margin-top: 4px;
	color: #596989;
	font-size: 0.78rem;
	font-weight: 700;
}

.public-benefits {
	padding: 10px 0 36px;
}

.benefit-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.benefit-item {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 16px;
	align-items: start;
	padding: 20px 18px;
}

.benefit-icon {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	color: #ffffff;
	border-radius: 12px;
}

.benefit-item h2 {
	margin: 0 0 8px;
	color: var(--sinapsis-navy);
	font-size: 1.12rem;
}

.benefit-item p {
	margin: 0;
	color: #4e5d80;
	font-weight: 600;
	line-height: 1.48;
}

.plans-preview {
	padding: 12px 0 42px;
}

.plans-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 34px;
	align-items: center;
	padding: 34px 40px;
	background:
		linear-gradient(135deg, rgba(245, 249, 255, 0.94), rgba(255, 255, 255, 0.94)),
		url("../images/neural-field.svg") right center / 42% auto no-repeat;
	border: 1px solid #e3eaf5;
	border-radius: 14px;
	box-shadow: 0 18px 48px rgba(20, 48, 96, 0.08);
}

.plans-panel p:not(.section-eyebrow) {
	max-width: 760px;
	margin: 14px 0 0;
	color: #526284;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.48;
}

.about-preview {
	padding: 0 0 46px;
}

.about-preview p {
	max-width: 980px;
	margin: 0 auto;
	color: #4e5d80;
	font-size: 1.02rem;
	font-weight: 650;
	line-height: 1.55;
	text-align: center;
}

body.sinapsis-app-body,
body.sinapsis-auth-body {
	margin: 0;
	color: #ecf5ff;
	background: #04101d;
	font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
}

.app-shell,
.auth-shell {
	min-height: 100vh;
	background:
		radial-gradient(circle at 52% -12%, rgba(36, 149, 255, 0.16), transparent 30%),
		radial-gradient(circle at 18% 28%, rgba(0, 215, 209, 0.08), transparent 28%),
		linear-gradient(135deg, #020815 0%, #061a2b 50%, #071322 100%);
}

.app-shell {
	padding: 10px;
}

.app-topbar {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 24px;
	align-items: center;
	min-height: 88px;
	padding: 0 28px;
	background: rgba(5, 20, 34, 0.78);
	border: 1px solid rgba(105, 153, 197, 0.22);
	border-radius: 14px;
	box-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
	backdrop-filter: blur(18px);
}

.app-logo,
.auth-logo,
.auth-panel-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: #ffffff;
	text-decoration: none;
}

.app-logo img,
.auth-logo img,
.auth-panel-brand img {
	width: 58px;
	height: 58px;
	object-fit: contain;
}

.app-logo span,
.auth-logo span,
.auth-panel-brand span {
	font-size: 1.9rem;
	font-weight: 850;
	letter-spacing: 0;
}

.app-nav {
	display: flex;
	justify-content: center;
	gap: 34px;
}

.app-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 88px;
	color: #b7c3d4;
	font-size: 1rem;
	font-weight: 750;
	text-decoration: none;
}

.app-nav a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	content: "";
	background: #3297ff;
	border-radius: 999px 999px 0 0;
	opacity: 0;
}

.app-nav a.is-active,
.app-nav a:hover,
.app-nav a:focus {
	color: #ffffff;
}

.app-nav a.is-active::after {
	opacity: 1;
	box-shadow: 0 0 22px rgba(50, 151, 255, 0.8);
}

.app-nav span {
	color: #48b7ff;
	font-size: 1.35rem;
}

.app-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

.app-actions button {
	width: 40px;
	height: 40px;
	color: #c7d4e4;
	font-size: 1.45rem;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.app-profile {
	display: grid;
	grid-template-columns: 52px auto;
	gap: 10px;
	align-items: center;
	color: #ffffff;
	text-decoration: none;
}

.doctor-avatar {
	width: 52px;
	height: 52px;
	background:
		radial-gradient(circle at 50% 34%, #d7a579 0 16%, transparent 17%),
		radial-gradient(circle at 50% 82%, #ffffff 0 28%, transparent 29%),
		linear-gradient(135deg, #244d83, #edf7ff);
	border: 2px solid rgba(255, 255, 255, 0.66);
	border-radius: 50%;
}

.app-profile strong,
.app-profile small {
	display: block;
}

.app-profile small {
	color: #4bb5ff;
	font-weight: 700;
}

.app-layout {
	display: grid;
	grid-template-columns: 310px minmax(0, 1fr) 300px;
	gap: 26px;
	max-width: 1800px;
	margin: 24px auto 0;
}

.app-left-panel,
.app-right-panel {
	display: grid;
	align-content: start;
	gap: 16px;
}

.app-panel,
.study-card {
	background: linear-gradient(180deg, rgba(10, 31, 50, 0.88), rgba(4, 18, 31, 0.9));
	border: 1px solid rgba(105, 153, 197, 0.24);
	border-radius: 14px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 48px rgba(0, 0, 0, 0.24);
}

.app-panel {
	padding: 18px;
}

.app-panel h2 {
	margin: 0 0 14px;
	color: #6fc4ff;
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.continue-card {
	display: grid;
	grid-template-columns: 64px 1fr auto;
	gap: 14px;
	align-items: center;
	padding: 14px;
	background: rgba(8, 27, 45, 0.8);
	border: 1px solid rgba(105, 153, 197, 0.18);
	border-radius: 10px;
}

.lesson-art,
.study-illustration {
	position: relative;
	border-radius: 14px;
	object-fit: cover;
}

.lesson-art {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, rgba(22, 106, 187, 0.34), rgba(6, 24, 42, 0.96));
}

.lesson-art::before,
.study-illustration::before,
.study-illustration::after {
	position: absolute;
	content: "";
}

.cardiac::before,
.heart-art::before {
	inset: 20%;
	background: #00b8e8;
	clip-path: polygon(50% 82%, 16% 44%, 18% 22%, 38% 16%, 50% 29%, 62% 16%, 82% 22%, 84% 44%);
	filter: drop-shadow(0 0 16px rgba(0, 184, 232, 0.68));
}

.continue-card h3,
.continue-card p {
	margin: 0;
}

.continue-card h3 {
	font-size: 0.95rem;
}

.continue-card p,
.favorite-list small {
	color: #8ca1b8;
	font-size: 0.78rem;
	font-weight: 650;
}

.continue-card strong {
	color: #9badc1;
	font-size: 0.78rem;
}

.app-meter,
.route-list i,
.study-footer i {
	display: block;
	overflow: hidden;
	height: 5px;
	background: rgba(112, 143, 180, 0.22);
	border-radius: 999px;
}

.app-meter span,
.route-list i,
.study-footer i {
	background: linear-gradient(90deg, #3297ff, #25d5de);
}

.app-pill-button,
.new-list-button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	margin-top: 12px;
	color: #cde9ff;
	font-weight: 800;
	text-decoration: none;
	background: rgba(39, 99, 223, 0.2);
	border: 1px solid rgba(63, 150, 255, 0.48);
	border-radius: 999px;
}

.panel-title-row {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.panel-title-row a {
	color: #5ec0ff;
	font-size: 0.78rem;
	font-weight: 800;
	text-decoration: none;
}

.route-list,
.favorite-list,
.summary-list,
.auth-progress-card ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.route-list li,
.favorite-list li {
	display: grid;
	grid-template-columns: 38px 1fr auto;
	gap: 10px;
	align-items: center;
	padding: 10px 0;
	color: #cdd9e7;
}

.route-list span,
.favorite-list span {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	background: rgba(105, 153, 197, 0.16);
	border: 1px solid rgba(105, 153, 197, 0.16);
	border-radius: 8px;
}

.route-list strong,
.favorite-list strong {
	display: block;
	font-size: 0.84rem;
}

.route-list em,
.favorite-list em {
	color: #95a9bd;
	font-size: 0.78rem;
	font-style: normal;
}

.new-list-button {
	border-radius: 8px;
}

.app-heading {
	display: flex;
	gap: 18px;
	align-items: start;
	margin: 28px 8px 34px;
}

.app-heading > span {
	color: #27d5f0;
	font-size: 2.4rem;
	filter: drop-shadow(0 0 18px rgba(39, 213, 240, 0.8));
}

.app-heading h1 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(2rem, 3.4vw, 3rem);
	line-height: 1.08;
}

.app-heading p {
	margin: 12px 0 0;
	color: #a6b5c8;
	font-size: 1.08rem;
}

.app-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.study-card {
	display: grid;
	min-height: 320px;
	padding: 24px 26px;
}

.study-card h2 {
	margin: 0;
	color: #ffffff;
	font-size: 1.35rem;
	text-align: center;
}

.study-illustration {
	display: block;
	width: min(100%, 180px);
	height: 136px;
	margin: 14px auto;
	background: radial-gradient(circle, rgba(57, 151, 255, 0.18), transparent 66%);
	border: 1px solid rgba(105, 153, 197, 0.2);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.anatomy-art::before {
	inset: 14px 42px;
	border: 5px solid #25a8ff;
	border-top-width: 10px;
	border-radius: 44% 44% 12% 12%;
	box-shadow: inset 0 0 18px rgba(37, 168, 255, 0.5), 0 0 24px rgba(37, 168, 255, 0.42);
}

.pharma-art::before {
	top: 42px;
	left: 24px;
	width: 72px;
	height: 34px;
	background: linear-gradient(90deg, #cfe9ff 0 50%, #3fa7ff 50%);
	border-radius: 999px;
	transform: rotate(-18deg);
	box-shadow: 0 0 28px rgba(63, 167, 255, 0.5);
}

.pharma-art::after {
	right: 24px;
	top: 22px;
	width: 44px;
	height: 72px;
	background: linear-gradient(180deg, #3297ff, rgba(50, 151, 255, 0.1));
	border: 2px solid rgba(155, 212, 255, 0.6);
	border-radius: 12px;
}

.pathology-art::before,
.micro-art::before {
	inset: 28px;
	background: radial-gradient(circle, #b985ff 0 20%, #6d4bc4 21% 55%, transparent 56%);
	border-radius: 50%;
	box-shadow: 38px 12px 0 -10px rgba(157, 111, 235, 0.82), -34px 22px 0 -12px rgba(157, 111, 235, 0.78);
}

.micro-art::before {
	background: radial-gradient(circle, #2bd6b6 0 20%, #159a86 21% 55%, transparent 56%);
	box-shadow: 38px 12px 0 -12px rgba(43, 214, 182, 0.7), -34px 22px 0 -13px rgba(43, 214, 182, 0.7);
}

.cases-art::before {
	inset: 16px 34px;
	background: linear-gradient(180deg, #2b99ff, #0d407c);
	border: 2px solid rgba(130, 201, 255, 0.65);
	border-radius: 12px;
	box-shadow: 0 0 28px rgba(43, 153, 255, 0.46);
}

.stetho-art::before {
	inset: 26px 36px;
	border: 5px solid #6dc4ff;
	border-top: 0;
	border-radius: 0 0 50px 50px;
	box-shadow: 0 0 24px rgba(109, 196, 255, 0.4);
}

.emergency-art::before {
	inset: 38px 20px 24px;
	background: linear-gradient(135deg, #2c5a8c, #08192c);
	border: 2px solid rgba(125, 176, 236, 0.52);
	border-radius: 12px;
	box-shadow: 0 0 32px rgba(255, 81, 81, 0.45);
}

.emergency-art::after {
	top: 52px;
	left: 66px;
	width: 22px;
	height: 22px;
	background: #ff5959;
	clip-path: polygon(35% 0, 65% 0, 65% 35%, 100% 35%, 100% 65%, 65% 65%, 65% 100%, 35% 100%, 35% 65%, 0 65%, 0 35%, 35% 35%);
}

.study-card p {
	margin: 0;
	color: #a9b8cb;
	font-size: 0.95rem;
	line-height: 1.45;
}

.study-footer {
	display: grid;
	grid-template-columns: 1fr 1.4fr 38px;
	gap: 12px;
	align-items: center;
	margin-top: 18px;
}

.study-footer span {
	color: #9cd3ff;
	font-size: 0.82rem;
	font-weight: 800;
}

.study-footer a {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	color: #d7efff;
	text-decoration: none;
	background: rgba(96, 143, 195, 0.18);
	border-radius: 50%;
}

.summary-panel {
	padding: 22px;
}

.level-ring,
.auth-ring {
	display: grid;
	width: 152px;
	height: 152px;
	margin: 12px auto 18px;
	place-items: center;
	text-align: center;
	background: conic-gradient(#3d9cff 0 82%, rgba(79, 113, 151, 0.24) 82%);
	border-radius: 50%;
	box-shadow: 0 0 36px rgba(61, 156, 255, 0.34);
}

.level-ring::before,
.auth-ring::before {
	position: absolute;
	content: "";
}

.level-ring span,
.level-ring strong,
.level-ring small,
.auth-ring span,
.auth-ring strong,
.auth-ring small {
	position: relative;
	z-index: 1;
	display: block;
	grid-column: 1;
}

.level-ring span,
.auth-ring span {
	align-self: end;
	color: #b7c5d7;
	font-size: 0.72rem;
}

.level-ring strong,
.auth-ring strong {
	color: #ffffff;
	font-size: 2rem;
	line-height: 1;
}

.level-ring small,
.auth-ring small {
	align-self: start;
	color: #b7c5d7;
	font-size: 0.72rem;
}

.summary-list li {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 12px 0;
	color: #a8b7c8;
	border-bottom: 1px solid rgba(105, 153, 197, 0.14);
}

.summary-list strong {
	color: #ffffff;
}

.bars {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 12px;
	align-items: end;
	height: 110px;
	padding: 12px 8px 0;
}

.bars span {
	display: block;
	background: linear-gradient(180deg, #315b8a, #18304d);
	border-radius: 5px 5px 0 0;
}

.bars .active {
	background: linear-gradient(180deg, #3b9fff, #1d5fbe);
	box-shadow: 0 0 22px rgba(59, 159, 255, 0.58);
}

.bar-labels {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 12px;
	padding: 0 8px;
	color: #91a2b8;
	font-size: 0.78rem;
	text-align: center;
}

.quote-panel {
	min-height: 160px;
	display: grid;
	align-content: center;
}

.quote-panel p {
	margin: 0;
	color: #c7d3e2;
	font-size: 1.08rem;
	line-height: 1.45;
}

.quote-panel span {
	margin-top: 16px;
	color: #7dbef4;
	text-align: right;
}

.auth-shell {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(520px, 0.92fr);
}

.auth-showcase {
	position: relative;
	overflow: hidden;
	padding: 54px 8vw 58px 5vw;
	background:
		linear-gradient(90deg, rgba(3, 8, 23, 0.98) 0%, rgba(3, 8, 23, 0.82) 44%, rgba(3, 8, 23, 0.38) 100%),
		url("../images/generated/auth-neuron-bg.png") center / cover no-repeat,
		radial-gradient(circle at 68% 18%, rgba(34, 150, 255, 0.36), transparent 16%),
		radial-gradient(circle at 78% 26%, rgba(33, 213, 255, 0.22), transparent 10%),
		linear-gradient(135deg, #030817 0%, #06152a 100%);
}

.auth-showcase::after {
	display: none;
}

.auth-logo {
	position: relative;
	z-index: 1;
}

.auth-copy {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin-top: 74px;
}

.auth-copy h1 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(2.5rem, 4vw, 4.1rem);
	line-height: 1.18;
}

.auth-copy h1::first-line {
	color: #ffffff;
}

.auth-copy p {
	max-width: 700px;
	margin: 24px 0 0;
	color: #b7c4d5;
	font-size: 1.2rem;
	line-height: 1.55;
}

.auth-preview-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 280px minmax(320px, 440px);
	gap: 28px;
	margin-top: 58px;
}

.auth-progress-card,
.auth-lesson-card,
.auth-trust-row,
.register-benefits article,
.auth-panel {
	background: linear-gradient(180deg, rgba(15, 36, 58, 0.78), rgba(8, 22, 37, 0.86));
	border: 1px solid rgba(125, 169, 210, 0.25);
	border-radius: 16px;
	box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.auth-progress-card,
.auth-lesson-card {
	padding: 18px;
}

.auth-progress-card h2,
.auth-lesson-card h2 {
	margin: 0;
	color: #ffffff;
	font-size: 1rem;
}

.auth-ring {
	position: relative;
	width: 132px;
	height: 132px;
}

.auth-progress-card li {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	color: #9fb0c5;
	font-size: 0.85rem;
}

.auth-progress-card strong {
	color: #ffffff;
}

.auth-lesson-card {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 16px;
	align-items: center;
}

.auth-lesson-card > div:first-child,
.auth-lesson-card p,
.auth-lesson-card .app-meter,
.auth-lesson-card a {
	grid-column: 2;
}

	.auth-lesson-card .lesson-art {
		grid-row: 1 / 5;
		width: 140px;
		height: 130px;
	}

.auth-lesson-card span {
	color: #7fc7ff;
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.auth-lesson-card p {
	margin: 0;
	color: #bac8d8;
	line-height: 1.45;
}

.auth-lesson-card a {
	display: inline-flex;
	justify-content: center;
	min-height: 38px;
	padding: 0 18px;
	color: #d5edff;
	font-weight: 800;
	text-decoration: none;
	background: rgba(39, 99, 223, 0.2);
	border: 1px solid rgba(63, 150, 255, 0.44);
	border-radius: 999px;
}

.auth-trust-row {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	max-width: 760px;
	margin-top: 28px;
	padding: 18px 22px;
}

.auth-trust-row div {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 12px;
}

.auth-trust-row span {
	grid-row: 1 / 3;
	color: #82bfff;
	font-size: 1.45rem;
}

.auth-trust-row strong,
.auth-trust-row small {
	display: block;
}

.auth-trust-row small {
	color: #96a7ba;
}

.auth-panel-wrap {
	display: grid;
	align-content: center;
	justify-items: center;
	padding: 44px;
	background: linear-gradient(135deg, rgba(8, 25, 42, 0.94), rgba(5, 16, 28, 0.98));
}

.auth-panel {
	width: min(100%, 560px);
	padding: 46px;
}

.auth-panel-brand {
	justify-content: center;
	margin-bottom: 34px;
}

.auth-panel h2 {
	margin: 0;
	color: #ffffff;
	font-size: 2rem;
	text-align: center;
}

.auth-panel > p {
	margin: 12px 0 28px;
	color: #b2bfce;
	text-align: center;
}

.auth-alert {
	margin-bottom: 18px;
	padding: 12px 14px;
	color: #ffd9d9;
	font-size: 0.88rem;
	font-weight: 700;
	background: rgba(255, 82, 82, 0.12);
	border: 1px solid rgba(255, 105, 105, 0.26);
	border-radius: 10px;
}

.auth-alert.success {
	color: #d7fff0;
	background: rgba(22, 134, 101, 0.16);
	border-color: rgba(40, 194, 145, 0.28);
}

.auth-form {
	display: grid;
	gap: 18px;
}

.auth-form label {
	display: grid;
	gap: 8px;
	color: #ffffff;
	font-size: 0.88rem;
	font-weight: 650;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
	width: 100%;
	min-height: 48px;
	padding: 0 16px;
	color: #ffffff;
	background: rgba(8, 26, 43, 0.86);
	border: 1px solid rgba(125, 169, 210, 0.22);
	border-radius: 10px;
	outline: none;
}

.auth-form input:focus {
	border-color: #3297ff;
	box-shadow: 0 0 0 3px rgba(50, 151, 255, 0.2);
}

.auth-form input::placeholder {
	color: #718399;
}

.auth-form-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.check-row {
	display: inline-flex !important;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 8px !important;
}

.check-row input {
	width: 18px;
	height: 18px;
}

.auth-form-row a,
.auth-switch a {
	color: #55b9ff;
	font-weight: 800;
	text-decoration: none;
}

.auth-submit,
.google-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 850;
	background: linear-gradient(135deg, #38a3ff, #1f7df1);
	border: 0;
	border-radius: 10px;
	box-shadow: 0 16px 34px rgba(31, 125, 241, 0.25);
	cursor: pointer;
}

.auth-separator {
	position: relative;
	display: grid;
	margin: 24px 0;
	place-items: center;
	color: #c0ccda;
}

.auth-separator::before {
	position: absolute;
	right: 0;
	left: 0;
	height: 1px;
	content: "";
	background: rgba(125, 169, 210, 0.28);
}

.auth-separator span {
	position: relative;
	z-index: 1;
	display: grid;
	width: 26px;
	height: 26px;
	place-items: center;
	background: #0b2035;
	border: 1px solid rgba(125, 169, 210, 0.28);
	border-radius: 50%;
}

.google-button {
	gap: 12px;
	color: #ffffff;
	text-decoration: none;
	background: rgba(8, 26, 43, 0.86);
	border: 1px solid rgba(63, 150, 255, 0.5);
	box-shadow: none;
}

.google-button span {
	color: #36a4ff;
	font-size: 1.2rem;
}

.auth-switch {
	margin-top: 24px !important;
}

.auth-footnote {
	margin: 18px 0 0;
	color: #a8b5c8;
	font-weight: 650;
	text-align: center;
}

.auth-footnote.muted {
	margin-top: 8px;
	color: #7f8da1;
	font-weight: 500;
}

.register-benefits {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 58px;
}

.register-benefits article {
	padding: 22px;
}

.register-benefits span {
	display: inline-flex;
	margin-bottom: 20px;
	color: #61c5ff;
	font-weight: 900;
}

.register-benefits h2 {
	margin: 0 0 10px;
	color: #ffffff;
	font-size: 1.15rem;
}

.register-benefits p {
	margin: 0;
	color: #aebccd;
	line-height: 1.46;
}

@media (max-width: 1280px) {
	.new-hero-inner,
	.auth-shell {
		grid-template-columns: 1fr;
	}

	.hero-neuron {
		min-height: 320px;
	}

	.hero-stats,
	.category-grid,
	.app-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero-stat:nth-child(2n),
	.hero-stat:last-child {
		border-right: 0;
	}

	.hero-stat:nth-child(-n + 2) {
		border-bottom: 1px solid #e5ebf6;
	}

	.app-layout {
		grid-template-columns: 280px minmax(0, 1fr);
	}

	.app-right-panel {
		grid-column: 1 / -1;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.auth-preview-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 980px) {
	.public-brand {
		letter-spacing: 0.08em;
	}

	.hero-stats,
	.category-grid,
	.benefit-grid,
	.plans-panel,
	.app-layout,
	.app-right-panel,
	.register-benefits {
		grid-template-columns: 1fr;
	}

	.hero-stat,
	.hero-stat:nth-child(2n) {
		border-right: 0;
		border-bottom: 1px solid #e5ebf6;
	}

	.hero-stat:last-child {
		border-bottom: 0;
	}

	.app-topbar {
		grid-template-columns: 1fr;
		padding: 18px;
	}

	.app-nav {
		justify-content: start;
		overflow-x: auto;
	}

	.app-nav a {
		min-height: 44px;
	}

	.app-actions {
		justify-content: space-between;
	}

	.auth-showcase,
	.auth-panel-wrap {
		padding: 34px 20px;
	}
}

@media (max-width: 620px) {
	.new-hero {
		padding-top: 42px;
	}

	.new-hero-inner {
		display: block;
	}

	.hero-neuron {
		display: none;
	}

	.new-hero-copy h1 {
		font-size: 2.75rem;
	}

	.section-heading {
		display: grid;
		align-items: start;
	}

	.category-card {
		grid-template-columns: 70px 1fr;
		padding: 14px;
	}

	.category-art {
		width: 58px;
		height: 58px;
	}

	.plans-panel,
	.auth-panel {
		padding: 24px;
	}

	.app-logo span,
	.auth-logo span,
	.auth-panel-brand span {
		font-size: 1.55rem;
	}

	.app-category-grid,
	.study-footer,
	.auth-trust-row {
		grid-template-columns: 1fr;
	}

	.auth-lesson-card {
		grid-template-columns: 1fr;
	}

	.auth-lesson-card .lesson-art,
	.auth-lesson-card > div:first-child,
	.auth-lesson-card p,
	.auth-lesson-card .app-meter,
	.auth-lesson-card a {
		grid-column: 1;
	}

	.auth-lesson-card .lesson-art {
		grid-row: auto;
		width: 100%;
	}
}
