/* =========================================================
   iMiles — Radar de Emissões (Landing Page)
   HTML/CSS/JS puro. Tema claro.

   Paleta oficial:
   #0090a2 teal (primária)   #22294d navy (texto/escuro)
   #d6a24d dourado (destaque unicórnio)
   #ffffff branco            #212121 grafite
   ========================================================= */

:root {
	/* Paleta em HSL para permitir opacidade via hsl(var(--x) / .5) */
	--teal: 187 100% 32%;      /* #0090a2 */
	--navy: 230 39% 22%;       /* #22294d */
	--gold: 37 63% 57%;        /* #d6a24d */
	--graphite: 0 0% 13%;      /* #212121 */

	--background: 0 0% 100%;
	--foreground: var(--navy);
	--card: 200 33% 98%;
	--primary: var(--teal);
	--primary-foreground: 0 0% 100%;
	--secondary: 195 30% 96%;
	--muted-foreground: 225 12% 46%;
	--border: 205 22% 90%;
	--radius: 1rem;

	--bg: hsl(var(--background));
	--fg: hsl(var(--foreground));
	--card-bg: hsl(var(--card));
	--primary-c: hsl(var(--primary));
	--gold-c: hsl(var(--gold));
	--muted: hsl(var(--muted-foreground));
	--border-c: hsl(var(--border));

	--shadow-sm: 0 1px 2px hsl(var(--navy) / .04), 0 1px 3px hsl(var(--navy) / .06);
	--shadow-md: 0 4px 12px hsl(var(--navy) / .06), 0 2px 4px hsl(var(--navy) / .04);
	--shadow-lg: 0 20px 40px -12px hsl(var(--navy) / .14);
	--shadow-xl: 0 32px 64px -16px hsl(var(--navy) / .2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }

body {
	font-family: "Inter", system-ui, sans-serif;
	background-color: var(--bg);
	color: var(--fg);
	overflow-x: clip;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

.font-display, h1, h2, h3 { font-family: "Sora", system-ui, sans-serif; letter-spacing: -.02em; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

:focus-visible { outline: 2px solid var(--primary-c); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: 48rem; }

.section { padding: 5rem 0; }
.section--alt { background: var(--card-bg); }
.bordered-y { border-top: 1px solid var(--border-c); border-bottom: 1px solid var(--border-c); }
.bordered-t { border-top: 1px solid var(--border-c); }

@media (min-width: 768px) { .section { padding: 6.5rem 0; } }

/* teal -> ciano. Não interpolar teal->dourado: o meio do gradiente vira
   um verde-oliva sujo justamente em cima da palavra mais importante. */
.text-gradient {
	background: linear-gradient(100deg, hsl(var(--teal)), hsl(190 85% 45%));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.grid-glow {
	background-image: radial-gradient(circle at 1px 1px, hsl(var(--teal) / .16) 1px, transparent 0);
	background-size: 32px 32px;
}

/* ---------- Section titles ---------- */
.section-title { max-width: 44rem; margin: 0 auto 3rem; text-align: center; }
.section-title h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; margin: 1rem 0 .75rem; line-height: 1.15; text-wrap: balance; }
.section-title p { color: var(--muted); font-size: 1.0625rem; text-wrap: pretty; }

/* ---------- Buttons / tags ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	border-radius: .75rem; padding: .875rem 1.5rem;
	font-size: .875rem; font-weight: 600; cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
	border: 1px solid transparent;
}
.btn:active { transform: scale(.98); }
.btn--sm { padding: .625rem 1.25rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; border-radius: .875rem; }
.btn--primary {
	background: var(--primary-c); color: hsl(var(--primary-foreground));
	box-shadow: 0 10px 22px -6px hsl(var(--teal) / .5);
}
.btn--primary:hover { box-shadow: 0 16px 30px -6px hsl(var(--teal) / .6); transform: translateY(-2px); }
.btn--light { background: #fff; color: hsl(var(--teal)); box-shadow: 0 12px 28px -8px hsl(var(--navy) / .45); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -8px hsl(var(--navy) / .55); }
.btn i { width: 1rem; height: 1rem; }
.btn--lg i { width: 1.125rem; height: 1.125rem; }

.tag {
	display: inline-flex; align-items: center; gap: .5rem;
	border: 1px solid hsl(var(--teal) / .25);
	background: hsl(var(--teal) / .08);
	color: var(--primary-c);
	border-radius: 9999px; padding: .375rem 1rem;
	font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
}
.tag__icon { width: .875rem; height: .875rem; }
.tag--live { border-color: hsl(var(--gold) / .4); background: hsl(var(--gold) / .12); color: hsl(37 55% 38%); }

.pill {
	display: inline-flex; align-items: center; gap: .5rem;
	border: 1px solid hsl(var(--teal) / .25);
	background: hsl(var(--teal) / .08);
	color: var(--primary-c);
	border-radius: 9999px; padding: .5rem 1.25rem;
	font-size: .875rem; font-weight: 600;
}
.pill i { width: 1rem; height: 1rem; }
.pill--light {
	background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.28);
	text-transform: uppercase; letter-spacing: .05em; font-size: .75rem; padding: .375rem 1rem;
}

/* Ponto "ao vivo" pulsante */
.live-dot {
	width: .5rem; height: .5rem; border-radius: 9999px; background: hsl(var(--gold));
	box-shadow: 0 0 0 0 hsl(var(--gold) / .7); animation: pulse 2s infinite;
	flex: none;
}
.live-dot--sm { width: .375rem; height: .375rem; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,.7); }
@keyframes pulse {
	70% { box-shadow: 0 0 0 .5rem transparent; }
	100% { box-shadow: 0 0 0 0 transparent; }
}

/* ---------- Header ---------- */
.header {
	position: fixed; inset: 0 0 auto 0; z-index: 50;
	border-bottom: 1px solid transparent;
	background: hsl(var(--background) / .75);
	backdrop-filter: blur(12px);
	transition: border-color .3s, box-shadow .3s;
}
.header.is-stuck { border-bottom-color: var(--border-c); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: .875rem 1.25rem; max-width: 80rem; margin: 0 auto; }
.logo img { height: 1.75rem; width: auto; }
.logo--lg img { height: 2.25rem; }
.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop a { font-size: .875rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-desktop a:hover { color: var(--primary-c); }
.nav-desktop-cta { display: none; }
.nav-toggle { background: none; border: none; color: var(--fg); cursor: pointer; display: flex; padding: .25rem; }
.nav-toggle i { width: 1.5rem; height: 1.5rem; }
.nav-mobile { border-top: 1px solid var(--border-c); background: var(--bg); padding: 1rem 1.25rem; }
.nav-mobile a { display: block; padding: .625rem 0; font-size: .9375rem; color: var(--muted); }

@media (min-width: 900px) {
	.nav-desktop, .nav-desktop-cta { display: flex; }
	.nav-toggle { display: none; }
	.nav-mobile { display: none !important; }
	.logo img { height: 2rem; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 8rem 0 4rem; overflow: hidden; }
.hero__glow-grid { position: absolute; inset: 0; opacity: .5; mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%); -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%); }
.hero__blob {
	position: absolute; top: -14rem; right: -10rem; width: 40rem; height: 40rem; border-radius: 9999px;
	background: radial-gradient(circle, hsl(var(--teal) / .16), transparent 65%);
	filter: blur(20px); pointer-events: none;
}
.hero__inner { position: relative; display: grid; gap: 3.5rem; align-items: center; }
.hero__title { font-size: clamp(2.125rem, 4.6vw, 3.25rem); font-weight: 800; line-height: 1.08; margin: 1.25rem 0; text-wrap: balance; }
.hero__sub { color: var(--muted); font-size: 1.0625rem; max-width: 34rem; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 2rem; }
.hero__note { display: inline-flex; align-items: center; gap: .375rem; font-size: .8125rem; color: var(--muted); }
.hero__note i { width: .875rem; height: .875rem; color: #22c55e; }

.hero__stats { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border-c); }
.hero__stat-num { font-family: "Sora", sans-serif; font-size: 1.75rem; font-weight: 800; color: var(--primary-c); line-height: 1; }
.hero__stat-label { font-size: .75rem; color: var(--muted); margin-top: .375rem; max-width: 9rem; }

@media (min-width: 1024px) {
	.hero { padding: 9.5rem 0 5rem; }
	.hero__inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* ---------- Radar (mockup do hero) ---------- */
.radar {
	background: #fff; border: 1px solid var(--border-c); border-radius: 1.25rem;
	box-shadow: var(--shadow-xl); overflow: hidden;
	transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
	transition: transform .6s ease;
}
@media (max-width: 1023px) { .radar { transform: none; } }
.radar:hover { transform: perspective(1400px) rotateY(0deg) rotateX(0deg); }

.radar__bar {
	display: flex; align-items: center; gap: .75rem;
	padding: .875rem 1rem; border-bottom: 1px solid var(--border-c);
	background: linear-gradient(180deg, hsl(var(--card)), #fff);
}
.radar__avatar {
	width: 2.25rem; height: 2.25rem; border-radius: 9999px; flex: none;
	border: 1px solid var(--border-c); background: #fff;
	display: grid; place-items: center; overflow: hidden; padding: .25rem;
}
.radar__id { flex: 1; min-width: 0; }
.radar__name { font-weight: 700; font-size: .875rem; }
.radar__status { display: flex; align-items: center; gap: .375rem; font-size: .6875rem; color: var(--muted); }
.radar__badge {
	font-size: .625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
	color: hsl(37 55% 38%); background: hsl(var(--gold) / .15);
	border: 1px solid hsl(var(--gold) / .35); border-radius: 9999px; padding: .25rem .5rem;
}

.radar__feed { padding: 1rem; display: grid; gap: .75rem; min-height: 22rem; align-content: start; background: hsl(var(--card) / .5); }

.radar-msg {
	background: #fff; border: 1px solid var(--border-c); border-radius: .875rem;
	padding: .875rem; box-shadow: var(--shadow-sm);
	animation: msgIn .5s cubic-bezier(.16,1,.3,1) both;
}
.radar-msg.is-leaving { animation: msgOut .35s ease forwards; }
@keyframes msgIn { from { opacity: 0; transform: translateY(12px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes msgOut { to { opacity: 0; transform: translateY(-8px); } }

.radar-msg__top { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-bottom: .5rem; }
.radar-msg__route { display: flex; align-items: center; gap: .5rem; font-family: "Sora", sans-serif; font-weight: 700; font-size: .9375rem; min-width: 0; }
.radar-msg__route i { width: .875rem; height: .875rem; color: var(--primary-c); flex: none; }
.radar-msg__from { font-size: .6875rem; color: var(--muted); font-weight: 500; margin-bottom: .125rem; }
.radar-msg__uni {
	font-size: .5625rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; white-space: nowrap;
	color: #fff; background: linear-gradient(135deg, hsl(var(--gold)), hsl(37 70% 45%));
	border-radius: 9999px; padding: .1875rem .4375rem; flex: none;
}
.radar-msg__grid { display: flex; align-items: flex-end; justify-content: space-between; gap: .75rem; }
.radar-msg__miles { font-family: "Sora", sans-serif; font-weight: 700; font-size: 1rem; color: var(--fg); }
.radar-msg__miles small { display: block; font-family: "Inter", sans-serif; font-size: .625rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.radar-msg__price { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.0625rem; color: var(--primary-c); text-align: right; }
.radar-msg__price small { display: block; font-family: "Inter", sans-serif; font-size: .625rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.radar-msg__meta { display: flex; gap: .375rem; margin-top: .625rem; padding-top: .625rem; border-top: 1px dashed var(--border-c); flex-wrap: wrap; }
.radar-msg__chip { font-size: .625rem; font-weight: 600; color: var(--muted); background: hsl(var(--secondary)); border-radius: 9999px; padding: .1875rem .5rem; }

.radar__foot {
	display: flex; align-items: center; justify-content: center; gap: .5rem;
	padding: .75rem; border-top: 1px solid var(--border-c);
	font-size: .75rem; color: var(--muted); background: #fff;
}
.radar__foot i { width: .875rem; height: .875rem; color: var(--gold-c); }

/* ---------- Ticker ---------- */
.ticker { background: hsl(var(--navy)); padding: .875rem 0; overflow: hidden; }
.ticker__track { display: flex; gap: 2.5rem; width: max-content; animation: scroll 45s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }
.ticker__item { display: inline-flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.85); font-size: .8125rem; font-weight: 500; white-space: nowrap; }
.ticker__item i { width: .875rem; height: .875rem; color: hsl(var(--gold)); }
.ticker__item b { color: #fff; font-weight: 700; }
.ticker__sep { color: hsl(var(--teal)); font-weight: 700; }

/* ---------- Steps ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.step {
	position: relative; background: #fff; border: 1px solid var(--border-c);
	border-radius: var(--radius); padding: 2rem 1.5rem 1.75rem;
	box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
	overflow: hidden;
}
.step::before {
	content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
	background: linear-gradient(90deg, hsl(var(--teal)), hsl(var(--gold)));
	transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: hsl(var(--teal) / .3); }
.step:hover::before { transform: scaleX(1); }
.step__num { font-family: "Sora", sans-serif; font-size: .75rem; font-weight: 800; color: hsl(var(--teal) / .5); letter-spacing: .1em; }
.step__icon {
	display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: .875rem;
	background: hsl(var(--teal) / .1); color: var(--primary-c); margin: .75rem 0 1rem;
}
.step__icon i { width: 1.375rem; height: 1.375rem; }
.step h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: .5rem; }
.step p { font-size: .9375rem; color: var(--muted); }

/* ---------- Emissões ---------- */
.emissions { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .emissions { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .emissions { grid-template-columns: repeat(3, 1fr); } }

.em {
	position: relative; background: #fff; border: 1px solid var(--border-c);
	border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
	transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s, border-color .35s;
	display: flex; flex-direction: column;
}
.em:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: hsl(var(--teal) / .35); }

.em__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: hsl(var(--secondary)); }
.em__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.em:hover .em__media img { transform: scale(1.07); }
.em__media::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(to top, hsl(var(--navy) / .9) 0%, hsl(var(--navy) / .35) 45%, transparent 75%);
}

.em__flags { position: absolute; top: .75rem; right: .75rem; z-index: 2; display: flex; gap: .375rem; }
.em__flag {
	font-size: .5625rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
	border-radius: 9999px; padding: .25rem .5rem; backdrop-filter: blur(6px);
	color: #fff; background: hsl(var(--navy) / .6); border: 1px solid rgba(255,255,255,.25);
}
.em__flag--uni { background: linear-gradient(135deg, hsl(var(--gold)), hsl(37 70% 45%)); border-color: transparent; }
.em__flag--nac { background: hsl(var(--teal) / .85); border-color: transparent; }

.em__place { position: absolute; left: 1rem; right: 1rem; bottom: .875rem; z-index: 2; color: #fff; }
.em__from { display: flex; align-items: center; gap: .3125rem; font-size: .6875rem; opacity: .85; margin-bottom: .125rem; }
.em__from i { width: .75rem; height: .75rem; }
.em__to { display: flex; align-items: center; gap: .5rem; font-family: "Sora", sans-serif; font-size: 1.25rem; font-weight: 700; line-height: 1.1; }
.em__to i { width: 1rem; height: 1rem; color: hsl(var(--gold)); flex: none; }
.em__code { font-size: .75rem; font-weight: 500; opacity: .7; }

.em__body { padding: 1rem; display: flex; flex-direction: column; gap: .875rem; flex: 1; }
.em__prices { display: flex; align-items: flex-end; justify-content: space-between; gap: .75rem; }
.em__label { font-size: .5625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: .1875rem; }
.em__miles { font-family: "Sora", sans-serif; font-size: 1.375rem; font-weight: 800; line-height: 1; color: var(--fg); }
.em__brl { font-family: "Sora", sans-serif; font-size: 1.375rem; font-weight: 800; line-height: 1; color: var(--primary-c); }
.em__prices > div:last-child { text-align: right; }

.em__foot { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding-top: .875rem; border-top: 1px dashed var(--border-c); margin-top: auto; }
.em__prog { display: flex; align-items: center; gap: .5rem; min-width: 0; }
.em__prog img { width: 1.5rem; height: 1.5rem; object-fit: contain; flex: none; }
.em__prog-txt { min-width: 0; }
.em__prog-name { font-size: .75rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.em__cia { font-size: .625rem; color: var(--muted); text-align: right; white-space: nowrap; }
.em__cia b { display: block; color: var(--fg); font-size: .6875rem; font-weight: 600; }

.emissions__legend {
	display: flex; align-items: flex-start; gap: .5rem; justify-content: center;
	margin-top: 2rem; font-size: .8125rem; color: var(--muted); text-align: center; max-width: 42rem;
	margin-left: auto; margin-right: auto;
}
.emissions__legend i { width: .875rem; height: .875rem; flex: none; margin-top: .1875rem; }
.emissions__cta { text-align: center; margin-top: 2rem; }

/* ---------- Logos dos programas ---------- */
.logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .logos { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .logos { grid-template-columns: repeat(6, 1fr); } }

.logo-item {
	display: grid; place-items: center; height: 5rem; padding: 1rem;
	background: #fff; border: 1px solid var(--border-c); border-radius: .875rem;
	transition: transform .3s, box-shadow .3s, border-color .3s;
}
.logo-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: hsl(var(--teal) / .3); }
.logo-item img {
	max-height: 2.25rem; width: auto; object-fit: contain;
	filter: grayscale(1); opacity: .6; transition: filter .3s, opacity .3s;
}
.logo-item:hover img { filter: grayscale(0); opacity: 1; }

/* ---------- Benefícios ---------- */
.benefits { position: relative; background: hsl(var(--navy)); overflow: hidden; }
.benefits__grid { position: absolute; inset: 0; opacity: .25; }
.benefits__inner { position: relative; }
.benefits__h2 { color: #fff; }
.benefits__p { color: rgba(255,255,255,.7) !important; }

.benefit {
	background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--radius); padding: 1.75rem 1.5rem;
	backdrop-filter: blur(8px); transition: transform .3s, background .3s, border-color .3s;
}
.benefit:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); border-color: hsl(var(--gold) / .45); }
.benefit__icon {
	display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: .75rem;
	background: hsl(var(--teal) / .28); color: #fff; margin-bottom: 1rem;
	border: 1px solid hsl(var(--teal) / .5);
}
.benefit__icon i { width: 1.25rem; height: 1.25rem; }
.benefit h3 { color: #fff; font-size: 1.0625rem; font-weight: 700; margin-bottom: .5rem; }
.benefit p { color: rgba(255,255,255,.7); font-size: .9375rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .75rem; }
.faq__item { background: #fff; border: 1px solid var(--border-c); border-radius: .875rem; overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq__item.is-open { border-color: hsl(var(--teal) / .4); box-shadow: var(--shadow-md); }
.faq__q {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	padding: 1.125rem 1.25rem; background: none; border: none; cursor: pointer;
	font-family: "Sora", sans-serif; font-size: .9375rem; font-weight: 600; color: var(--fg); text-align: left;
}
.faq__q i { width: 1.125rem; height: 1.125rem; color: var(--primary-c); flex: none; transition: transform .3s; }
.faq__item.is-open .faq__q i { transform: rotate(180deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a p { padding: 0 1.25rem 1.25rem; font-size: .9375rem; color: var(--muted); }

/* ---------- CTA final ---------- */
.section--cta { padding-bottom: 5rem; }
.launch {
	position: relative; overflow: hidden; border-radius: 1.5rem; text-align: center;
	padding: 3.5rem 1.5rem; color: #fff;
	background: linear-gradient(135deg, hsl(var(--teal)) 0%, hsl(200 60% 28%) 55%, hsl(var(--navy)) 100%);
	box-shadow: var(--shadow-xl);
}
.launch__glow {
	position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
	width: 40rem; height: 40rem; border-radius: 9999px;
	background: radial-gradient(circle, hsl(var(--gold) / .28), transparent 60%);
	pointer-events: none;
}
.launch__content { position: relative; max-width: 40rem; margin: 0 auto; }
.launch__title { font-size: clamp(1.75rem, 4.5vw, 2.75rem); font-weight: 800; margin: 1.25rem 0 1rem; line-height: 1.1; text-wrap: balance; }
.launch__sub { color: rgba(255,255,255,.82); font-size: 1.0625rem; }
.launch__cta { margin-top: 2rem; }
.launch__note { margin-top: 1rem; font-size: .8125rem; color: rgba(255,255,255,.6); }

@media (min-width: 768px) { .launch { padding: 4.5rem 3rem; } }

/* ---------- Footer ---------- */
.footer { padding: 3.5rem 0 2rem; background: var(--card-bg); }
.footer__grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; } }
.footer__desc { margin-top: 1rem; font-size: .875rem; color: var(--muted); max-width: 26rem; }
.footer__col-title { font-family: "Sora", sans-serif; font-size: .875rem; font-weight: 700; margin-bottom: 1rem; }
.footer__links { list-style: none; display: grid; gap: .625rem; }
.footer__links a { font-size: .875rem; color: var(--muted); transition: color .2s; }
.footer__links a:hover { color: var(--primary-c); }
.footer__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border-c); font-size: .8125rem; color: var(--muted); }
.footer__disclaimer { margin-top: .75rem; font-size: .75rem; opacity: .8; max-width: 52rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
	.reveal { opacity: 1; transform: none; }
	.ticker__track { animation: none; }
	.radar { transform: none; }
}
