*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

html {
	scroll-behavior: smooth
}

:root {
	--ink: #0a0a0f;
	--ink2: #12121a;
	--white: #ffffff;
	--off: #f4f3f0;
	--blue: #1b5fff;
	--blue-bright: #4b7fff;
	--green: #00d68f;
	--red: #ff4d6d;
	--amber: #ffb800;
	--gray-1: #f7f7f8;
	--gray-2: #ebebee;
	--gray-3: #d4d4da;
	--gray-4: #9898a8;
	--gray-5: #65657a;
	--gray-6: #3a3a4a;
	--r: 16px;
	--r-xl: 24px;
	--r-2xl: 32px;
	--sh: 0 2px 8px rgba(0, 0, 0, .06), 0 0 1px rgba(0, 0, 0, .08);
	--font-d: 'Bricolage Grotesque', sans-serif;
	--font-b: 'Inter', sans-serif;
}

body {
	font-family: var(--font-b);
	background: #fff;
	color: var(--ink);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden
}

a {
	text-decoration: none;
	color: inherit
}

img {
	max-width: 100%
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 28px
}

/* ═══════════ NAV ═══════════ */
nav {
	position: sticky;
	top: 0;
	z-index: 200;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(20px) saturate(1.6);
	border-bottom: 1px solid var(--gray-2)
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 28px
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-d);
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--ink);
	letter-spacing: -.02em
}

.nav-logo-icon {
	width: 34px;
	height: 34px;
	background: var(--blue);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(27, 95, 255, .35)
}

.nav-logo-icon svg {
	width: 17px;
	height: 17px;
	stroke: #fff;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round
}

.nav-badge {
	font-size: .72rem;
	color: var(--gray-4);
	font-weight: 500;
	background: var(--gray-1);
	border: 1px solid var(--gray-2);
	padding: 2px 8px;
	border-radius: 20px;
	font-family: var(--font-b)
}

.nav-links {
	display: flex;
	gap: 32px;
	list-style: none
}

.nav-links a {
	font-size: .9rem;
	font-weight: 500;
	color: var(--gray-5);
	transition: color .15s;
	font-family: var(--font-b)
}

.nav-links a:hover {
	color: var(--ink)
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-d);
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: all .22s cubic-bezier(.25, .8, .25, 1);
	border-radius: 50px;
	font-size: .95rem;
	padding: 11px 24px;
	text-decoration: none
}

.btn-primary {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 4px 18px rgba(27, 95, 255, .38)
}

.btn-primary:hover {
	background: #1450e8;
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(27, 95, 255, .5)
}

.btn-ghost {
	background: transparent;
	color: rgba(255, 255, 255, .75);
	border: 1.5px solid rgba(255, 255, 255, .18)
}

.btn-ghost:hover {
	border-color: rgba(255, 255, 255, .4);
	transform: translateY(-1px)
}

.btn-white {
	background: #fff;
	color: var(--blue);
	font-weight: 800;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .15)
}

.btn-white:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, .22)
}

.btn-lg {
	padding: 15px 32px;
	font-size: 1rem
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 4px
}

.hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--gray-6);
	border-radius: 2px;
	transition: all .25s
}

.hamburger.open span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.open span:nth-child(2) {
	opacity: 0
}

.hamburger.open span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-menu {
	display: none;
	flex-direction: column;
	background: #fff;
	border-bottom: 1px solid var(--gray-2);
	padding: 8px 28px 16px
}

.mobile-menu.open {
	display: flex
}

.mobile-menu a {
	font-size: .97rem;
	font-weight: 500;
	color: var(--gray-6);
	padding: 11px 0;
	border-bottom: 1px solid var(--gray-1);
	font-family: var(--font-b)
}

.mobile-menu a:last-child {
	border: none
}

/* ═══════════ HERO ═══════════ */
#hero {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #060b1a;
}

/* BG image */
#hero .hero-bg-img {
	position: absolute;
	inset: 0;
	background-image: url(assets/imageshome.png);
	background-size: cover;
	background-position: center;
	opacity: .12;
	z-index: 0;
}

/* gradient veil */
#hero .hero-veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(ellipse 80% 60% at 15% 50%, rgba(27, 95, 255, .28) 0%, transparent 60%),
		radial-gradient(ellipse 60% 50% at 85% 25%, rgba(75, 127, 255, .14) 0%, transparent 60%),
		linear-gradient(160deg, rgba(6, 11, 26, .5) 0%, rgba(6, 11, 26, .85) 100%);
}

/* canvas for particles */
#heroCanvas {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none
}

/* subtle grid */
#hero .hero-grid-lines {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
	background-size: 72px 72px;
}

.hero-content {
	position: relative;
	z-index: 5;
	padding: 100px 0 80px
}

.hero-inner {
	display: grid;
	grid-template-columns: 1fr 650px;
	gap: 35px;
	align-items: center
}

/* left */
.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 30px;
	padding: 7px 16px;
	font-size: .76rem;
	font-weight: 600;
	color: rgba(255, 255, 255, .65);
	margin-bottom: 30px;
	font-family: var(--font-b);
	letter-spacing: .1em;
	text-transform: uppercase
}

