:root {
	--cream: #faf6ef;
	--ink: #1c1a24;
	--muted: #6b6774;
	--purple: #7c5cf0;
	--purple-dark: #5b3fd9;
	--purple-pale: #efe9ff;
	--panel-border: #e3dbcd;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.prelaunch-banner {
	display: block;
	text-align: center;
	background: var(--purple);
	color: white;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	padding: 10px 16px;
}
.prelaunch-banner:hover { background: var(--purple-dark); }
.prelaunch-banner span { margin-left: 2px; }

.nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1080px;
	margin: 0 auto;
	padding: 24px 24px 0;
	gap: 16px;
	flex-wrap: wrap;
}
.nav-logo { font-weight: 800; font-size: 18px; color: var(--ink); }
.nav-links {
	display: flex;
	gap: 26px;
	font-size: 14px;
	font-weight: 600;
	flex-wrap: wrap;
}
.nav-links a { color: var(--muted); text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--purple-dark); }
.nav-cta {
	background: var(--purple);
	color: white;
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
	padding: 10px 20px;
	border-radius: 999px;
	white-space: nowrap;
	transition: background 0.15s;
}
.nav-cta:hover { background: var(--purple-dark); }

.hero {
	max-width: 1080px;
	margin: 0 auto;
	padding: 48px 24px 56px;
	display: flex;
	align-items: center;
	gap: 56px;
}

.hero-text { flex: 1; min-width: 280px; }

.hero-eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--purple-dark);
	margin: 0 0 10px 0;
}

.hero-text h1 {
	font-size: 40px;
	line-height: 1.2;
	margin: 0 0 20px 0;
	font-weight: 800;
}
.hero-text h1 .accent { color: var(--purple); }

/* The rallying-cry headline (2026-09-08 ask: "needs to stand out more,
   this is a rallying cry" / "loud and visible") - bigger, tighter, and
   bolder than a normal h1 so it reads as a hook/challenge, not a polite
   intro line. */
.hero-rally {
	font-size: 24px;
	line-height: 1.25;
	margin: 0 0 18px 0;
	font-weight: 800;
	letter-spacing: -0.01em;
}
.hero-rally .accent { color: var(--purple); }

.hero-intro {
	font-size: 24px;
	line-height: 1.3;
	margin: 0 0 20px 0;
	font-weight: 700;
	color: var(--ink);
}
.hero-intro .accent { color: var(--purple); }

.hero-sub {
	font-size: 17px;
	line-height: 1.6;
	color: var(--ink);
	margin: 0 0 16px 0;
	max-width: 420px;
}

.hero-tagline {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 28px 0;
}

.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--purple);
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	padding: 14px 26px;
	border-radius: 999px;
	transition: background 0.15s;
}
.cta-btn:hover { background: var(--purple-dark); }

.cta-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: var(--ink);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	padding: 14px 26px;
	border-radius: 999px;
	border: 1px solid var(--panel-border);
	transition: border-color 0.15s, background 0.15s;
}
.cta-btn-secondary:hover { background: rgba(124, 92, 240, 0.06); border-color: var(--purple); }

