/* start2impact — Slide system
   Brand deck foundations. Built on the global tokens (styles.css) + social theme
   grounds. Headlines: Inter Tight 900 uppercase. Captions / stickers: More Sugar.
   Body: Inter. Grounds: theme core→edge radial + soft-light waves texture.
   Canvas is a fixed 1280×720 frame; the deck and the @dsCard host both scale it. */

/* ---- CANVAS ---- */
.slide {
	position: relative;
	width: 1280px;
	height: 720px;
	overflow: hidden;
	box-sizing: border-box;
	padding: 76px 92px;
	display: flex;
	flex-direction: column;
	font-family: var(--font-paragraph);
	color: var(--grey-900);
	background: var(--grey-100);
	isolation: isolate;
}
.slide * { box-sizing: border-box; }

/* ---- GROUNDS ---- */
.slide--viola  { background: radial-gradient(120% 120% at 50% 38%, var(--theme-viola-core) 0%, var(--theme-viola-base) 72%); color: #fff; }
.slide--verde  { background: radial-gradient(120% 120% at 50% 38%, var(--theme-verde-core) 0%, var(--theme-verde-base) 72%); color: var(--grey-900); }
.slide--iris   { background: radial-gradient(125% 125% at 50% 30%, var(--theme-iris-core) 0%, var(--theme-iris-base) 78%); color: #fff; }
.slide--navy   { background: var(--purple-800); color: #fff; }
.slide--ink    { background: #16123A; color: #fff; }
.slide--midnight { background: #100A3D; color: #fff; }
.slide--paper  { background: var(--grey-200); color: var(--grey-900); }
.slide--light  { background: var(--grey-100); color: var(--grey-900); }

/* waves texture — soft-light over a theme ground */
.slide--waves::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--texture-onde) center/cover no-repeat;
	mix-blend-mode: soft-light;
	opacity: 0.9;
	pointer-events: none;
	z-index: 0;
}
/* stronger, more pronounced waves (cover) */
.slide--waves.slide--waves-strong::before {
	opacity: 1;
}
.slide--waves.slide--waves-strong::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--texture-onde) center/cover no-repeat;
	mix-blend-mode: multiply;
	opacity: 0.28;
	pointer-events: none;
	z-index: 0;
}
/* violet-preserving relief texture (cover) — multiply only, no cold soft-light wash */
.slide--waves-violet::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--texture-onde) center/cover no-repeat;
	mix-blend-mode: multiply;
	opacity: 0.14;
	pointer-events: none;
	z-index: 0;
}
/* white wave vector overlay — keeps the ground hue, adds subtle relief (Figma: white vector @ low opacity).
   Rendered into a 2× box scaled to 0.5 so the texture rasterizes at double
   resolution — stays crisp (no grain / stretch) when the deck scales the
   1280×720 canvas up past 1× on large screens. */
.slide--waves-white::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 200%;
	height: 200%;
	transform: scale(0.5);
	transform-origin: top left;
	background: var(--texture-onde-bianca) center/cover no-repeat;
	opacity: 0.75;
	pointer-events: none;
	z-index: 0;
}
/* paper texture — multiply over a light ground */
.slide--carta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--texture-carta) center/cover no-repeat;
	mix-blend-mode: multiply;
	opacity: 0.5;
	pointer-events: none;
	z-index: 0;
}
.slide > * { position: relative; z-index: 1; }

/* ---- LOGO ---- */
.s-logo { height: 30px; width: auto; display: block; }
.s-logo--corner { position: absolute; top: 40px; left: 92px; z-index: 2; }
.s-logo--tr { position: absolute; top: 40px; right: 92px; z-index: 2; }