.pulse-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--green);
	flex-shrink: 0;
	animation: blink 2.2s infinite
}

@keyframes blink {

	0%,
	100% {
		opacity: 1;
		box-shadow: 0 0 0 0 rgba(0, 214, 143, .4)
	}

	60% {
		opacity: .4;
		box-shadow: 0 0 0 6px rgba(0, 214, 143, 0)
	}
}

.hero-headline {
	font-family: var(--font-d);
	font-size: clamp(2.8rem, 4.8vw, 4.2rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -.03em;
	color: #fff;
	margin-bottom: 0
}

.hero-headline .line2 {
	display: block;
	color: #fff
}

.hero-headline .accent {
	display: block;
	color: #7eb3ff
}

.hero-headline em {
	font-style: italic;
	font-weight: 300;
	opacity: .7
}

.hero-divider {
	width: 52px;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), transparent);
	border-radius: 2px;
	margin: 26px 0
}

.hero-sub {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, .52);
	max-width: 460px;
	line-height: 1.85;
	font-weight: 400;
	margin-bottom: 36px
}

.hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 38px
}

.hero-tag {
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 8px;
	padding: 5px 12px;
	font-size: .8rem;
	color: rgba(255, 255, 255, .45);
	font-family: var(--font-b);
	font-weight: 500
}

.hero-tag.hi {
	background: rgba(27, 95, 255, .18);
	border-color: rgba(75, 127, 255, .32);
	color: #7eb3ff
}

.hero-ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 28px
}

.hero-note {
	font-size: .78rem;
	color: rgba(255, 255, 255, .25);
	letter-spacing: .04em
}

/* right — chat card */
.chat-card {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 40px 100px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .05);
	backdrop-filter: blur(16px)
}

.chat-top {
	background: rgba(27, 95, 255, .28);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 10px
}

.chat-dots {
	display: flex;
	gap: 6px
}

.chat-dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%
}

.chat-dots span:nth-child(1) {
	background: #ff5f57
}

.chat-dots span:nth-child(2) {
	background: #febc2e
}

.chat-dots span:nth-child(3) {
	background: #28c840
}

.chat-url {
	flex: 1;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 8px;
	padding: 5px 12px;
	font-size: .72rem;
	color: rgba(255, 255, 255, .38);
	text-align: center;
	font-family: monospace
}

.chat-body {
	padding: 22px
}

.chat-header-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px
}

.chat-av {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: linear-gradient(135deg, #1b5fff, #4b7fff);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-d);
	font-weight: 800;
	color: #fff;
	font-size: 1rem;
	box-shadow: 0 4px 14px rgba(27, 95, 255, .4)
}

.chat-meta .name {
	font-family: var(--font-d);
	font-weight: 700;
	font-size: .95rem;
	color: #7eb3ff
}

.chat-meta .status {
	font-size: .74rem;
	color: var(--green);
	font-family: var(--font-b)
}

.chat-msgs {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 18px
}

.msg {
	max-width: 85%;
	padding: 11px 15px;
	border-radius: 16px;
	font-size: .86rem;
	line-height: 1.55;
	font-family: var(--font-b)
}

.msg.user {
	background: var(--blue);
	color: #fff;
	align-self: flex-end;
	border-bottom-right-radius: 4px;
	box-shadow: 0 4px 12px rgba(27, 95, 255, .35)
}

.msg.bot {
	background: rgba(255, 255, 255, .07);
	color: rgba(255, 255, 255, .8);
	align-self: flex-start;
	border-bottom-left-radius: 4px;
	border: 1px solid rgba(255, 255, 255, .1)
}

.chat-input-row {
	display: flex;
	gap: 8px
}

.chat-input-row input {
	flex: 1;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 12px;
	padding: 10px 14px;
	font-size: .84rem;
	font-family: var(--font-b);
	color: rgba(255, 255, 255, .5);
	outline: none
}

.chat-input-row input::placeholder {
	color: rgba(255, 255, 255, .22)
}

.chat-input-row button {
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 12px;
	padding: 10px 16px;
	cursor: pointer;
	font-size: .86rem;
	font-weight: 700;
	transition: background .15s;
	box-shadow: 0 4px 12px rgba(27, 95, 255, .35);
	font-family: var(--font-b)
}

.chat-input-row button:hover {
	background: #1450e8
}

.hero-chips {
	display: flex;
	gap: 10px;
	margin-top: 14px
}

.hero-chip {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .09);
	border-radius: 12px;
	padding: 10px 16px;
	flex: 1;
	text-align: center
}

.hero-chip-num {
	font-family: var(--font-d);
	font-size: 1.1rem;
	font-weight: 800;
	color: #fff
}

.hero-chip-label {
	font-size: .72rem;
	color: rgba(255, 255, 255, .32);
	font-family: var(--font-b)
}

/* ═══════════ STATS BAR ═══════════ */
.stats-bar {
	background: var(--off);
	border-top: 1px solid var(--gray-2);
	border-bottom: 1px solid var(--gray-2);
	padding: 52px 0
}

