/* ============================================================================
   Celebritik redesign stylesheet (docs/redesign_celebritik_plan.md R1).
   Fresh filename on purpose: Cloudflare edge-caches CSS — never reuse
   theme.css/custom.css names, and purge this URL after every re-upload
   during the /v2 preview phase.

   Design language (R0: evolutionary): Celebritik pink #FF004E + deep navy,
   Nunito, generous radii, soft shadows. Zero JS dependencies — the FAQ uses
   native <details>, the nav burger is 10 lines of inline JS in ct_scripts().

   Sections:
     1. Tokens + reset          6. Pricing cards (band)
     2. Typography              7. Features / steps / why / cross-sell
     3. Topbar + nav            8. FAQ + contact
     4. Buttons + alerts        9. Footer
     5. Hero                   10. Legal / done / 404 + responsive
                               11. Funnel (order.php — plan R2)
   ========================================================================== */

/* ── 1. Tokens + reset ─────────────────────────────────────────────────── */
:root {
	--ct-pink:       #FF004E; /* small accents + hover only — large fills use --ct-pink-deep (calmer, 4.5:1 AA) */
	--ct-pink-deep:  #E60046;
	--ct-pink-dark:  #D60042;
	--ct-pink-soft:  #FFE9F0;
	--ct-pink-ghost: #FFF5F8;
	--ct-navy:       #16204A;
	--ct-navy-deep:  #101838;
	--ct-ink:        #1D2A4D;
	--ct-body:       #4E586F;
	--ct-muted:      #8791A8;
	--ct-line:       #E7EAF3;
	--ct-bg-soft:    #F6F8FC;
	--ct-green:      #12B76A;
	--ct-green-soft: #E7F8F0;
	--ct-amber:      #B54708;
	--ct-amber-soft: #FEF0C7;
	--ct-blue:       #175CD3;
	--ct-blue-soft:  #E0EDFF;
	--ct-radius:     18px;
	--ct-radius-sm:  12px;
	--ct-shadow:     0 8px 30px rgba(22, 32, 74, 0.10);
	--ct-shadow-lg:  0 16px 44px rgba(22, 32, 74, 0.16);
	--ct-wrap:       1140px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: 'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: var(--ct-body);
	background: #fff;
	-webkit-font-smoothing: antialiased;
	/* sticky footer: short pages (funnel steps, legal, done, 404) pin ct-footer to the viewport bottom */
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	min-height: 100dvh;
}

img { max-width: 100%; height: auto; }

a { color: var(--ct-pink); text-decoration: none; }
a:hover { text-decoration: underline; }

[id] { scroll-margin-top: 84px; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ── 2. Typography ─────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
	color: var(--ct-ink);
	line-height: 1.18;
	margin: 0 0 0.6em;
	font-weight: 900;
	letter-spacing: -0.015em;
}

h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; font-weight: 800; }

p { margin: 0 0 1em; }

.ct-lead {
	font-size: 1.13rem;
	color: var(--ct-body);
}

.ct-kicker {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ct-pink);
	background: var(--ct-pink-soft);
	border-radius: 999px;
	padding: 0.3em 1em;
	margin-bottom: 1em;
}

.ct-wrap {
	max-width: var(--ct-wrap);
	margin: 0 auto;
	padding: 0 20px;
}

.ct-section { padding: 72px 0; }
.ct-section-tight { padding: 48px 0; }

.ct-section-title {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 44px;
}
.ct-section-title p { color: var(--ct-muted); }

.ct-tint { background: var(--ct-bg-soft); }

.ct-crumb {
	font-size: 0.85rem;
	color: var(--ct-muted);
	font-weight: 700;
	margin-bottom: 14px;
}
.ct-crumb a { color: var(--ct-muted); }
.ct-crumb a:hover { color: var(--ct-pink); }

/* ── 3. Topbar + nav ───────────────────────────────────────────────────── */
.ct-topbar {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--ct-line);
}

.ct-topbar-in {
	max-width: var(--ct-wrap);
	margin: 0 auto;
	padding: 0 20px;
	height: 64px;
	display: flex;
	align-items: center;
	gap: 18px;
}

.ct-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.ct-logo img { height: 44px; width: auto; display: block; }

.ct-nav {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: auto;
}

.ct-nav a {
	color: var(--ct-ink);
	font-weight: 700;
	font-size: 0.95rem;
	padding: 8px 12px;
	border-radius: 10px;
	white-space: nowrap;
}
.ct-nav a:hover { background: var(--ct-pink-ghost); color: var(--ct-pink); text-decoration: none; }
.ct-nav a.ct-nav-active { color: var(--ct-pink); }
.ct-nav a.ct-nav-sibling { color: var(--ct-muted); font-weight: 600; font-size: 0.88rem; }
.ct-nav a.ct-nav-sibling:hover { color: var(--ct-pink); }