.hero-image {
	flex: 1;
	min-width: 240px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.avatar-ring {
	width: 260px;
	height: 260px;
	border-radius: 50%;
	padding: 6px;
	background: linear-gradient(135deg, #c77dff, #7c5cf0, #4ea8ff);
}
.avatar-ring img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	border: 5px solid var(--cream);
}
.hero-quote {
	margin: 18px 0 0;
	max-width: 300px;
	text-align: center;
	font-size: 14px;
	line-height: 1.5;
	color: var(--muted);
}
.hero-quote strong { color: var(--purple-dark); font-weight: 700; }

.section-eyebrow {
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 24px;
	padding: 0 24px;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 24px 56px;
}
.feature-card {
	background: #ffffff;
	border: 1px solid var(--panel-border);
	border-radius: 14px;
	padding: 22px 16px;
	text-align: center;
}
.feature-card svg { width: 26px; height: 26px; stroke: var(--purple); }
.feature-card h3 { font-size: 14px; font-weight: 700; margin: 12px 0 6px; }
.feature-card p { font-size: 12px; color: var(--muted); line-height: 1.5; margin: 0; }

.ally-section {
	display: flex;
	align-items: center;
	gap: 36px;
	max-width: 1080px;
	margin: 0 auto 56px;
	background: #ffffff;
	border: 1px solid var(--panel-border);
	border-radius: 20px;
	padding: 36px;
}
.ally-text { flex: 1; min-width: 200px; }
.ally-text h2 { font-size: 22px; font-weight: 800; margin: 0 0 12px; }
.ally-text p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

.ally-features {
	flex: 1;
	min-width: 220px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.ally-feature { display: flex; align-items: flex-start; gap: 12px; }
.ally-feature-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--purple-pale);
	display: flex;
	align-items: center;
	justify-content: center;
}
.ally-feature-icon svg { width: 18px; height: 18px; stroke: var(--purple-dark); }
.ally-feature h4 { font-size: 13px; font-weight: 700; margin: 0 0 3px; }
.ally-feature p { font-size: 12px; color: var(--muted); line-height: 1.5; margin: 0; }

.phone-frame {
	flex-shrink: 0;
	width: 190px;
	height: 388px;
	background: var(--ink);
	border-radius: 32px;
	padding: 10px;
	box-shadow: 0 12px 28px rgba(28, 26, 36, 0.2);
}
.phone-screen {
	width: 100%;
	height: 100%;
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	background: #000;
}
.phone-status-bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 18px;
	z-index: 2;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
}
.phone-status-icons { display: flex; align-items: center; gap: 4px; }
.phone-status-icons svg { width: 14px; height: 14px; fill: #fff; }
.phone-notch {
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 16px;
	background: var(--ink);
	border-radius: 8px;
	z-index: 3;
}
.phone-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.phone-home-indicator {
	position: absolute;
	bottom: 6px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.85);
	z-index: 2;
}
.phone-chat-overlay {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 22px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.phone-bubble {
	max-width: 82%;
	font-size: 10px;
	line-height: 1.35;
	padding: 7px 10px;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.phone-bubble.from-akasha {
	align-self: flex-start;
	background: rgba(255, 255, 255, 0.95);
	color: var(--ink);
	border-bottom-left-radius: 3px;
}
.phone-bubble.from-user {
	align-self: flex-end;
	background: var(--purple);
	color: #fff;
	border-bottom-right-radius: 3px;
}

.video-section {
	max-width: 760px;
	margin: 0 auto 56px;
	padding: 0 24px;
}
.video-frame {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--panel-border);
	background: var(--ink);
}
.video-frame img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.55; }
.video-play-badge {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
}
.video-play-badge svg { width: 22px; height: 22px; fill: var(--purple); margin-left: 3px; }
.video-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 14px 18px;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent);
}

.stats-bar {
	display: flex;
	justify-content: center;
	gap: 64px;
	flex-wrap: wrap;
	max-width: 1080px;
	margin: 0 auto;
	padding: 28px 24px 56px;
	border-top: 1px solid var(--panel-border);
}
.stat-block { text-align: center; }
.stat-block .stat-value { font-size: 18px; font-weight: 800; color: var(--purple-dark); }
.stat-block .stat-label { font-size: 11px; color: var(--muted); margin-top: 4px; }

.affiliate-cta {
	text-align: center;
	padding: 0 24px 48px;
	font-size: 14px;
}
.affiliate-cta a { color: var(--purple-dark); text-decoration: none; font-weight: 600; }
.affiliate-cta a:hover { text-decoration: underline; }

@media (max-width: 760px) {
	.hero { flex-direction: column; padding: 32px 20px 40px; gap: 32px; }
	.hero-text { text-align: center; }
	.hero-cta-row { justify-content: center; }
	.hero-text h1 { font-size: 30px; }
	.hero-rally { font-size: 20px; }
	.hero-intro { font-size: 19px; }
	.feature-grid { grid-template-columns: repeat(2, 1fr); }
	.ally-section { flex-direction: column; padding: 28px; text-align: center; }
	.stats-bar { gap: 32px; }
}