.stats-label {
	text-align: center;
	font-family: var(--font-b);
	font-size: .78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: var(--gray-4);
	margin-bottom: 36px
}

.stats-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px
}

.stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 30px 20px;
	background: #fff;
	border-radius: var(--r-xl);
	border: 1px solid var(--gray-2);
	box-shadow: var(--sh);
	transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.stat:hover {
	border-color: #bfd3ff;
	box-shadow: 0 12px 36px rgba(27, 95, 255, .1);
	transform: translateY(-4px)
}

.stat strong {
	font-family: var(--font-d);
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--blue);
	letter-spacing: -.04em
}

.stat span {
	font-size: .88rem;
	color: var(--gray-4);
	font-family: var(--font-b)
}

/* ═══════════ GENERAL ═══════════ */
.section {
	padding: 100px 0
}

.sec-pad {
	padding-top: 100px;
	padding-bottom: 100px
}

.eyebrow {
	display: inline-block;
	font-family: var(--font-b);
	font-size: .78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: var(--blue);
	margin-bottom: 14px
}

.section-title {
	font-family: var(--font-d);
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1.2;
	color: var(--ink);
	margin-bottom: 18px
}

.section-desc {
	font-size: 1.05rem;
	color: var(--gray-4);
	max-width: 520px;
	line-height: 1.8;
	font-family: var(--font-b)
}

.text-center {
	text-align: center
}

.text-center .section-desc {
	margin: 0 auto
}

/* ═══════════ SHIFT ═══════════ */
#shift {
	background: #fff
}

.shift-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 56px
}

.shift-card {
	border-radius: var(--r-2xl);
	padding: 38px;
	border: 1px solid var(--gray-2);
	transition: transform .35s cubic-bezier(.25, .8, .25, 1), box-shadow .35s, border-color .35s
}

.shift-card.bad {
	background: var(--gray-1)
}

.shift-card.bad:hover {
	border-color: #ffb3bb;
	box-shadow: 0 16px 48px rgba(255, 77, 109, .08);
	transform: translateY(-5px)
}

.shift-card.good {
	background: var(--ink);
	border-color: rgba(255, 255, 255, .06)
}

.shift-card.good:hover {
	box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
	transform: translateY(-5px)
}

.shift-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 26px
}

.shift-label {
	font-family: var(--font-d);
	font-size: 1.1rem;
	font-weight: 700
}

.shift-card.bad .shift-label {
	color: var(--gray-5)
}

.shift-card.good .shift-label {
	color: rgba(255, 255, 255, .9)
}

.shift-badge {
	font-family: var(--font-b);
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	padding: 3px 10px;
	border-radius: 20px
}

.shift-card.bad .shift-badge {
	background: #ffeef0;
	color: var(--red)
}

.shift-card.good .shift-badge {
	background: rgba(0, 214, 143, .1);
	color: var(--green)
}

.shift-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 15px
}

.shift-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1rem;
	line-height: 1.5;
	font-family: var(--font-b)
}

.shift-card.bad .shift-list li {
	color: var(--gray-5)
}

.shift-card.good .shift-list li {
	color: rgba(255, 255, 255, .75)
}

.li-red {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--red);
	flex-shrink: 0
}

.li-check {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	flex-shrink: 0;
	border: 1.5px solid rgba(75, 127, 255, .5);
	display: flex;
	align-items: center;
	justify-content: center
}

.li-check svg {
	width: 10px;
	height: 10px;
	stroke: #7eb3ff;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round
}

.li-x {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	flex-shrink: 0;
	border: 1.5px solid rgba(255, 77, 109, .4);
	display: flex;
	align-items: center;
	justify-content: center
}

.li-x svg {
	width: 10px;
	height: 10px;
	stroke: var(--red);
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round
}

/* ═══════════════════════════════════════════
         HOW IT WORKS — EXACT GAMMA REPLICA
         ═══════════════════════════════════════════ */
#how {
	background: linear-gradient(180deg, #c8e8f8 0%, #daeef9 12%, #eaf5fb 28%, #f3f9fd 50%, #f9fcfe 72%, #ffffff 100%);
	padding: 90px 0 110px;
	position: relative;
	overflow: hidden;
}

/* sparkle stars exactly like screenshot */
.how-sparkle {
	position: absolute;
	top: 28px;
	left: 50%;
	transform: translateX(-50%);
	width: 500px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
	z-index: 1
}

.how-sparkle-star {
	font-size: 1.3rem;
	color: #1b5fff;
	opacity: .55;
	animation: sparkT 3s ease-in-out infinite
}

.how-sparkle-star.sm {
	font-size: .75rem;
	opacity: .4;
	animation-delay: .9s
}

@keyframes sparkT {

	0%,
	100% {
		opacity: .55;
		transform: scale(1) rotate(0deg)
	}

	50% {
		opacity: .2;
		transform: scale(1.4) rotate(15deg)
	}
}

.how-heading-wrap {
	text-align: center;
	margin-bottom: 80px;
	position: relative;
	z-index: 2
}