/* ---- STICKER / EYEBROW (More Sugar capsule label) ---- */
.s-sticker {
	display: inline-block;
	font-family: var(--font-display);
	font-weight: 300;
	font-size: 26px;
	line-height: 1;
	padding: 12px 22px 14px;
	border-radius: 14px;
	white-space: nowrap;
	transform: rotate(-2.5deg);
	box-shadow: var(--shadow-card, 0 8px 24px rgba(20,16,50,.18));
}
.s-sticker--mint  { background: var(--theme-verde-core); color: var(--grey-900); }
.s-sticker--navy  { background: var(--purple-800); color: #fff; transform: rotate(2deg); }
.s-sticker--white { background: #fff; color: var(--grey-900); }
.s-sticker--right { transform: rotate(2deg); }

/* ---- DISPLAY HEADLINE (Inter Tight 900 uppercase) ---- */
.s-display {
	font-family: var(--font-tight);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 0.96;
	letter-spacing: -0.01em;
	margin: 0;
	text-wrap: balance;
}
.s-display--xxl { font-size: 116px; }
.s-display--xl  { font-size: 92px; }
.s-display--lg  { font-size: 68px; }
.s-display--md  { font-size: 52px; }

/* headline highlight boxes (cover treatment) */
.s-boxline {
	display: inline-block;
	white-space: nowrap;
	font-family: var(--font-tight);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: -0.01em;
	padding: 10px 22px 16px;
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(20,16,50,.22);
}
.s-boxline--white { background: #fff; color: var(--grey-900); }
.s-boxline--navy  { background: var(--purple-800); color: #fff; }
.s-boxline--mint  { background: var(--theme-verde-core); color: var(--grey-900); }

/* ---- KICKER (small uppercase Inter label) ---- */
.s-kicker {
	font-family: var(--font-paragraph);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 16px;
	opacity: 0.7;
	margin: 0;
}

/* ---- BODY / LEAD ---- */
.s-lead { font-size: 24px; line-height: 1.45; max-width: 60ch; margin: 0; opacity: 0.92; }
.s-body { font-size: 19px; line-height: 1.5; margin: 0; }

/* ---- BULLET LIST (mint check) ---- */
.s-bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.s-bullets li {
	display: grid;
	grid-template-columns: 36px 1fr;
	align-items: start;
	gap: 18px;
	font-size: 23px;
	line-height: 1.35;
}
.s-bullets .s-tick {
	width: 36px; height: 36px; border-radius: 50%;
	background: var(--mint-500);
	display: inline-flex; align-items: center; justify-content: center;
	flex: none;
	margin-top: 2px;
}
.s-bullets .s-tick svg { width: 18px; height: 18px; fill: #fff; display: block; }
.s-bullets strong { font-weight: 700; }

/* ---- INLINE ICONS ---- */
.s-btn svg { width: 16px; height: 16px; fill: currentColor; display: block; }
svg.s-quotemark { display: block; fill: var(--theme-verde-core); }

/* ---- NUMBERED STEP ---- */
.s-stepnum {
	font-family: var(--font-tight);
	font-weight: 900;
	font-size: 40px;
	line-height: 1;
	color: var(--mint-500);
}

/* ---- COMPARISON COLUMNS ---- */
.s-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; flex: 1; min-height: 0; }
.s-col {
	border-radius: var(--radius-lg, 24px);
	padding: 36px 34px;
	display: flex; flex-direction: column; gap: 18px;
	background: rgba(255,255,255,.10);
}
.s-col--light { background: #fff; color: var(--grey-900); box-shadow: 0 14px 40px rgba(20,16,50,.14); }
.s-col__head { font-family: var(--font-tight); font-weight: 900; text-transform: uppercase; font-size: 30px; line-height: 1; }

/* ---- STATS ---- */
.s-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; flex: 1; align-content: center; }
.s-stat__num { font-family: var(--font-tight); font-weight: 900; font-size: 92px; line-height: 0.9; letter-spacing: -0.02em; }
.s-stat__label { font-size: 19px; line-height: 1.35; margin-top: 12px; opacity: 0.9; max-width: 22ch; }
.s-mint { color: var(--theme-verde-core); }
.s-mintdeep { color: var(--mint-300); }

/* ---- QUOTE ---- */
.s-quote { font-family: var(--font-tight); font-weight: 800; font-size: 52px; line-height: 1.12; letter-spacing: -0.01em; text-wrap: balance; margin: 0; }
.s-quotemark { width: 78px; height: auto; opacity: 0.9; }
.s-attrib { display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.s-attrib img.s-ava { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.s-attrib__name { font-weight: 700; font-size: 19px; }
.s-attrib__role { font-size: 16px; opacity: 0.8; }

/* ---- CUTOUT MASTER ---- */
.s-master { position: absolute; bottom: 0; right: 0; height: 96%; width: auto; z-index: 1; pointer-events: none; }
.s-master--full { position: absolute; inset: 0; margin: auto; height: 88%; width: auto; }

/* ---- CTA BUTTON (static) ---- */
.s-btn {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--font-paragraph); font-weight: 800; text-transform: uppercase;
	letter-spacing: 0.04em; font-size: 17px;
	padding: 18px 30px; border-radius: 999px;
	background: var(--mint-500); color: var(--grey-900);
	box-shadow: 0 12px 30px rgba(4,181,133,.4);
}
.s-btn img { width: 18px; height: 18px; }

/* ---- AGENDA / INDEX ---- */
.s-agenda { display: flex; flex-direction: column; flex: none; gap: 0; }
.s-agenda__row {
	display: flex; align-items: center; gap: 32px;
	padding: 20px 4px; border-bottom: 1px solid rgba(255,255,255,.42);
}
.s-agenda__num { font-family: var(--font-tight); font-weight: 900; font-size: 30px; line-height: 1; }
.s-agenda__title { font-family: var(--font-tight); font-weight: 600; font-size: 28px; text-transform: uppercase; line-height: 1; letter-spacing: -0.01em; white-space: nowrap; }

/* ---- SECTION DIVIDER (midnight, optional full-bleed media) ---- */
.slide--section { padding: 0; flex-direction: row; background: var(--slide-midnight, #100A3D); color: #fff; }
.s-section__body {
	flex: 1 1 0; min-width: 0;
	padding: 64px 80px;
	display: flex; flex-direction: column; justify-content: center;
}
.s-section__media {
	flex: none; width: 46%; position: relative; overflow: hidden;
	background: var(--theme-verde-core);
}
.s-section__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.s-section__media--cutout > img {
	object-fit: contain; object-position: bottom center;
	top: auto; bottom: 0; height: 96%;
}
.s-section__tag {
	align-self: flex-start; margin-bottom: 32px;
	background: var(--theme-verde-core); color: var(--midnight);
	font-family: var(--font-display); font-size: 26px; line-height: 1;
	padding: 12px 18px 8px; border-radius: 8px; transform: rotate(-1.5deg);
}
.s-section__title {
	font-family: var(--font-tight); font-weight: 700; text-transform: uppercase;
	font-size: 60px; line-height: 1.0; letter-spacing: -0.01em; margin: 0; color: #fff;
}
.s-section__lead {
	font-size: 18px; line-height: 1.5; margin: 24px 0 0; color: #fff;
	opacity: 0.94;
}

/* ---- CONTENT PAGE (light, text / checklist) ---- */
/* justify-content:center so the copy fills the slide vertically (respecting
   the padding) instead of bunching at the top with an empty lower half. */
.slide--content { background: #FAFAF7; color: var(--grey-900); padding: 72px 80px 142px; justify-content: center; }
.s-tag {
	align-self: flex-start;
	background: var(--theme-verde-core); color: var(--midnight);
	font-family: var(--font-display); font-size: 26px; line-height: 1;
	padding: 12px 16px 9px; border-radius: 8px; transform: rotate(-1.5deg);
}
.s-content__title {
	font-family: var(--font-tight); font-weight: 800; text-transform: uppercase;
	font-size: 60px; line-height: 1; letter-spacing: -0.01em; margin: 30px 0 0; color: var(--midnight);
}
.s-content__intro { font-size: 22px; line-height: 1.5; margin: 32px 0 0; color: #2C2A45; }
.s-content__text { margin: 32px 0 0; display: flex; flex-direction: column; gap: 22px; }
.s-content__text p { font-size: 22px; line-height: 1.5; margin: 0; color: #2C2A45; }
.s-checklist { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.s-checklist li { display: flex; align-items: flex-start; gap: 16px; font-size: 22px; line-height: 1.3; color: #2C2A45; }
.s-check {
	flex: none; width: 26px; height: 26px; border-radius: 50%;
	background: var(--accent-mid); display: grid; place-items: center; margin-top: 1px;
}
.s-check svg { width: 13px; height: 13px; fill: #fff; }

/* ---- FOOTER / PAGE NUMBER ---- */
.s-foot {
	position: absolute; left: 92px; right: 92px; bottom: 40px;
	display: flex; align-items: center; justify-content: space-between;
	font-size: 13px; font-weight: 600; opacity: 0.6; z-index: 2;
}
.s-pagenum { font-family: var(--font-tight); font-weight: 800; }

/* ---- HELPERS ---- */
.s-spacer { flex: 1; }
.s-stack { display: flex; flex-direction: column; gap: 22px; }
.s-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.s-mt-auto { margin-top: auto; }
.s-w-half { max-width: 56%; }
.s-w-60 { max-width: 60%; }