.ct-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 8px;
	border: 1px solid var(--ct-line);
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
}
.ct-burger span {
	display: block;
	height: 2px;
	border-radius: 2px;
	background: var(--ct-ink);
}

/* Language switcher (renders in the /v2 preview and after the R6 flip) */
.ct-lang { position: relative; flex-shrink: 0; }
.ct-lang summary {
	list-style: none;
	cursor: pointer;
	font-weight: 800;
	font-size: 0.85rem;
	color: var(--ct-ink);
	border: 1px solid var(--ct-line);
	border-radius: 10px;
	padding: 7px 12px;
	white-space: nowrap;
}
.ct-lang summary::-webkit-details-marker { display: none; }
.ct-lang summary::after { content: ' ▾'; color: var(--ct-muted); }
.ct-lang-menu {
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	background: #fff;
	border: 1px solid var(--ct-line);
	border-radius: var(--ct-radius-sm);
	box-shadow: var(--ct-shadow);
	display: flex;
	flex-direction: column;
	min-width: 150px;
	padding: 6px;
	z-index: 70;
}
.ct-lang-menu a {
	color: var(--ct-ink);
	font-weight: 700;
	font-size: 0.92rem;
	padding: 8px 12px;
	border-radius: 8px;
}
.ct-lang-menu a:hover { background: var(--ct-pink-ghost); text-decoration: none; }
.ct-lang-menu a.ct-lang-active { color: var(--ct-pink); }

/* ── 4. Buttons + alerts ───────────────────────────────────────────────── */
.ct-btn {
	display: inline-block;
	background: var(--ct-pink-deep);
	color: #fff;
	font-family: inherit;
	font-weight: 800;
	font-size: 1rem;
	line-height: 1;
	padding: 15px 28px;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	text-align: center;
	box-shadow: 0 6px 18px rgba(230, 0, 70, 0.14);
	transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.ct-btn:hover {
	background: var(--ct-pink);
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(255, 0, 78, 0.26);
}
.ct-btn:focus-visible { outline: 3px solid var(--ct-pink-soft); outline-offset: 2px; }

.ct-btn-lg { padding: 17px 34px; font-size: 1.06rem; }
.ct-btn-sm { padding: 11px 20px; font-size: 0.92rem; box-shadow: none; }

.ct-btn-ghost {
	background: #fff;
	color: var(--ct-ink);
	border: 2px solid var(--ct-line);
	box-shadow: none;
}
.ct-btn-ghost:hover { background: var(--ct-bg-soft); color: var(--ct-pink); border-color: var(--ct-pink); }

.ct-btn-disabled,
.ct-btn-disabled:hover {
	background: #BCBCBC;
	color: #fff;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

.ct-alert {
	position: relative;
	border-radius: var(--ct-radius-sm);
	padding: 14px 44px 14px 16px;
	margin: 0 0 14px;
	font-weight: 600;
	border: 1px solid transparent;
}
.ct-alert-success { background: var(--ct-green-soft); color: #067647; border-color: #ABEFC6; }
.ct-alert-info    { background: var(--ct-blue-soft);  color: var(--ct-blue); border-color: #B2CCFF; }
.ct-alert-warning { background: var(--ct-amber-soft); color: var(--ct-amber); border-color: #FEDF89; }
.ct-alert img { vertical-align: middle; height: 50px; }

.ct-alert-x {
	position: absolute;
	top: 8px;
	right: 10px;
	border: 0;
	background: none;
	font-size: 1.3rem;
	line-height: 1;
	color: inherit;
	opacity: 0.6;
	cursor: pointer;
}
.ct-alert-x:hover { opacity: 1; }

/* ── 5. Hero ───────────────────────────────────────────────────────────── */
.ct-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(520px 380px at 4% 92%, #EDF1FB 0%, rgba(237, 241, 251, 0) 60%),
		#fff;
}

.ct-hero-in {
	max-width: var(--ct-wrap);
	margin: 0 auto;
	padding: 44px 20px 52px;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 44px;
	align-items: center;
}

.ct-hero h1 { margin-bottom: 0.45em; }
.ct-hero h1 span { color: var(--ct-pink); }

.ct-hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 26px 0 22px;
}

.ct-hero-art {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 560px;
	color: var(--ct-ink);
	line-height: 1.35;
	/* Uniform shrink of the whole composition. zoom, not transform: it reduces
	   the layout box (the hero row actually gets shorter) and scales the
	   animation travel distances along. positionStream() in ct_hero_art()
	   divides its page-px rect deltas back to local px. */
	zoom: 0.85;
}

.ct-trust {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.ct-trust li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	color: var(--ct-ink);
}

.ct-check {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--ct-green-soft);
	position: relative;
}
.ct-check::after {
	content: '';
	position: absolute;
	left: 7px;
	top: 4px;
	width: 5px;
	height: 9px;
	border: solid var(--ct-green);
	border-width: 0 2.5px 2.5px 0;
	transform: rotate(45deg);
}

.ct-hero-pay { opacity: 0.92; }

/* ── 5b. Hero art: animated phone mockup (markup from ct_hero_art()) ───────
   Everything scoped under .ct-hero-art / .ct-ph-*; the only non-token colors
   are the TikTok-nod teal accents and the avatar/tile gradient stops. */
.ct-hero-art {
	--ph-teal:      #22D9D2;
	--ph-teal-deep: #0FB8B2;
}
.ct-hero-art::before,
.ct-hero-art::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	z-index: 0;
}
.ct-hero-art::before {
	width: 340px;
	height: 340px;
	background: rgba(255, 0, 78, 0.10);
	top: 6%;
	right: 2%;
}
.ct-hero-art::after {
	width: 300px;
	height: 300px;
	background: rgba(34, 217, 210, 0.16);
	bottom: 4%;
	left: 4%;
}

.ct-ph {
	position: relative;
	z-index: 2;
	width: 280px;
	height: 560px;
	background: var(--ct-navy-deep);
	border-radius: 44px;
	padding: 10px;
	box-shadow: 0 24px 60px -18px rgba(22, 32, 74, 0.28), inset 0 0 0 2px rgba(255, 255, 255, 0.06);
	animation: ct-bob 5.5s ease-in-out infinite;
}
/* No rotation on purpose: the mockup's constant -1.2deg tilt forced every
   glyph off the pixel grid (visibly blurry text in the phone + growth card,
   worse under the 0.85 zoom). Pure vertical float keeps text crisp. */
@keyframes ct-bob {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-12px); }
}