.how-main-title {
	font-family: var(--font-d);
	font-size: clamp(2rem, 4.2vw, 3.2rem);
	font-weight: 800;
	color: #0d1b3e;
	letter-spacing: -.03em;
	line-height: 1.18;
}

/* Each row */
.how-rows {
	display: flex;
	flex-direction: column;
	gap: 120px;
	position: relative;
	z-index: 2
}

.how-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	opacity: 0;
	transform: translateY(44px);
	transition: opacity .72s cubic-bezier(.22, 1, .36, 1), transform .72s cubic-bezier(.22, 1, .36, 1);
}

.how-row.row-in {
	opacity: 1;
	transform: none
}

/* Text right (odd rows: visual left, text right) */
.how-row .how-text {
	order: 2
}

.how-row .how-visual {
	order: 1
}

/* Text left (even rows: text left, visual right) */
.how-row.flip .how-text {
	order: 1
}

.how-row.flip .how-visual {
	order: 2
}

/* ── Visual card (the big mock-screen card) ── */
.how-visual {
	width: 100%;
	height: 400px;
	overflow: hidden;
	border-radius: 24px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .06)
}

.how-visual video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

/* macOS bar */
.how-mac-bar {
	background: linear-gradient(180deg, #f6f6f6 0%, #efefef 100%);
	border-bottom: 1px solid #e0e0e0;
	padding: 11px 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.how-mac-dots {
	display: flex;
	gap: 6px
}

.how-mac-dots span {
	width: 11px;
	height: 11px;
	border-radius: 50%
}

.how-mac-dots span:nth-child(1) {
	background: #ff5f57
}

.how-mac-dots span:nth-child(2) {
	background: #febc2e
}

.how-mac-dots span:nth-child(3) {
	background: #28c840
}

.how-mac-url {
	flex: 1;
	text-align: center;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 7px;
	padding: 4px 12px;
	font-size: .7rem;
	font-family: monospace;
	color: #aaa
}

.how-screen-body {
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-height: 230px
}

/* Step 1 visuals */
.s1-input {
	background: #f5f8ff;
	border: 1.5px solid rgba(27, 95, 255, .18);
	border-radius: 12px;
	padding: 15px 18px;
	font-size: .9rem;
	color: #1a2a5e;
	font-family: var(--font-b);
	position: relative;
	box-shadow: 0 2px 8px rgba(27, 95, 255, .06);
}

.s1-input::after {
	content: '|';
	color: var(--blue);
	font-weight: 700;
	animation: cur 1.1s infinite;
	margin-left: 2px
}

@keyframes cur {

	0%,
	100% {
		opacity: 1
	}

	50% {
		opacity: 0
	}
}

.s1-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px
}

.s1-tag {
	background: rgba(27, 95, 255, .08);
	border: 1px solid rgba(27, 95, 255, .16);
	border-radius: 20px;
	padding: 4px 13px;
	font-size: .76rem;
	color: var(--blue);
	font-family: var(--font-b);
	font-weight: 500
}

.s1-brands-label {
	font-size: .72rem;
	color: var(--gray-4);
	font-family: var(--font-b)
}

.s1-brands {
	display: flex;
	gap: 7px;
	flex-wrap: wrap
}

.s1-brand {
	background: #fff;
	border: 1px solid var(--gray-2);
	border-radius: 8px;
	padding: 6px 13px;
	font-size: .78rem;
	color: var(--gray-5);
	font-family: var(--font-b);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .04)
}

/* Step 2 visuals */
.s2-scan {
	background: rgba(27, 95, 255, .05);
	border: 1px solid rgba(27, 95, 255, .14);
	border-radius: 13px;
	padding: 18px
}

.s2-label {
	font-size: .75rem;
	color: var(--gray-4);
	font-family: var(--font-b);
	margin-bottom: 10px
}

.s2-bar {
	height: 5px;
	background: #e8edf8;
	border-radius: 3px;
	overflow: hidden;
	margin-bottom: 13px
}

.s2-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--blue), #7eb3ff);
	border-radius: 3px;
	animation: sfill 2.5s ease-in-out infinite alternate
}

@keyframes sfill {
	from {
		width: 20%
	}

	to {
		width: 95%
	}
}

.s2-matches {
	display: flex;
	flex-direction: column;
	gap: 8px
}

.s2-match {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: .8rem;
	color: var(--gray-5);
	font-family: var(--font-b)
}

.s2-match-name {
	min-width: 120px
}

.s2-match-bar {
	flex: 1;
	height: 4px;
	background: #e8edf8;
	border-radius: 2px;
	overflow: hidden
}

.s2-match-fill {
	height: 100%;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--blue), #7eb3ff)
}

.s2-match-pct {
	font-size: .76rem;
	font-weight: 600;
	min-width: 30px;
	text-align: right
}

.s2-result {
	background: rgba(0, 214, 143, .07);
	border: 1px solid rgba(0, 214, 143, .28);
	border-radius: 10px;
	padding: 12px 16px;
	font-size: .84rem;
	color: #00956a;
	font-family: var(--font-b);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 8px
}

.s2-result svg {
	width: 15px;
	height: 15px;
	stroke: #00956a;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex-shrink: 0
}

