/* ==========================================================================
   SuguCu Ads - brand system CSS
   The SuguCu five · Poppins/Inter · candy dots · 15° sticks · pills · 2:1
   ========================================================================== */

:root {
	--teal: #2A9D8E;
	--harbour: #264653;
	--gold: #E9C46B;
	--mango: #F3A261;
	--coral: #E66F51;
	--silver: #AEBFC6;
	--cream: #FAF7F0;
	--muted: rgba(38, 70, 83, .62);
	--faint: rgba(38, 70, 83, .12);
	--teal-tint: rgba(42, 157, 142, .10);

	--font-head: 'Poppins', -apple-system, 'Segoe UI', Roboto, sans-serif;
	--font-body: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;

	--radius-card: 14px;
	--radius-pill: 999px;
	--shadow-card: 0 6px 24px rgba(38, 70, 83, .08);
	--shadow-lift: 0 14px 40px rgba(38, 70, 83, .14);

	--wrap: 1120px;

	--candy: radial-gradient(circle at 38% 30%, #E66F51 0 11%, #F3A261 11% 26%, #E9C46B 26% 46%, #2A9D8E 46% 100%);
}

/* Base ------------------------------------------------------------------ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--cream);
	color: var(--harbour);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 1em; max-width: 70ch; }

h1, h2, h3, h4 {
	font-family: var(--font-head);
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.15;
	margin: 0 0 .5em;
	text-wrap: balance;
}
h1 { font-size: clamp(34px, 5.2vw, 58px); }
h2 { font-size: clamp(24px, 3vw, 32px); }
h3 { font-size: 18px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.label {
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--teal);
	display: block;
}
.lede { font-size: 18px; color: var(--muted); }
.muted { color: var(--muted); }

.skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--harbour); color: #fff; padding: 10px 18px; border-radius: var(--radius-pill);
}
.skip-link:focus { left: 16px; top: 16px; z-index: 99; }

/* Buttons - pill everything --------------------------------------------- */
.btn {
	display: inline-block;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 16px;
	padding: 14px 30px;
	border-radius: var(--radius-pill);
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none !important;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
	white-space: nowrap;
}
.btn--sm { padding: 9px 20px; font-size: 14px; }
.btn--coral {
	background: var(--coral);
	color: #fff;
	box-shadow: 0 8px 22px rgba(230, 111, 81, .35);
	animation: cta-breathe 5s ease-in-out infinite;
}
.btn--coral:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(230, 111, 81, .45); }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(42, 157, 142, .3); }
.btn--ghost { border-color: var(--harbour); color: var(--harbour); background: transparent; }
.btn--ghost:hover { background: var(--harbour); color: #fff; }
.btn--ghost-light { border-color: rgba(255,255,255,.7); color: #fff; background: transparent; }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); }

@keyframes cta-breathe {
	0%, 100% { box-shadow: 0 8px 22px rgba(230, 111, 81, .32); }
	50% { box-shadow: 0 10px 30px rgba(230, 111, 81, .5); }
}

/* Chips ------------------------------------------------------------------ */
.chip {
	display: inline-block;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: var(--radius-pill);
	color: var(--harbour);
}
.chip--gold { background: var(--gold); }
.chip--silver { background: var(--silver); }
.chip--community { background: var(--mango); }
.chip--daypart { background: var(--harbour); color: #fff; }
.chip--teal { background: var(--teal-tint); color: var(--teal); }

/* Candy dot -------------------------------------------------------------- */
.candy-dot {
	width: 22px; height: 22px;
	border-radius: 50%;
	background: var(--candy);
	flex: none;
}
.candy-dot--lg { width: 44px; height: 44px; }
.candy-dot--breathe { animation: dot-breathe 6s ease-in-out infinite; }
@keyframes dot-breathe {
	0%, 100% { transform: scale(1) translateY(0); }
	50% { transform: scale(1.05) translateY(-4px); }
}

/* Stick - 15° rounded divider -------------------------------------------- */
.stick {
	display: block;
	width: 74px; height: 8px;
	border-radius: var(--radius-pill);
	background: var(--coral);
	transform: rotate(-15deg);
	transform-origin: left center;
	margin: 6px 0 26px;
	animation: stick-sway 7s ease-in-out infinite;
}
.stick--teal { background: var(--teal); }
.stick--gold { background: var(--gold); }
.stick--center { margin-left: auto; margin-right: auto; transform-origin: center; }
.stick--footer { width: 54px; height: 6px; background: var(--teal); margin: 0 0 14px; }
@keyframes stick-sway {
	0%, 100% { transform: rotate(-15deg); }
	50% { transform: rotate(-12deg); }
}

/* Header ------------------------------------------------------------------ */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(250, 247, 240, .92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--faint);
}
.site-header__inner {
	display: flex; align-items: center; gap: 20px;
	padding-top: 14px; padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none !important; }
.brand__mark { width: 26px; height: auto; animation: lolly-bob 5s ease-in-out infinite; }
@keyframes lolly-bob {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-3px); }
}
.brand__name {
	font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--harbour);
	letter-spacing: -0.01em;
}
.brand__tag {
	font-family: var(--font-head); font-weight: 500; font-size: 11px;
	text-transform: uppercase; letter-spacing: .1em; color: var(--teal);
	border-left: 1px solid var(--faint); padding-left: 10px;
}
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.site-nav > a:not(.btn) {
	font-family: var(--font-head); font-weight: 500; font-size: 15px; color: var(--harbour);
	text-decoration: none !important;
	padding-bottom: 3px;
	border-bottom: 2px solid transparent;
	transition: border-color .18s ease, color .18s ease;
}
.site-nav > a:not(.btn):hover { color: var(--teal); border-bottom-color: var(--teal); }