.ct-ph-screen {
	position: relative;
	width: 100%;
	height: 100%;
	background: linear-gradient(175deg, #FFFFFF 0%, var(--ct-bg-soft) 100%);
	border-radius: 36px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.ct-ph-notch {
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 96px;
	height: 22px;
	background: var(--ct-navy-deep);
	border-radius: 999px;
	z-index: 5;
}

.ct-ph-profile {
	width: 100%;
	padding: 52px 20px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.ct-ph-avatar-ring {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: conic-gradient(var(--ct-pink), var(--ph-teal), var(--ct-pink));
	padding: 3.5px;
	animation: ct-spin 9s linear infinite;
}
@keyframes ct-spin { to { transform: rotate(360deg); } }
.ct-ph-avatar {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 3px solid #fff;
	background:
		radial-gradient(circle at 50% 42%, #FFD9C4 0 26%, transparent 27%),
		radial-gradient(circle at 38% 30%, #2E3560 0 30%, transparent 31%),
		radial-gradient(circle at 62% 30%, #2E3560 0 30%, transparent 31%),
		radial-gradient(circle at 50% 96%, var(--ph-teal) 0 42%, transparent 43%),
		linear-gradient(160deg, var(--ct-pink-soft), #DFF9F8);
	animation: ct-spin 9s linear infinite reverse; /* counter-rotation keeps the face upright */
}

.ct-ph-uname {
	margin-top: 14px;
	font-weight: 900;
	font-size: 17px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.ct-ph-verified {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--ph-teal-deep);
	color: #fff;
	font-size: 9px;
	display: grid;
	place-items: center;
	font-weight: 900;
}
.ct-ph-handle {
	font-size: 12.5px;
	color: var(--ct-body);
	font-weight: 700;
	margin-top: 2px;
}

.ct-ph-stats {
	display: flex;
	gap: 20px;
	margin-top: 18px;
}
.ct-ph-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.ct-ph-stat b {
	font-size: 19px;
	font-weight: 900;
	font-variant-numeric: tabular-nums;
}
.ct-ph-stat span {
	font-size: 10.5px;
	color: var(--ct-body);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-top: 2px;
	white-space: nowrap;
}
.ct-ph-grow { color: var(--ct-pink-deep); }
.ct-ph-grow-teal { color: var(--ph-teal-deep); }
.ct-ph-stat b.ct-ph-pop { animation: ct-ph-pop 0.35s ease; }
@keyframes ct-ph-pop { 40% { transform: scale(1.28); } }

.ct-ph-follow {
	margin-top: 18px;
	width: 78%;
	text-align: center;
	background: var(--ct-pink-deep);
	color: #fff;
	border-radius: 12px;
	font-weight: 900;
	font-size: 14px;
	padding: 12px 0;
	box-shadow: 0 10px 22px -8px rgba(230, 0, 70, 0.55);
}

.ct-ph-grid {
	margin-top: 20px;
	width: 100%;
	flex: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3px;
	padding: 0 3px;
}
.ct-ph-grid div { border-radius: 6px 6px 0 0; opacity: 0.9; }
.ct-ph-grid div:nth-child(1) { background: linear-gradient(160deg, #FF6E97, var(--ct-pink-deep)); }
.ct-ph-grid div:nth-child(2) { background: linear-gradient(160deg, #6FE9E4, var(--ph-teal-deep)); }
.ct-ph-grid div:nth-child(3) { background: linear-gradient(160deg, #35407F, var(--ct-navy)); }
.ct-ph-grid div:nth-child(4) { background: linear-gradient(160deg, #6FE9E4, var(--ph-teal)); }
.ct-ph-grid div:nth-child(5) { background: linear-gradient(160deg, var(--ct-navy), #35407F); }
.ct-ph-grid div:nth-child(6) { background: linear-gradient(160deg, var(--ct-pink-deep), #FF6E97); }

.ct-ph-pill {
	position: absolute;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 9px;
	background: #fff;
	border-radius: 999px;
	padding: 9px 16px 9px 9px;
	box-shadow: 0 14px 34px -12px rgba(22, 32, 74, 0.32);
	font-size: 15px;
	font-weight: 800;
	white-space: nowrap;
	opacity: 0;
}
.ct-ph-dot {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	flex-shrink: 0;
	display: grid;
	place-items: center;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
}
.ct-ph-pill small {
	display: block;
	font-size: 12px;
	color: var(--ct-body);
	font-weight: 700;
}
.ct-ph-pill-1 { top: 16%; right: -4%; animation: ct-pill-in 9s ease-in-out infinite; }
.ct-ph-pill-2 { top: 39%; left: -9%; animation: ct-pill-in 9s ease-in-out 3s infinite; }
.ct-ph-pill-3 { bottom: 24%; right: -7%; animation: ct-pill-in 9s ease-in-out 6s infinite; }
.ct-ph-pill-1 .ct-ph-dot { background: linear-gradient(160deg, var(--ct-pink-deep), #FF5C8A); }
.ct-ph-pill-2 .ct-ph-dot { background: linear-gradient(160deg, var(--ph-teal-deep), var(--ph-teal)); }
.ct-ph-pill-3 .ct-ph-dot { background: linear-gradient(160deg, #35407F, var(--ct-navy)); }
@keyframes ct-pill-in {
	0%   { opacity: 0; transform: translateY(14px) scale(0.92); }
	6%   { opacity: 1; transform: translateY(0) scale(1); }
	30%  { opacity: 1; transform: translateY(0) scale(1); }
	38%  { opacity: 0; transform: translateY(-12px) scale(0.95); }
	100% { opacity: 0; }
}

.ct-ph-growth {
	position: absolute;
	z-index: 3;
	bottom: 9%;
	left: 2%;
	background: #fff;
	border-radius: 18px;
	padding: 14px 18px;
	box-shadow: 0 18px 40px -14px rgba(22, 32, 74, 0.3);
	animation: ct-bob 6.5s ease-in-out 0.8s infinite;
}
.ct-ph-growth-label {
	font-size: 10.5px;
	font-weight: 800;
	color: var(--ct-body);
	text-transform: uppercase;
	letter-spacing: 0.07em;
}
.ct-ph-growth-val {
	font-size: 20px;
	font-weight: 900;
	color: var(--ct-green);
	margin-top: 2px;
}
.ct-ph-spark { margin-top: 6px; display: block; }
.ct-ph-spark path {
	stroke: var(--ct-green);
	stroke-dasharray: 220;
	stroke-dashoffset: 220;
	animation: ct-draw 2.6s ease forwards 0.6s;
}
@keyframes ct-draw { to { stroke-dashoffset: 0; } }

/* TikTok-style like stream — hearts spawned by ct_hero_art()'s script from the
   Likes counter; rises out of the phone top on purpose (stream sits outside
   .ct-ph-screen's overflow clip). */
.ct-ph-likestream {
	position: absolute;
	width: 0;
	height: 0;
	z-index: 6;
	pointer-events: none;
}
.ct-ph-heart {
	position: absolute;
	top: 0;
	opacity: 0;
	filter: drop-shadow(0 5px 12px rgba(230, 0, 70, 0.35));
	animation: ct-fly-up var(--fd, 3.4s) linear forwards;
	will-change: transform, opacity;
}
.ct-ph-sway {
	display: block;
	animation: ct-sway var(--sd, 1.6s) ease-in-out infinite alternate;
}
.ct-ph-sway svg { display: block; }
@keyframes ct-fly-up {
	0%   { opacity: 0;   transform: translateY(0)      scale(0.3); }
	8%   { opacity: 1;   transform: translateY(-26px)  scale(1.18); }
	14%  { opacity: 1;   transform: translateY(-45px)  scale(0.95); }
	20%  { opacity: 1;   transform: translateY(-64px)  scale(1); }
	72%  { opacity: 0.9; transform: translateY(-230px) scale(1); }
	100% { opacity: 0;   transform: translateY(-320px) scale(1.06); }
}
@keyframes ct-sway {
	from { transform: translateX(calc(var(--amp, 8px) * -1)) rotate(-11deg); }
	to   { transform: translateX(var(--amp, 8px)) rotate(11deg); }
}

/* The global reduced-motion kill leaves animation-driven states at their base
   values — pills would stay invisible and the sparkline undrawn. Pin both. */
@media (prefers-reduced-motion: reduce) {
	.ct-ph-pill { opacity: 1; }
	.ct-ph-spark path { stroke-dashoffset: 0; }
}

/* ── 6. Pricing cards (navy band) ──────────────────────────────────────── */
.ct-band {
	background: linear-gradient(180deg, var(--ct-navy) 0%, var(--ct-navy-deep) 100%);
	color: #C9D2EC;
	padding: 72px 0;
}
.ct-band h2 { color: #fff; text-align: center; }
.ct-band .ct-section-title p { color: #97A3C6; }

.ct-band-group { padding-top: 34px; }
.ct-band-group:first-of-type { padding-top: 0; }

.ct-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
	gap: 22px;
	max-width: 980px;
	margin: 0 auto;
}

.ct-card {
	background: #fff;
	color: var(--ct-body);
	border-radius: var(--ct-radius);
	box-shadow: var(--ct-shadow);
	padding: 26px 24px 24px;
	display: flex;
	flex-direction: column;
	text-align: center;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ct-card:hover { transform: translateY(-4px); box-shadow: var(--ct-shadow-lg); }

.ct-card-price {
	align-self: center;
	background: var(--ct-bg-soft);
	border: 1px solid var(--ct-line);
	border-radius: 999px;
	padding: 6px 14px;
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1;
	color: var(--ct-ink);
	margin-bottom: 12px;
}
.ct-price-old { font-size: 0.95rem; color: var(--ct-muted); }
.ct-price-old strike { color: var(--ct-muted); }
/* promo_icon <img>: the global img height:auto reset defeats the frozen strings' height attrs — pin the intended sizes (50/25, R4-settled) */
.ct-price-old img, .ct-card-unit small img { height: 25px; vertical-align: middle; }

.ct-card-qty {
	font-size: 3rem;
	font-weight: 900;
	color: var(--ct-ink);
	line-height: 1.05;
	margin-top: 4px;
}
.ct-card-qty small { font-size: 1.2rem; color: var(--ct-muted); font-weight: 700; }
.ct-card-unit {
	font-weight: 800;
	color: var(--ct-ink);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.82rem;
	margin-bottom: 14px;
}

.ct-checklist {
	list-style: none;
	margin: 0 0 20px;
	padding: 14px 0 0;
	border-top: 1px solid var(--ct-line);
	display: flex;
	flex-direction: column;
	gap: 9px;
	text-align: left;
	font-size: 0.94rem;
	font-weight: 600;
}
.ct-checklist li { display: flex; align-items: center; gap: 9px; }

.ct-card .ct-btn { margin-top: auto; width: 100%; }

.ct-learnmore {
	display: block;
	text-align: center;
	margin-top: 26px;
	color: #fff;
	font-weight: 700;
	font-size: 1.05rem;
}
.ct-learnmore:hover { color: var(--ct-pink-soft); }

/* ── 7. Features / steps / why / cross-sell ────────────────────────────── */
.ct-ic {
	display: inline-block;
	width: 30px;
	height: 30px;
	background-color: var(--ct-pink);
	-webkit-mask: var(--ic) center / contain no-repeat;
	mask: var(--ic) center / contain no-repeat;
}

.ct-ic-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
	border-radius: 22px;
	background: var(--ct-pink-soft);
	margin-bottom: 16px;
}

.ct-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 26px;
	text-align: center;
}
.ct-features h3 { margin-bottom: 0.4em; }

.ct-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
	gap: 20px;
}
.ct-step {
	background: var(--ct-bg-soft);
	border: 1px solid var(--ct-line);
	border-radius: var(--ct-radius);
	padding: 24px 20px;
	text-align: center;
	position: relative;
}
.ct-step-n {
	position: absolute;
	top: 14px;
	left: 16px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--ct-pink);
	color: #fff;
	font-weight: 900;
	font-size: 0.85rem;
	line-height: 26px;
}
.ct-step .ct-ic-wrap { width: 56px; height: 56px; border-radius: 18px; background: #fff; }
.ct-step h3 { font-size: 1.02rem; }
.ct-step p { margin: 0; font-size: 0.94rem; }

.ct-note {
	max-width: 820px;
	margin: 30px auto 0;
	text-align: center;
	color: var(--ct-muted);
	font-size: 0.97rem;
}

.ct-why {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
@media (max-width: 1020px) { .ct-why { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ct-why { grid-template-columns: 1fr; } }
.ct-why-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--ct-line);
	border-radius: var(--ct-radius);
	padding: 20px;
}
.ct-why-item .ct-ic-wrap { width: 48px; height: 48px; border-radius: 14px; margin: 0; flex-shrink: 0; }
.ct-why-item .ct-ic { width: 24px; height: 24px; }
.ct-why-item h3 { font-size: 1rem; margin-bottom: 0.25em; }
.ct-why-item p { margin: 0; font-size: 0.94rem; }

.ct-why-footer { max-width: 980px; margin: 26px auto 0; }

.ct-cross {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 340px));
	justify-content: center;
	gap: 20px;
}
.ct-cross a {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
	background: #fff;
	border: 1px solid var(--ct-line);
	border-radius: var(--ct-radius);
	box-shadow: var(--ct-shadow);
	padding: 24px 22px;
	color: var(--ct-body);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ct-cross a:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--ct-shadow-lg); }
.ct-cross h3 { margin: 0; }
.ct-cross strong { color: var(--ct-pink); font-weight: 800; }

/* ── 8. FAQ + contact ──────────────────────────────────────────────────── */
.ct-faq {
	max-width: 780px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ct-faq details {
	background: #fff;
	border: 1px solid var(--ct-line);
	border-radius: var(--ct-radius-sm);
	overflow: hidden;
}
.ct-faq details[open] { box-shadow: var(--ct-shadow); }

.ct-faq summary {
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	padding: 17px 20px;
	font-weight: 800;
	color: var(--ct-ink);
}
.ct-faq summary::-webkit-details-marker { display: none; }
.ct-faq summary h3 { margin: 0; font-size: 1rem; }
.ct-faq summary::after {
	content: '';
	flex-shrink: 0;
	width: 9px;
	height: 9px;
	border: solid var(--ct-pink);
	border-width: 0 2.5px 2.5px 0;
	transform: rotate(45deg);
	transition: transform 0.15s ease;
	margin-right: 4px;
}
.ct-faq details[open] summary::after { transform: rotate(-135deg); }

.ct-faq-a { padding: 0 20px 18px; }
.ct-faq-a :last-child { margin-bottom: 0; }

.ct-section-link { text-align: center; margin-top: 36px; }

.ct-contact-note {
	background: var(--ct-bg-soft);
	border: 1px solid var(--ct-line);
	border-left: 4px solid var(--ct-pink);
	border-radius: var(--ct-radius-sm);
	padding: 16px 18px;
	margin-bottom: 26px;
}

.ct-form { max-width: 640px; }
.ct-form .ct-field { margin-bottom: 14px; }

.ct-input,
.ct-textarea {
	width: 100%;
	font-family: inherit;
	font-size: 1rem;
	color: var(--ct-ink);
	background: #fff;
	border: 2px solid var(--ct-line);
	border-radius: var(--ct-radius-sm);
	padding: 12px 14px;
	transition: border-color 0.15s ease;
}
.ct-input:focus,
.ct-textarea:focus {
	outline: none;
	border-color: var(--ct-pink);
	box-shadow: 0 0 0 4px var(--ct-pink-ghost);
}
.ct-textarea { min-height: 160px; resize: vertical; }

.ct-mathq { display: flex; align-items: center; gap: 12px; }
.ct-mathq img { flex-shrink: 0; border-radius: 8px; }

.ct-form-result { margin-top: 16px; font-weight: 700; }
.ct-form-result h3 { font-size: 1.02rem; color: var(--ct-pink-dark); }

/* ── 9. Footer ─────────────────────────────────────────────────────────── */
.ct-footer {
	background: linear-gradient(180deg, var(--ct-navy) 0%, var(--ct-navy-deep) 100%);
	color: #AEB9D9;
	padding: 60px 0 28px;
	font-size: 0.95rem;
	margin-top: auto;
}

.ct-footer a { color: #D7DEF2; font-weight: 600; }
.ct-footer a:hover { color: #fff; }

.ct-footer-grid {
	max-width: var(--ct-wrap);
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 34px;
}

.ct-footer-logo { height: 40px; width: auto; display: block; }

.ct-footer-brand p { margin: 10px 0; }
.ct-footer-quote { font-style: italic; font-size: 0.9rem; color: #97A3C6; }
.ct-footer-quote strong { color: #C9D2EC; }
.ct-footer-pay { margin-top: 6px; }

.ct-footer-col { display: flex; flex-direction: column; gap: 9px; }
.ct-footer-h {
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	font-size: 0.8rem;
	margin-bottom: 4px;
}

.ct-footer-bottom {
	max-width: var(--ct-wrap);
	margin: 44px auto 0;
	padding: 22px 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	text-align: center;
	font-size: 0.85rem;
	color: #8791A8;
}
.ct-footer-bottom p { margin: 0 0 6px; }

/* ── 10. Legal / done / 404 + responsive ───────────────────────────────── */
.ct-prose {
	max-width: 780px;
	margin: 0 auto;
}
.ct-prose h1 { text-align: center; margin-bottom: 1em; }
.ct-prose-back { text-align: center; margin-top: 34px; }

.ct-panel {
	max-width: 620px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--ct-line);
	border-radius: var(--ct-radius);
	box-shadow: var(--ct-shadow);
	padding: 36px 30px;
	text-align: center;
}

.ct-done-ic {
	width: 74px;
	height: 74px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: var(--ct-green-soft);
	border: 2px solid #ABEFC6;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: ct-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.ct-done-ic svg { width: 36px; height: 36px; fill: var(--ct-green); }
@keyframes ct-pop {
	from { transform: scale(0.5); opacity: 0; }
	to   { transform: scale(1); opacity: 1; }
}

.ct-details {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 22px;
	font-size: 0.95rem;
	text-align: left;
}
.ct-details td {
	padding: 10px 8px;
	border-bottom: 1px solid var(--ct-line);
	vertical-align: top;
}
.ct-details tr:last-child td { border-bottom: none; }
.ct-details td:first-child {
	color: var(--ct-muted);
	font-weight: 700;
	width: 40%;
	white-space: nowrap;
}
.ct-details td:last-child { color: var(--ct-ink); font-weight: 800; word-break: break-all; }
.ct-details .ct-ok { color: var(--ct-green); }

.ct-notice {
	background: var(--ct-bg-soft);
	border: 1px solid var(--ct-line);
	border-left: 4px solid var(--ct-green);
	border-radius: var(--ct-radius-sm);
	padding: 14px 16px;
	font-size: 0.9rem;
	text-align: left;
	margin-bottom: 24px;
}

.ct-404 { text-align: center; padding: 90px 20px; }
.ct-404-code {
	font-size: 5.5rem;
	font-weight: 900;
	color: var(--ct-pink-deep);
	line-height: 1;
	margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 900px) {
	.ct-nav {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 1px solid var(--ct-line);
		box-shadow: var(--ct-shadow);
		flex-direction: column;
		align-items: stretch;
		padding: 10px 14px 16px;
		gap: 2px;
	}
	.ct-nav.ct-nav-open { display: flex; }
	.ct-nav a { padding: 12px 12px; }
	.ct-burger { display: flex; margin-left: auto; }
	.ct-lang { margin-left: auto; }
	.ct-burger { margin-left: 0; }

	.ct-hero-in {
		grid-template-columns: 1fr;
		padding: 40px 20px 48px;
		gap: 30px;
	}
	.ct-hero-art { order: 2; min-height: 600px; }
	/* narrow viewports: pull the pills back inside the art box (the hero's
	   overflow:hidden would clip the negative offsets) */
	.ct-ph-pill-1 { right: 0; }
	.ct-ph-pill-2 { left: 0; }
	.ct-ph-pill-3 { right: 0; }

	.ct-section { padding: 54px 0; }
	.ct-band { padding: 54px 0; }

	.ct-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
	.ct-hero-ctas { flex-direction: column; align-items: stretch; }
	.ct-hero-ctas .ct-btn { width: 100%; }
	.ct-footer-grid { grid-template-columns: 1fr; gap: 26px; }
	.ct-mathq { flex-wrap: wrap; }
}

/* ── 11. Funnel (order.php — plan R2) ──────────────────────────────────── */
.ct-funnel-band {
	background: linear-gradient(180deg, var(--ct-navy) 0%, var(--ct-navy-deep) 100%);
	color: #C9D2EC;
	text-align: center;
	padding: 36px 0 42px;
}

.ct-funnel-band h1 {
	color: #fff;
	font-size: clamp(1.65rem, 3.4vw, 2.4rem);
	margin: 18px 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}
.ct-funnel-band .ct-ic-wrap.ct-fic {
	width: 54px;
	height: 54px;
	border-radius: 18px;
	margin: 0;
	flex-shrink: 0;
}
.ct-fic .ct-ic { width: 26px; height: 26px; }

.ct-fsteps {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}
.ct-fstep {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 0.86rem;
	color: #97A3C6;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	padding: 5px 14px 5px 6px;
}
.ct-fstep-n {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #C9D2EC;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 22px;
	text-align: center;
}
.ct-fstep-on { color: #fff; border-color: var(--ct-pink); background: rgba(255, 0, 78, 0.16); }
.ct-fstep-on .ct-fstep-n { background: var(--ct-pink); color: #fff; }
.ct-fstep-done { color: #C9D2EC; }
.ct-fstep-done .ct-fstep-n { background: var(--ct-green); color: #fff; }
a.ct-fstep:hover { text-decoration: none; border-color: #fff; color: #fff; }

.ct-funnel-sub { color: #C9D2EC; font-size: 1.02rem; margin: 0; }
.ct-funnel-sub strong { color: #fff; font-weight: 800; }
.ct-funnel-sub a {
	display: inline-block;
	margin-top: 8px;
	color: #AEB9D9;
	font-size: 0.88rem;
	font-weight: 600;
	text-decoration: underline;
}
.ct-funnel-sub a:hover { color: #fff; }

.ct-promo-pill {
	display: inline-block;
	background: var(--ct-green);
	color: #fff;
	border-radius: 999px;
	padding: 2px 12px;
	font-size: 0.8rem;
	font-weight: 800;
	vertical-align: middle;
}
.ct-promo-pill img { vertical-align: middle; height: 25px; }

.ct-funnel-body { padding: 40px 0 64px; }
.ct-funnel-col { max-width: 620px; margin: 0 auto; }
.ct-center { text-align: center; }

.ct-fpanel { text-align: left; }
.ct-fpanel-h { font-size: 1.18rem; margin-bottom: 16px; }

.ct-alert-danger { background: #FEE4E2; color: #B42318; border-color: #FECDCA; }
.ct-fpanel .ct-alert { font-weight: 600; }
.ct-fpanel .ct-alert h2 { font-size: 1.1rem; color: inherit; margin-bottom: 0.5em; }
.ct-fpanel .ct-alert h3 { font-size: 1rem; color: inherit; margin: 0.6em 0 0.3em; }
.ct-fpanel .ct-alert a { color: inherit; text-decoration: underline; }

.ct-uform { display: flex; gap: 10px; }
.ct-uform .ct-input { flex: 1; min-width: 0; }
.ct-nopass {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	font-size: 0.88rem;
	color: var(--ct-muted);
}
.ct-uhelp {
	display: block;
	margin: 0 auto 14px;
	border: 1px solid var(--ct-line);
	border-radius: var(--ct-radius-sm);
}

.ct-vh { text-align: center; margin: 0 0 26px; }
.ct-vgrid {
	display: grid;
	/* auto-fit + fixed tracks (not auto-fill/1fr): empty tracks collapse, so short
	   post lists center instead of parking left */
	grid-template-columns: repeat(auto-fit, 190px);
	justify-content: center;
	gap: 18px;
	max-width: 980px;
	margin: 0 auto;
}
.ct-vspan { grid-column: 1 / -1; }
.ct-vcard {
	background: #fff;
	border: 1px solid var(--ct-line);
	border-radius: var(--ct-radius-sm);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ct-vcard:hover { transform: translateY(-3px); box-shadow: var(--ct-shadow); }
.ct-vcard form { display: flex; flex-direction: column; flex: 1; }
.ct-vcover {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border: 0;
	padding: 0;
	cursor: pointer;
	background: var(--ct-bg-soft);
}
.ct-vmeta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	padding: 9px 12px 0;
	font-size: 0.85rem;
}
.ct-vstat {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 800;
	color: var(--ct-ink);
	min-width: 0;
	overflow-wrap: anywhere;
}
.ct-vdate { color: var(--ct-muted); font-size: 0.78rem; white-space: nowrap; }
/* input[type=submit] value text can never wrap — size for the longest catalog string at the 175px grid minimum */
.ct-vcard .ct-btn { margin: 10px 12px 12px; padding: 11px 8px; font-size: 0.85rem; }

.ct-ic-sm { width: 16px; height: 16px; flex-shrink: 0; }

.ct-review-head { display: flex; align-items: center; gap: 16px; }
.ct-review-photo {
	width: 108px;
	height: 108px;
	border-radius: var(--ct-radius-sm);
	object-fit: cover;
	flex-shrink: 0;
	background: var(--ct-bg-soft);
}
.ct-review-photo-post { width: 99px; height: 132px; }
.ct-review-meta { min-width: 0; overflow-wrap: anywhere; }
.ct-review-meta h2 { font-size: 1.25rem; margin: 0 0 4px; }
.ct-current {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--ct-body);
	font-size: 0.95rem;
}
.ct-fpanel .ct-details { margin: 18px 0 22px; }
.ct-bonus { color: var(--ct-green); font-weight: 700; font-size: 0.88rem; }

.ct-flabel { display: block; font-weight: 800; color: var(--ct-ink); margin: 0 0 6px; }
.ct-email-note { font-size: 0.83rem; color: var(--ct-muted); margin-top: 6px; }
.ct-btn-block { display: block; width: 100%; margin-top: 14px; }
.ct-ic-btn { width: 15px; height: 15px; background-color: #fff; vertical-align: -2px; }
.ct-ssl-note { text-align: center; font-size: 0.85rem; color: var(--ct-muted); margin-top: 18px; }
.ct-fpay { margin-top: 10px; opacity: 0.92; width: 140px; }

@media (max-width: 540px) {
	.ct-uform { flex-direction: column; }
	.ct-vgrid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.ct-vcard .ct-btn { margin: 8px; padding: 10px 8px; }
	.ct-review-head { gap: 12px; }
	.ct-review-photo { width: 84px; height: 84px; }
	.ct-review-photo-post { width: 78px; height: 104px; }
	.ct-funnel-band { padding: 28px 0 34px; }

	/* one-line step pills: 2.9vw type keeps the 3 pills + circles inside the
	   wrap down to ~360px viewports (FR is the long case); narrower still wraps */
	.ct-fsteps { gap: 5px; }
	.ct-fstep {
		font-size: clamp(10px, 2.9vw, 12px);
		gap: 5px;
		padding: 4px 9px 4px 4px;
		white-space: nowrap;
	}
	.ct-fstep-n { width: 18px; height: 18px; line-height: 18px; font-size: 10px; }
}