/* Step 3 visuals */
.s3-list {
	display: flex;
	flex-direction: column;
	gap: 9px
}

.s3-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: #f9fafb;
	border: 1px solid #eaecf0;
	border-radius: 11px;
	padding: 13px 15px;
	font-size: .84rem;
	color: var(--gray-5);
	font-family: var(--font-b);
	line-height: 1.55;
	transition: all .25s
}

.s3-item.done {
	border-color: rgba(0, 214, 143, .28);
	background: rgba(0, 214, 143, .04)
}

.s3-item.done .s3-num {
	background: var(--green);
	border-color: var(--green);
	color: #fff
}

.s3-item.active {
	border-color: rgba(27, 95, 255, .28);
	background: rgba(27, 95, 255, .05)
}

.s3-item.active .s3-num {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
	animation: sp 1.5s infinite
}

@keyframes sp {

	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(27, 95, 255, .4)
	}

	50% {
		box-shadow: 0 0 0 5px rgba(27, 95, 255, 0)
	}
}

.s3-num {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #dde0e8;
	color: var(--gray-4);
	font-size: .7rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
	transition: all .3s
}

/* Step 4 visuals */
.s4-success {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px 20px;
	gap: 14px;
	text-align: center
}

.s4-check {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: rgba(0, 214, 143, .1);
	border: 2px solid rgba(0, 214, 143, .35);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: cpop .5s cubic-bezier(.22, 1, .36, 1) both
}

@keyframes cpop {
	from {
		transform: scale(0);
		opacity: 0
	}

	to {
		transform: scale(1);
		opacity: 1
	}
}

.s4-check svg {
	width: 32px;
	height: 32px;
	stroke: #00956a;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round
}

.s4-title {
	font-family: var(--font-d);
	font-size: 1.4rem;
	font-weight: 800;
	color: #0d1b3e
}

.s4-sub {
	font-size: .86rem;
	color: var(--gray-4);
	font-family: var(--font-b);
	max-width: 260px;
	line-height: 1.65
}

.s4-stats {
	display: flex;
	gap: 22px;
	margin-top: 8px
}

.s4-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px
}

.s4-stat strong {
	font-family: var(--font-d);
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--blue)
}

.s4-stat span {
	font-size: .7rem;
	color: var(--gray-4);
	font-family: var(--font-b)
}

/* ── Text side ── */
.how-text {}

.how-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 18px;
}

.how-badge-icon {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.how-badge-icon svg {
	width: 12px;
	height: 12px;
	stroke: #fff;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round
}

.how-badge-label {
	font-family: var(--font-d);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: .02em
}

.how-heading {
	font-family: var(--font-d);
	font-size: 50px;
	font-weight: 800;
	color: #0d1b3e;
	line-height: 1.26;
	letter-spacing: -.025em;
	margin-bottom: 20px;
}

.how-bullets {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 11px;
	margin-bottom: 30px
}

.how-bullets li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: .93rem;
	color: var(--gray-5);
	line-height: 1.65;
	font-family: var(--font-b);
}

.how-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 7px
}

.d-red {
	background: #ff4d6d
}

.d-blue {
	background: var(--blue)
}

.d-green {
	background: var(--green)
}

.d-amber {
	background: var(--amber)
}

/* Icon bullet version */
.how-icon-bullet {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: .93rem;
	color: var(--gray-5);
	line-height: 1.65;
	font-family: var(--font-b);
	margin-bottom: 11px;
}

.how-icon-bullet:last-child {
	margin-bottom: 0
}

.how-ib-icon {
	width: 32px;
	height: 32px;
	border-radius: 9px;
	flex-shrink: 0;
	margin-top: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.how-ib-icon svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round
}

.how-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--blue);
	color: #fff;
	font-family: var(--font-d);
	font-weight: 700;
	font-size: .88rem;
	padding: 10px 22px;
	border-radius: 50px;
	transition: all .22s;
	box-shadow: 0 4px 14px rgba(27, 95, 255, .35);
	margin-top: 4px;
}

.how-cta:hover {
	background: #1450e8;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(27, 95, 255, .45)
}

.how-cta svg {
	width: 14px;
	height: 14px;
	stroke: #fff;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round
}

/* Step number big accent */
.how-step-num {
	font-family: var(--font-d);
	font-size: 4.5rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.05em;
	background: linear-gradient(135deg, rgba(27, 95, 255, .18), rgba(75, 127, 255, .06));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
	display: block;
}

/* ═══════════ ISSUES ═══════════ */
#issues {
	background: var(--off)
}

.issues-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 56px
}

.issue {
	background: #fff;
	border: 1px solid var(--gray-2);
	border-radius: var(--r-xl);
	padding: 26px;
	cursor: default;
	transition: border-color .3s, background .3s, box-shadow .3s, transform .3s
}

.issue:hover {
	border-color: #bfd3ff;
	background: var(--blue);
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(27, 95, 255, .25)
}

.issue-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: rgba(27, 95, 255, .08);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	transition: background .3s
}

