/* SpeakUp course landings — visual language of the homepage. */

body.su-landing-page {
	overflow-x: hidden;
	background: #fff;
}

body.su-landing-page .site-main,
body.su-landing-page #content,
body.su-landing-page .page-content,
body.su-landing-page article.page,
body.su-landing-page .entry-content,
body.su-landing-page .hentry {
	max-width: none !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	background: transparent !important;
}

body.su-landing-page .entry-title,
body.su-landing-page .page-header,
body.su-landing-page h1.entry-title {
	display: none !important;
}

.su-curso,
.su-curso * {
	box-sizing: border-box;
}

.su-curso {
	--su-green: #4ed092;
	--su-green-2: #62e1a4;
	--su-green-dark: #2f9e6d;
	--su-purple: #471d8f;
	--su-purple-2: #7373ff;
	--su-dark: #111111;
	--su-muted: #5c5c5c;
	--su-radius: 22px;
	font-family: Poppins, "Open Sans", sans-serif;
	color: #222;
	line-height: 1.65;
	margin: 0;
}

.su-curso h1,
.su-curso h2,
.su-curso h3 {
	font-family: Oswald, Impact, sans-serif;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.12;
	margin: 0 0 0.55em;
}

.su-curso a {
	color: inherit;
}

.su-curso-wrap {
	width: min(1160px, calc(100% - 40px));
	margin: 0 auto;
}

.su-hero {
	position: relative;
	min-height: min(86vh, 760px);
	display: flex;
	align-items: flex-end;
	color: #fff;
	background: #111 center / cover no-repeat;
	isolation: isolate;
}

.su-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(180deg, rgba(17, 17, 17, 0.18) 0%, rgba(17, 17, 17, 0.35) 38%, rgba(17, 17, 17, 0.88) 100%),
		linear-gradient(90deg, rgba(17, 17, 17, 0.55) 0%, rgba(71, 29, 143, 0.12) 100%);
}

.su-hero .su-curso-wrap {
	position: relative;
	z-index: 1;
	padding: 7rem 0 3.4rem;
}

.su-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: var(--su-green);
	color: #111;
	font-size: 0.74rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.42rem 0.95rem;
	border-radius: 999px;
	margin-bottom: 1.15rem;
}

.su-badge-soon {
	background: #fbbf24;
	color: #111;
}

.su-soon-note {
	max-width: 36rem;
	margin: -0.6rem 0 1.4rem;
	padding: 0.85rem 1rem;
	border-radius: 14px;
	background: rgba(251, 191, 36, 0.18);
	border: 1px solid rgba(251, 191, 36, 0.45);
	color: #fff;
	font-size: 0.95rem;
}

.su-hub-card.is-soon .su-badge-soon {
	background: #fbbf24;
	color: #111;
}

.su-hero h1 {
	font-size: clamp(2.6rem, 7vw, 5.2rem);
	max-width: 14ch;
	color: #fff;
	text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.su-hero .su-lead {
	font-size: 1.12rem;
	max-width: 36rem;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 1.7rem;
}

.su-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
}

.su-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: 999px;
	padding: 0.95rem 1.7rem;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none !important;
	border: 2px solid transparent;
	transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.su-btn svg {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

.su-btn:hover {
	transform: translateY(-2px);
}

.su-btn-primary {
	background: var(--su-green);
	color: #111 !important;
	box-shadow: 0 10px 30px rgba(78, 208, 146, 0.28);
}

.su-btn-primary:hover {
	background: var(--su-green-2);
}

.su-btn-ghost {
	background: rgba(255, 255, 255, 0.08);
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.42);
	backdrop-filter: blur(8px);
}

.su-btn-ghost:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.16);
}

.su-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 2rem;
}

.su-stat {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 0.7rem 1rem;
	min-width: 7.5rem;
}

.su-stat b {
	display: block;
	font-family: Oswald, sans-serif;
	font-size: 1.25rem;
	letter-spacing: 0.04em;
}

.su-stat span {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.75);
}

.su-section {
	padding: 5rem 0;
}

.su-section-soft {
	background: #f5fbf8;
}

.su-section-dark {
	background: var(--su-dark);
	color: #fff;
}

.su-kicker {
	color: var(--su-green-dark);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 0.45rem;
}

.su-section-dark .su-kicker {
	color: var(--su-green-2);
}

.su-section h2,
.su-section-dark h2 {
	font-size: clamp(1.9rem, 3.4vw, 2.8rem);
	color: #111;
	max-width: 18ch;
}

.su-section-dark h2 {
	color: #fff;
}

.su-split {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 3.2rem;
	align-items: center;
}

.su-split p {
	color: var(--su-muted);
	font-size: 1.05rem;
	margin: 0 0 1.2rem;
}

.su-photo {
	position: relative;
}

.su-photo img {
	width: 100%;
	height: 460px;
	object-fit: cover;
	border-radius: 28px;
	display: block;
	box-shadow: 0 24px 60px rgba(17, 17, 17, 0.18);
}

.su-photo::after {
	content: "";
	position: absolute;
	inset: 18px -18px -18px 18px;
	border: 3px solid var(--su-green);
	border-radius: 28px;
	z-index: -1;
}

.su-list {
	list-style: none;
	padding: 0;
	margin: 1.2rem 0 0;
}

.su-list li {
	position: relative;
	padding: 0.7rem 0 0.7rem 2.4rem;
	border-bottom: 1px solid #ececec;
	color: #333;
	font-size: 0.98rem;
}

.su-list li:last-child {
	border-bottom: 0;
}