.nav-toggle {
	display: none;
	margin-left: auto;
	font-family: var(--font-head); font-weight: 600; font-size: 14px;
	background: none; border: 2px solid var(--harbour); color: var(--harbour);
	border-radius: var(--radius-pill); padding: 8px 18px; cursor: pointer;
	align-items: center; gap: 8px;
}
.nav-toggle__bar {
	width: 16px; height: 2px; background: currentColor; border-radius: 2px; position: relative; display: inline-block;
}
.nav-toggle__bar::before, .nav-toggle__bar::after {
	content: ""; position: absolute; left: 0; width: 16px; height: 2px; background: currentColor; border-radius: 2px;
}
.nav-toggle__bar::before { top: -5px; }
.nav-toggle__bar::after { top: 5px; }

@media (max-width: 880px) {
	.brand__tag { display: none; }
	.nav-toggle { display: inline-flex; }
	.site-nav {
		display: none;
		position: absolute; left: 0; right: 0; top: 100%;
		background: var(--cream);
		border-bottom: 1px solid var(--faint);
		flex-direction: column; align-items: flex-start;
		padding: 18px 24px 24px; gap: 18px;
		box-shadow: var(--shadow-card);
	}
	.site-nav.is-open { display: flex; }
}

/* Sections ---------------------------------------------------------------- */
.section { padding: 84px 0; position: relative; }
.section--tight { padding: 56px 0; }
.section--teal-tint { background: var(--teal-tint); }
.section--harbour { background: var(--harbour); color: #fff; }
.section--harbour h2, .section--harbour h3 { color: #fff; }
.section--harbour .muted, .section--harbour p { color: rgba(255,255,255,.78); }
.section__head { max-width: 640px; margin-bottom: 44px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* Ambient candy dots ------------------------------------------------------- */
.ambient { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.ambient .candy-dot { position: absolute; opacity: .5; animation: dot-breathe 7s ease-in-out infinite; }
.ambient .candy-dot:nth-child(2) { animation-delay: -2.4s; animation-duration: 6s; }
.ambient .candy-dot:nth-child(3) { animation-delay: -4.1s; animation-duration: 5s; }

/* Hero ---------------------------------------------------------------------- */
.hero { padding: 72px 0 84px; overflow: hidden; position: relative; }
.hero__inner {
	display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center;
}
.hero__copy h1 { margin-bottom: 18px; }
.hero__copy .lede { margin-bottom: 30px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
@media (max-width: 880px) {
	.hero { padding: 44px 0 60px; }
	.hero__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* The screen - 2:1 frame with rotating mock ads ----------------------------- */
.screen {
	position: relative;
	border-radius: 12px;
	background: #142833;
	padding: 14px;
	box-shadow: var(--shadow-lift);
}
.screen::after {
	/* the pole */
	content: "";
	position: absolute; left: 50%; top: 100%; transform: translateX(-50%);
	width: 16px; height: 34px;
	background: linear-gradient(180deg, #1d3742, #142833);
	border-radius: 0 0 8px 8px;
}
.screen__panel {
	aspect-ratio: 2 / 1;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
	background: var(--harbour);
}
.screen__panel::before {
	/* LED sheen */
	content: "";
	position: absolute; inset: 0; z-index: 5; pointer-events: none;
	background: radial-gradient(120% 90% at 30% 0%, rgba(255,255,255,.10), transparent 55%);
}
.mock-ad {
	position: absolute; inset: 0;
	display: flex; flex-direction: column; justify-content: center;
	padding: 8%;
	opacity: 0;
	transition: opacity 1.1s ease;
}
.mock-ad.is-active { opacity: 1; }
.mock-ad__kicker {
	font-family: var(--font-head); font-weight: 500; font-size: clamp(9px, 1.4vw, 13px);
	text-transform: uppercase; letter-spacing: .14em; margin-bottom: 2%;
}
.mock-ad__title {
	font-family: var(--font-head); font-weight: 700; font-size: clamp(20px, 3.6vw, 40px);
	line-height: 1.05; letter-spacing: -0.01em; margin: 0 0 3%;
}
.mock-ad__line { font-family: var(--font-head); font-weight: 600; font-size: clamp(11px, 1.8vw, 17px); }
.mock-ad--bakery { background: linear-gradient(115deg, #E9C46B, #F3A261); color: #264653; }
.mock-ad--gym { background: linear-gradient(115deg, #264653, #2A9D8E); color: #FAF7F0; }
.mock-ad--mobile { background: linear-gradient(115deg, #E66F51, #F3A261); color: #FAF7F0; }
.mock-ad--house { background: #2A9D8E; color: #FAF7F0; }

.screen__progress {
	position: absolute; left: 0; bottom: 0; height: 4px; width: 100%;
	background: rgba(255,255,255,.15); z-index: 6;
}
.screen__progress-bar {
	height: 100%; width: 0; background: var(--gold);
}
.screen__caption {
	display: flex; align-items: center; gap: 10px;
	margin-top: 26px;
	font-size: 14px; color: var(--muted);
	justify-content: center;
}
.screen__caption .candy-dot { width: 14px; height: 14px; }

/* Value strip ----------------------------------------------------------------- */
.value-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-strip__item {
	background: #fff; border-radius: var(--radius-card); padding: 28px;
	box-shadow: var(--shadow-card);
	display: flex; flex-direction: column; gap: 12px;
}
.value-strip__item h3 { margin: 0; }
.value-strip__item p { margin: 0; color: var(--muted); font-size: 15px; }
@media (max-width: 880px) { .value-strip { grid-template-columns: 1fr; } }

/* Steps ------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step {
	background: #fff; border-radius: var(--radius-card); padding: 26px;
	box-shadow: var(--shadow-card); position: relative;
}
.step__num {
	font-family: var(--font-head); font-weight: 700; font-size: 15px;
	width: 40px; height: 40px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: var(--teal); color: #fff; margin-bottom: 16px;
}
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }
.steps--detailed { grid-template-columns: repeat(2, 1fr); }
.steps--detailed .step { padding: 34px; }
@media (max-width: 880px) { .steps, .steps--detailed { grid-template-columns: 1fr; } }

/* Package cards -------------------------------------------------------------------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.tier {
	background: #fff; border-radius: 16px; padding: 32px;
	box-shadow: var(--shadow-card);
	display: flex; flex-direction: column;
	border: 2px solid transparent;
	position: relative;
}
.tier--featured { border-color: var(--gold); box-shadow: var(--shadow-lift); }
.tier__flag {
	position: absolute; top: -14px; left: 28px;
	background: var(--gold); color: var(--harbour);
	font-family: var(--font-head); font-weight: 600; font-size: 11px;
	letter-spacing: .08em; text-transform: uppercase;
	padding: 5px 14px; border-radius: var(--radius-pill);
	animation: flag-glow 6s ease-in-out infinite;
}
@keyframes flag-glow {
	0%, 100% { box-shadow: 0 0 0 rgba(233, 196, 107, 0); }
	50% { box-shadow: 0 0 18px rgba(233, 196, 107, .8); }
}
.tier__price {
	font-family: var(--font-head); font-weight: 700; font-size: 38px; letter-spacing: -0.01em;
	margin: 18px 0 2px;
}
.tier__cycle { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.tier__list { list-style: none; margin: 0 0 26px; padding: 0; flex: 1; }
.tier__list li {
	display: flex; gap: 10px; align-items: flex-start;
	padding: 8px 0; font-size: 15px;
}
.tier__list .candy-dot { width: 12px; height: 12px; margin-top: 5px; }
.tier__term { font-size: 13px; color: var(--muted); margin: 0 0 18px; }
.tier .btn { align-self: flex-start; }
@media (max-width: 940px) { .tiers { grid-template-columns: 1fr; } }

/* Daypart strip ----------------------------------------------------------------------- */
.dayparts {
	background: var(--harbour); border-radius: 16px; padding: 40px;
	color: #fff;
	display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; align-items: center;
}
.dayparts__intro h2 { color: #fff; margin-bottom: 8px; }
.dayparts__intro p { color: rgba(255,255,255,.75); margin: 0; font-size: 15px; }
.daypart {
	background: rgba(255,255,255,.07); border-radius: var(--radius-card); padding: 24px;
}
.daypart h3 { color: #fff; margin: 12px 0 4px; }
.daypart__window { font-family: var(--font-head); font-weight: 500; font-size: 13px; color: var(--gold); }
.daypart p { color: rgba(255,255,255,.75); font-size: 14px; margin: 10px 0 0; }
.daypart__price { font-family: var(--font-head); font-weight: 700; font-size: 24px; color: #fff; display: block; margin-top: 14px; }
@media (max-width: 940px) { .dayparts { grid-template-columns: 1fr; } }

/* Add-on card ---------------------------------------------------------------------------- */
.addon {
	background: #fff; border-radius: 16px; padding: 34px;
	box-shadow: var(--shadow-card);
	display: flex; gap: 28px; align-items: center; flex-wrap: wrap;
}
.addon__body { flex: 1; min-width: 260px; }
.addon__body h3 { margin-bottom: 6px; }
.addon__body p { margin: 0; color: var(--muted); font-size: 15px; }
.addon__price { font-family: var(--font-head); font-weight: 700; font-size: 30px; white-space: nowrap; }

/* Specs page -------------------------------------------------------------------------------- */
.spec-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
@media (max-width: 880px) { .spec-grid { grid-template-columns: 1fr; } }
.spec-frame {
	aspect-ratio: 2 / 1; border-radius: 10px; background: var(--harbour);
	position: relative; overflow: hidden; box-shadow: var(--shadow-lift);
}
.spec-frame__safe {
	position: absolute; inset: 9.5%;
	border: 2px dashed var(--gold); border-radius: 6px;
	display: flex; align-items: center; justify-content: center;
}
.spec-frame__safe span {
	font-family: var(--font-head); font-weight: 600; font-size: clamp(12px, 2vw, 18px);
	color: #FAF7F0; text-align: center; padding: 0 8%;
}
.spec-frame__dim {
	position: absolute; font-family: var(--font-head); font-weight: 500; font-size: 11px;
	letter-spacing: .08em; color: var(--silver); text-transform: uppercase;
}
.spec-frame__dim--w { bottom: 8px; left: 50%; transform: translateX(-50%); }
.spec-frame__dim--h { right: 8px; top: 50%; transform: translateY(-50%) rotate(90deg); transform-origin: center; }
.spec-list { list-style: none; margin: 0; padding: 0; }
.spec-list li {
	display: flex; gap: 14px; align-items: flex-start;
	padding: 16px 0; border-bottom: 1px solid var(--faint);
}
.spec-list li:last-child { border-bottom: none; }
.spec-list .candy-dot { width: 16px; height: 16px; margin-top: 4px; }
.spec-list strong { font-family: var(--font-head); font-weight: 600; display: block; }
.spec-list span { color: var(--muted); font-size: 15px; }

.do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 880px) { .do-dont { grid-template-columns: 1fr; } }
.do-dont__col { background: #fff; border-radius: var(--radius-card); padding: 30px; box-shadow: var(--shadow-card); }
.do-dont__col h3 { display: flex; align-items: center; gap: 10px; }
.do-dont__col ul { margin: 14px 0 0; padding-left: 20px; color: var(--muted); font-size: 15px; }
.do-dont__col li { margin-bottom: 8px; }
.do-dont__badge {
	width: 26px; height: 26px; border-radius: 50%; flex: none;
	display: inline-flex; align-items: center; justify-content: center;
	color: #fff; font-size: 14px; font-weight: 700;
}
.do-dont__badge--do { background: var(--teal); }
.do-dont__badge--dont { background: var(--coral); }

/* FAQ ------------------------------------------------------------------------------------------ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
	background: #fff; border-radius: var(--radius-card);
	box-shadow: var(--shadow-card); margin-bottom: 14px;
	overflow: hidden;
}
.faq-item summary {
	list-style: none; cursor: pointer;
	display: flex; align-items: center; gap: 14px;
	padding: 20px 24px;
	font-family: var(--font-head); font-weight: 600; font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .candy-dot { width: 14px; height: 14px; transition: transform .25s ease; }
.faq-item[open] summary .candy-dot { transform: rotate(45deg) scale(1.15); }
.faq-item__body { padding: 0 24px 22px 52px; color: var(--muted); font-size: 15px; }
.faq-item__body p { margin: 0 0 .8em; }
.faq-item__body p:last-child { margin-bottom: 0; }

/* Terms ------------------------------------------------------------------------------------------ */
.terms { max-width: 780px; }
.terms h2 { font-size: 22px; margin-top: 48px; }
.terms h2:first-of-type { margin-top: 0; }
.terms ul { color: var(--muted); padding-left: 22px; }
.terms li { margin-bottom: 8px; }
.terms__updated { font-size: 13px; color: var(--muted); }

/* CTA band ---------------------------------------------------------------------------------------- */
.cta-band { background: var(--harbour); padding: 84px 0; text-align: center; }
.cta-band__inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cta-band__dot { margin-bottom: 10px; animation: dot-breathe 6s ease-in-out infinite; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.75); margin-bottom: 26px; }

/* Page hero (interior pages) ------------------------------------------------------------------------ */
.page-hero { padding: 72px 0 22px; }
.page-hero .lede { max-width: 640px; }

/* Footer --------------------------------------------------------------------------------------------- */
.site-footer { background: var(--harbour); color: rgba(255,255,255,.78); padding: 64px 0 36px; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer__inner {
	display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px;
	padding-bottom: 44px;
}
.brand__name--footer { color: #fff; font-size: 26px; display: block; }
.site-footer__tag {
	font-family: var(--font-head); font-weight: 500; font-size: 11px;
	text-transform: uppercase; letter-spacing: .12em; color: var(--gold);
	display: block; margin: 4px 0 14px;
}
.site-footer__line { font-size: 14px; margin: 0; }
.site-footer__nav { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.site-footer__contact .label { color: var(--gold); margin-bottom: 8px; }
.site-footer__legal p { font-size: 13px; color: rgba(255,255,255,.5); margin: 0; }
@media (max-width: 880px) { .site-footer__inner { grid-template-columns: 1fr; gap: 32px; } }

/* Reduced motion - complete static state -------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation: none !important;
		transition: none !important;
	}
	.mock-ad { opacity: 0; }
	.mock-ad:first-of-type, .mock-ad.is-active { opacity: 1; }
	.screen__progress { display: none; }
}