.issue:hover .issue-icon {
	background: rgba(255, 255, 255, .2)
}

.issue-icon svg {
	width: 21px;
	height: 21px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: stroke .3s
}

.issue:hover .issue-icon svg {
	stroke: #fff
}

.issue h3 {
	font-family: var(--font-d);
	font-size: 1rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 5px;
	transition: color .3s
}

.issue:hover h3 {
	color: #fff
}

.issue p {
	font-size: .86rem;
	color: var(--gray-4);
	line-height: 1.55;
	transition: color .3s;
	font-family: var(--font-b)
}

.issue:hover p {
	color: rgba(255, 255, 255, .75)
}

/* ═══════════ WHY PETE ═══════════ */
#why {
	background: #fff
}

.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 56px
}

.why-card {
	border-radius: var(--r-2xl);
	padding: 38px 34px;
	transition: transform .35s cubic-bezier(.25, .8, .25, 1), box-shadow .35s, border-color .35s
}

.why-card.generic {
	background: var(--gray-1);
	border: 1px solid var(--gray-2)
}

.why-card.generic:hover {
	border-color: #ffb3bb;
	box-shadow: 0 14px 44px rgba(255, 77, 109, .07);
	transform: translateY(-4px)
}

.why-card.pete {
	background: var(--ink);
	border: 1px solid rgba(255, 255, 255, .06);
	position: relative;
	overflow: hidden
}

.why-card.pete::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -20%;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(27, 95, 255, .2), transparent 70%);
	pointer-events: none
}

.why-card.pete:hover {
	box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
	transform: translateY(-5px)
}

.why-title {
	font-family: var(--font-d);
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 24px
}

.why-card.generic .why-title {
	color: var(--gray-4)
}

.why-card.pete .why-title {
	color: rgba(255, 255, 255, .9);
	position: relative
}

.why-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 15px;
	position: relative
}

.why-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1rem;
	line-height: 1.5;
	font-family: var(--font-b)
}

.why-card.generic .why-list li {
	color: var(--gray-4)
}

.why-card.pete .why-list li {
	color: rgba(255, 255, 255, .75)
}

/* ═══════════ AUTHORITY ═══════════ */
#authority {
	background: var(--off)
}

.authority-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: start
}

.authority-left p {
	font-size: 1.05rem;
	color: var(--gray-5);
	line-height: 1.8;
	margin-bottom: 24px;
	max-width: 440px;
	font-family: var(--font-b)
}

.yt-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	color: var(--ink);
	border-radius: 50px;
	border: 1px solid var(--gray-2);
	padding: 11px 20px;
	font-weight: 600;
	font-size: .88rem;
	transition: all .22s;
	box-shadow: var(--sh);
	margin-top: 30px;
	font-family: var(--font-b)
}

.yt-btn:hover {
	border-color: #ff4444;
	color: #ff4444;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(255, 68, 68, .15)
}

.auth-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}

.auth-stat {
	background: #fff;
	border: 1px solid var(--gray-2);
	border-radius: var(--r-xl);
	padding: 30px 22px;
	text-align: center;
	box-shadow: var(--sh);
	transition: all .3s
}

.auth-stat:hover {
	border-color: #bfd3ff;
	box-shadow: 0 10px 32px rgba(27, 95, 255, .1);
	transform: translateY(-3px)
}

.auth-stat strong {
	display: block;
	font-family: var(--font-d);
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--blue);
	letter-spacing: -.04em;
	margin-bottom: 5px
}

.auth-stat span {
	font-size: .88rem;
	color: var(--gray-4);
	font-family: var(--font-b)
}

/* ═══════════ TESTIMONIALS ═══════════ */
#testimonials {
	background: #fff
}

.test-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 56px
}

.test-card {
	background: var(--gray-1);
	border: 1px solid var(--gray-2);
	border-radius: var(--r-xl);
	padding: 32px;
	transition: border-color .3s, box-shadow .3s, transform .3s, background .3s
}

.test-card:hover {
	border-color: #bfd3ff;
	box-shadow: 0 14px 42px rgba(27, 95, 255, .1);
	transform: translateY(-5px);
	background: #fff
}

.test-stars {
	color: var(--amber);
	font-size: 1.05rem;
	letter-spacing: 3px;
	margin-bottom: 18px
}

.test-card blockquote {
	font-size: 1rem;
	color: var(--gray-6);
	line-height: 1.8;
	font-style: italic;
	margin-bottom: 22px;
	font-family: var(--font-b)
}

.test-author strong {
	display: block;
	font-family: var(--font-d);
	font-size: 1rem;
	font-weight: 700;
	color: var(--ink);
	font-style: normal
}

.test-author span {
	font-size: .84rem;
	color: var(--gray-4);
	font-family: var(--font-b)
}

/* ═══════════ FAQ ═══════════ */
#faq {
	background: var(--off)
}

.faq-wrap {
	max-width: 700px;
	margin: 56px auto 0;
	display: flex;
	flex-direction: column;
	gap: 9px
}

.faq-item {
	background: #fff;
	border: 1px solid var(--gray-2);
	border-radius: var(--r);
	overflow: hidden;
	transition: border-color .2s, box-shadow .2s
}