.su-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.85rem;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--su-green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23111' stroke-width='2' d='M3.5 8.2l3 3 6-6'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.su-grid-4,
.su-grid-3 {
	display: grid;
	gap: 1.2rem;
	margin-top: 2rem;
}

.su-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.su-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.su-card {
	background: #fff;
	border-radius: var(--su-radius);
	padding: 1.55rem 1.4rem 1.6rem;
	box-shadow: 0 16px 40px rgba(17, 17, 17, 0.06);
	border: 1px solid rgba(17, 17, 17, 0.04);
	height: 100%;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.su-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 50px rgba(17, 17, 17, 0.1);
}

.su-card h3 {
	font-size: 1.28rem;
	margin-bottom: 0.4rem;
}

.su-card p {
	margin: 0;
	color: var(--su-muted);
	font-size: 0.95rem;
}

.su-icon {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	background: linear-gradient(160deg, #e8fbf2, #d4f5e5);
	color: #111;
	margin-bottom: 1rem;
}

.su-icon svg {
	width: 26px;
	height: 26px;
}

.su-step {
	position: relative;
	overflow: hidden;
}

.su-step-num {
	font-family: Oswald, sans-serif;
	font-size: 4.2rem;
	line-height: 0.8;
	color: var(--su-green);
	margin-bottom: 0.9rem;
	letter-spacing: -0.04em;
}

.su-faq details {
	background: #fff;
	border-radius: 18px;
	padding: 1.05rem 1.25rem;
	margin-bottom: 0.75rem;
	box-shadow: 0 10px 28px rgba(17, 17, 17, 0.04);
}

.su-faq summary {
	cursor: pointer;
	font-weight: 600;
	font-family: Oswald, sans-serif;
	font-size: 1.2rem;
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
}

.su-faq summary::-webkit-details-marker {
	display: none;
}

.su-faq summary::after {
	content: "+";
	font-size: 1.5rem;
	color: var(--su-green-dark);
	line-height: 1;
}

.su-faq details[open] summary::after {
	content: "–";
}

.su-faq details p {
	margin: 0.75rem 0 0.2rem;
	color: var(--su-muted);
}

.su-teacher {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 1.4rem;
	align-items: center;
	background: #fff;
	border-radius: 28px;
	padding: 1.3rem 1.5rem;
	box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
	margin-top: 2.2rem;
}

.su-teacher img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 50%;
	border: 4px solid var(--su-green);
}

.su-teacher p {
	margin: 0 0 0.35rem;
	font-size: 1.02rem;
	color: #333;
}

.su-teacher b {
	font-family: Oswald, sans-serif;
	letter-spacing: 0.04em;
}

.su-band {
	position: relative;
	color: #fff;
	padding: 5.2rem 0;
	background: #111 center / cover no-repeat;
	isolation: isolate;
}

.su-band::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(100deg, rgba(17, 17, 17, 0.88) 0%, rgba(71, 29, 143, 0.55) 100%);
}

.su-band .su-curso-wrap {
	position: relative;
	z-index: 1;
}

.su-band h2 {
	color: #fff;
	max-width: 16ch;
	font-size: clamp(2rem, 4vw, 3.2rem);
}

.su-band p {
	color: rgba(255, 255, 255, 0.84);
	max-width: 34rem;
	margin: 0 0 1.6rem;
	font-size: 1.05rem;
}

.su-hub {
	padding: 0 0 4.5rem;
}

.su-hub .su-hero {
	min-height: 58vh;
	margin-bottom: 0;
}

.su-hub .su-hero h1 {
	max-width: 16ch;
}

.su-hub-panel {
	padding: 3.5rem 0 0;
}

.su-hub-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.4rem;
}

.su-hub-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 460px;
	border-radius: 28px;
	overflow: hidden;
	text-decoration: none !important;
	color: #fff !important;
	background: #111 center / cover no-repeat;
	box-shadow: 0 22px 50px rgba(17, 17, 17, 0.16);
	transition: transform 0.2s ease;
}

.su-hub-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(17, 17, 17, 0.05) 20%, rgba(17, 17, 17, 0.88) 100%);
}

.su-hub-card:hover {
	transform: translateY(-6px);
}

.su-hub-card > * {
	position: relative;
	z-index: 1;
}

.su-hub-card .su-badge {
	align-self: flex-start;
	margin: 1.3rem 1.3rem 0;
}

.su-hub-card-body {
	padding: 1.5rem 1.4rem 1.5rem;
}

.su-hub-card h2 {
	color: #fff;
	font-size: 2rem;
	margin-bottom: 0.4rem;
}

.su-hub-card p {
	color: rgba(255, 255, 255, 0.84);
	margin: 0 0 1rem;
}

.su-hub-card span {
	color: var(--su-green-2);
	font-weight: 700;
	font-size: 0.95rem;
}

@media (max-width: 980px) {
	.su-split,
	.su-grid-4,
	.su-grid-3,
	.su-hub-grid {
		grid-template-columns: 1fr;
	}

	.su-photo img {
		height: 320px;
	}

	.su-hub-card {
		min-height: 380px;
	}
}

@media (max-width: 640px) {
	.su-hero {
		min-height: 78vh;
		align-items: flex-end;
	}

	.su-hero .su-curso-wrap {
		padding-top: 5.5rem;
	}

	.su-section {
		padding: 3.4rem 0;
	}

	.su-btn {
		width: 100%;
	}

	.su-teacher {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.su-teacher img {
		margin: 0 auto;
	}

	.su-photo::after {
		display: none;
	}
}