.faq-item:hover {
	border-color: #bfd3ff;
	box-shadow: 0 4px 16px rgba(27, 95, 255, .08)
}

.faq-btn {
	width: 100%;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font-d);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--gray-6);
	padding: 22px 26px;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background .15s, color .15s;
	gap: 12px
}

.faq-btn:hover {
	background: rgba(27, 95, 255, .04)
}

.faq-icon {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--gray-1);
	border: 1px solid var(--gray-2);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.15rem;
	line-height: 1;
	transition: all .25s;
	color: var(--gray-4)
}

.faq-btn.active {
	color: var(--blue)
}

.faq-btn.active .faq-icon {
	background: rgba(27, 95, 255, .08);
	border-color: #bfd3ff;
	color: var(--blue);
	transform: rotate(45deg)
}

.faq-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height .38s ease
}

.faq-body.open {
	max-height: 220px
}

.faq-body p {
	padding: 0 26px 22px;
	font-size: .97rem;
	color: var(--gray-5);
	line-height: 1.8;
	font-family: var(--font-b)
}

/* ═══════════ CTA ═══════════ */
#cta {
	background: var(--ink);
	padding: 130px 0;
	position: relative;
	overflow: hidden
}

#cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(ellipse, rgba(27, 95, 255, .18), transparent 60%);
	pointer-events: none
}

#cta::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
	background-size: 70px 70px;
	pointer-events: none
}

.cta-box {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 1
}

.cta-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 30px;
	padding: 7px 16px;
	font-size: .8rem;
	font-weight: 600;
	color: rgba(255, 255, 255, .55);
	margin-bottom: 28px;
	font-family: var(--font-b);
	letter-spacing: .08em;
	text-transform: uppercase
}

.cta-box h2 {
	font-family: var(--font-d);
	font-size: clamp(2.4rem, 4.5vw, 3.8rem);
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1.15;
	color: #fff;
	margin-bottom: 18px
}

.cta-box h2 em {
	font-style: italic;
	color: #7eb3ff
}

.cta-box p {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, .48);
	max-width: 440px;
	margin: 0 auto 38px;
	line-height: 1.8;
	font-family: var(--font-b)
}

.cta-perks {
	display: flex;
	gap: 24px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 26px
}

.cta-perk {
	font-size: .84rem;
	color: rgba(255, 255, 255, .38);
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-b)
}

.cta-perk::before {
	content: '✓';
	color: var(--green);
	font-weight: 700
}

/* ═══════════ FOOTER ═══════════ */
footer {
	background: var(--ink2);
	border-top: 1px solid rgba(255, 255, 255, .07);
	padding: 28px 0
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-d);
	font-weight: 800;
	font-size: .95rem;
	color: rgba(255, 255, 255, .9)
}

.footer-copy {
	font-size: .8rem;
	color: rgba(255, 255, 255, .25);
	font-family: var(--font-b)
}

.footer-links {
	display: flex;
	gap: 22px
}

.footer-links a {
	font-size: .84rem;
	color: rgba(255, 255, 255, .38);
	transition: color .15s;
	font-family: var(--font-b)
}

.footer-links a:hover {
	color: rgba(255, 255, 255, .75)
}

/* ═══════════ SCROLL REVEALS ═══════════ */
@keyframes hFU {
	from {
		opacity: 0;
		transform: translateY(32px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.hero-eyebrow {
	animation: hFU .7s cubic-bezier(.22, 1, .36, 1) .1s both
}

.hero-headline {
	animation: hFU .8s cubic-bezier(.22, 1, .36, 1) .2s both
}

.hero-divider {
	animation: hFU .8s cubic-bezier(.22, 1, .36, 1) .3s both
}

.hero-sub {
	animation: hFU .8s cubic-bezier(.22, 1, .36, 1) .38s both
}

.hero-tags {
	animation: hFU .8s cubic-bezier(.22, 1, .36, 1) .46s both
}

.hero-ctas {
	animation: hFU .8s cubic-bezier(.22, 1, .36, 1) .54s both
}

.hero-note {
	animation: hFU .7s cubic-bezier(.22, 1, .36, 1) .62s both
}

@keyframes cIn {
	from {
		opacity: 0;
		transform: translateY(40px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes flt {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-10px)
	}
}

.chat-card {
	animation: cIn .9s cubic-bezier(.22, 1, .36, 1) .4s both, flt 6s ease-in-out 1.5s infinite
}

.sr {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1)
}

.sr.in {
	opacity: 1;
	transform: none
}

.sr-l {
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1)
}

.sr-l.in {
	opacity: 1;
	transform: none
}

.sr-r {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1)
}

.sr-r.in {
	opacity: 1;
	transform: none
}

.d1 {
	transition-delay: .1s
}

.d2 {
	transition-delay: .2s
}

.d3 {
	transition-delay: .3s
}

@keyframes sP {
	0% {
		opacity: 0;
		transform: scale(.82) translateY(22px)
	}

	70% {
		transform: scale(1.05) translateY(-4px)
	}

	100% {
		opacity: 1;
		transform: none
	}
}

.stat.pop {
	animation: sP .55s cubic-bezier(.22, 1, .36, 1) both
}

.issue {
	opacity: 0;
	transform: translateY(24px) scale(.97);
	transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1), border-color .3s, background .3s, box-shadow .3s
}

.issue.ii {
	opacity: 1;
	transform: none
}

.issue.ii:hover {
	transform: translateY(-6px)
}

.shift-card.bad {
	opacity: 0;
	transform: translateX(-44px);
	transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1), border-color .35s, box-shadow .35s
}

.shift-card.good {
	opacity: 0;
	transform: translateX(44px);
	transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1), box-shadow .35s
}

.shift-card.si {
	opacity: 1;
	transform: none
}

.shift-card.bad.si:hover {
	transform: translateY(-5px)
}

.shift-card.good.si:hover {
	transform: translateY(-5px)
}

.why-card.generic {
	opacity: 0;
	transform: translateX(-40px);
	transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1), border-color .35s, box-shadow .35s
}

.why-card.pete {
	opacity: 0;
	transform: translateX(40px);
	transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1), box-shadow .35s
}

.why-card.wi {
	opacity: 1;
	transform: none
}

.why-card.generic.wi:hover {
	transform: translateY(-4px)
}

.why-card.pete.wi:hover {
	transform: translateY(-5px)
}

@keyframes fI {
	from {
		opacity: 0;
		transform: rotateX(-40deg) translateY(20px)
	}

	to {
		opacity: 1;
		transform: none
	}
}

.auth-stat.ai {
	animation: fI .6s cubic-bezier(.22, 1, .36, 1) both
}

.auth-stat {
	perspective: 600px
}

.test-card {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1), border-color .3s, box-shadow .3s, background .3s
}

.test-card.ti {
	opacity: 1;
	transform: none
}

.test-card.ti:hover {
	transform: translateY(-5px)
}

.faq-item {
	opacity: 0;
	transform: translateX(-28px);
	transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1), border-color .2s, box-shadow .2s
}

.faq-item.fi {
	opacity: 1;
	transform: none
}

@keyframes ctaI {
	from {
		opacity: 0;
		transform: translateY(50px) scale(.96)
	}

	to {
		opacity: 1;
		transform: none
	}
}

.cta-box {
	opacity: 0
}

.cta-box.ci {
	opacity: 1;
	animation: ctaI .85s cubic-bezier(.22, 1, .36, 1) both
}

strong.counted {
	animation: nG 1.3s ease .7s both
}

@keyframes nG {
	0% {
		text-shadow: 0 0 0 rgba(27, 95, 255, 0)
	}

	50% {
		text-shadow: 0 0 24px rgba(27, 95, 255, .55)
	}

	100% {
		text-shadow: 0 0 0 rgba(27, 95, 255, 0)
	}
}

/* ═══════════ RESPONSIVE ═══════════ */
@media(max-width:1024px) {
	.issues-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.hero-inner {
		gap: 48px
	}
}

@media(max-width:900px) {
	.hero-inner {
		grid-template-columns: 1fr
	}

	.hero-right {
		display: none
	}

	.authority-split,
	.shift-grid,
	.why-grid {
		grid-template-columns: 1fr
	}

	.authority-split {
		gap: 40px
	}

	.how-row,
	.how-row.flip {
		grid-template-columns: 1fr
	}

	.how-row .how-text,
	.how-row.flip .how-text {
		order: 2
	}

	.how-row .how-visual,
	.how-row.flip .how-visual {
		order: 1
	}

	#hero {
		min-height: auto
	}
}

@media(max-width:768px) {
	.nav-links {
		display: none
	}

	.hamburger {
		display: flex
	}

	.stats-row {
		grid-template-columns: repeat(2, 1fr)
	}

	.test-grid {
		grid-template-columns: 1fr;
		gap: 14px
	}

	.auth-stats {
		grid-template-columns: repeat(2, 1fr)
	}

	.faq-wrap {
		margin: 36px 0 0;
		width: 100%
	}

	.how-rows {
		gap: 52px
	}
}

@media(max-width:480px) {
	.issues-grid {
		grid-template-columns: 1fr 1fr
	}

	.stats-row,
	.auth-stats {
		grid-template-columns: 1fr 1fr
	}

	.hero-headline {
		font-size: 2.4rem
	}

	.hero-ctas {
		flex-direction: column
	}

	.footer-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px
	}

	.footer-links {
		flex-wrap: wrap;
		gap: 14px
	}

	.how-step-num {
		font-size: 3rem
	}
}

.starfield {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 1;
}

.starfield span {
	position: absolute;
	color: #fff;
	font-size: 12px;
	animation: twinkle 3s infinite ease-in-out;
	text-shadow:
		0 0 3px rgba(255, 255, 255, .15),
		0 0 8px rgba(255, 255, 255, .1);
}

@keyframes twinkle {

	0%,
	100% {
		opacity: .15;
		transform: scale(.9);
	}

	50% {
		opacity: .45;
		transform: scale(1.1);
	}
}