:root {
--primary: #3b82f6;
--accent: #fbbf24;
--bg: #020617;
--bg-hero: #0b1120;
--card: #020617;
--text-main: #f9fafb;
--text-muted: #9ca3af;
--border-soft: rgba(148, 163, 184, 0.45);
--shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.85);
--radius-card: 18px;
}

/* RESET */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
background: var(--bg);
color: var(--text-main);
line-height: 1.6;
}

a {
color: inherit;
text-decoration: none;
}

img {
max-width: 100%;
display: block;
}

.page {
min-height: 100vh;
display: flex;
flex-direction: column;
}

/* TOP BAR */
.top-bar {
background: #020617;
border-bottom: 1px solid rgba(15, 23, 42, 0.8);
padding: 8px 16px;
font-size: 0.85rem;
}

.top-bar-inner {
max-width: 1100px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 8px;
}

.pill {
border-radius: 999px;
padding: 4px 10px;
border: 1px solid rgba(148, 163, 184, 0.7);
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.05em;
}

.top-bar-cta {
display: flex;
flex-wrap: wrap;
gap: 6px;
align-items: center;
}

.top-phone {
font-weight: 600;
}

/* HEADER + NAV */
header {
padding: 36px 16px 40px;
background: radial-gradient(circle at top left, #0b1120 0, #020617 60%);
}

.header-inner {
max-width: 1100px;
margin: 0 auto;
}

.nav {
display: flex;
justify-content: center;
align-items: center;
gap: 16px;
margin-bottom: 18px;
}

/* LOGO PILL */
.logo-wrap {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 14px;
padding: 12px 26px;
border-radius: 999px;
background: radial-gradient(
circle at top left,
rgba(15, 23, 42, 0.95),
rgba(15, 23, 42, 0.9)
);
border: 1px solid rgba(148, 163, 184, 0.35);
box-shadow: 0 10px 30px rgba(15, 23, 42, 0.9);
margin: 0 auto;
}

.logo-mark {
width: 60px;
height: 60px;
border-radius: 18px;
object-fit: cover;
box-shadow: 0 10px 26px rgba(15, 23, 42, 0.95);
}

.logo-text-block {
display: flex;
flex-direction: column;
gap: 2px;
}

.logo-text-main {
font-size: 1.4rem;
font-weight: 700;
letter-spacing: -0.02em;
}

.logo-text-sub {
font-size: 0.84rem;
color: #a5b4fc;
opacity: 0.95;
}

.logo-text-tagline {
font-size: 0.78rem;
color: #e5e7eb;
opacity: 0.9;
margin-top: 2px;
}

/* HIDE MENU BAR */
.nav-links {
display: none;
}

/* HERO LAYOUT */
.hero {
display: grid;
grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
gap: 32px;
align-items: center;
margin-top: 18px;
}

/* EYEBROW */
.eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
border-radius: 999px;
padding: 4px 14px 4px 4px;
border: 1px solid rgba(148, 163, 184, 0.45);
background: rgba(15, 23, 42, 0.85);
font-size: 0.78rem;
margin-top: 4px;
margin-bottom: 10px;
}

.eyebrow span {
background: #3b82f6;
color: #f9fafb;
border-radius: 999px;
padding: 3px 10px;
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.08em;
}

/* HERO LEFT */
.hero-left h1 {
font-size: clamp(2.2rem, 3vw, 2.8rem);
line-height: 1.1;
margin-bottom: 12px;
letter-spacing: -0.03em;
}

.hero-sub {
font-size: 0.96rem;
max-width: 520px;
color: #e5e7eb;
margin-bottom: 8px;
}

/* TRUST STACK UNDER HERO SUBHEAD */
.hero-trust {
margin-top: 6px;
margin-bottom: 18px;
font-size: 0.86rem;
color: #e5e7eb;
display: flex;
flex-direction: column;
gap: 5px;
opacity: 0.95;
}

.hero-trust div {
display: flex;
align-items: center;
gap: 6px;
}

/* CTA BUTTONS */
.hero-cta {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 8px;
}

.btn {
border-radius: 999px;
padding: 10px 18px;
font-size: 0.95rem;
font-weight: 600;
border: none;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
transition: transform 0.12s ease, box-shadow 0.12s ease,
background 0.12s ease;
}

.btn-primary {
background: linear-gradient(135deg, #4f46e5, #3b82f6);
color: #f9fafb;
box-shadow: 0 12px 26px rgba(15, 23, 42, 0.9);
}

.btn-primary:hover {
transform: translateY(-1px);
box-shadow: 0 16px 32px rgba(15, 23, 42, 1);
}

.btn-outline {
background: transparent;
color: #e5e7eb;
border: 1px solid rgba(148, 163, 184, 0.7);
}

.btn-outline:hover {
background: rgba(15, 23, 42, 0.9);
}

.hero-note {
font-size: 0.8rem;
color: #9ca3af;
margin-top: 4px;
}

.hero-note-urgency {
color: #facc15;
font-weight: 500;
}

/* HERO RIGHT */
.hero-right {
background: #020617;
border-radius: var(--radius-card);
border: 1px solid rgba(148, 163, 184, 0.4);
padding: 12px;
box-shadow: var(--shadow-soft);
}

/* VIDEO CARD */
.video-card {
border-radius: 16px;
background: rgba(15, 23, 42, 0.95);
border: 1px solid rgba(148, 163, 184, 0.6);
overflow: hidden;
}

.video-frame {
position: relative;
padding-top: 56.25%; /* 16:9 */
}

.video-frame iframe {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
border: none;
border-radius: 16px;
}

/* PLATFORM BANNER */
.platform-banner-hero {
margin-top: 12px;
}

.platform-banner-hero-img {
width: 100%;
border-radius: 12px;
object-fit: cover;
}

.hero-right-text {
font-size: 0.85rem;
color: #d1d5db;
margin-top: 8px;
}

/* GENERIC SECTIONS */
section {
padding: 40px 16px;
}

.section-inner {
max-width: 1100px;
margin: 0 auto;
}

.section-kicker {
font-size: 0.82rem;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--text-muted);
margin-bottom: 4px;
}

.section-title {
font-size: 1.6rem;
margin-bottom: 6px;
}

.section-sub {
font-size: 0.94rem;
color: var(--text-muted);
max-width: 620px;
}

/* PHONE MOCKUP */
.phone-mockup-section {
background: #020617;
display: flex;
justify-content: center;
}

.phone-mockup-inner {
max-width: 420px;
width: 90%;
}

.phone-mockup-img {
width: 100%;
border-radius: 30px;
box-shadow: var(--shadow-soft);
}

/* STATS */
.stats-section {
background: #020617;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 12px;
margin-top: 12px;
}

.stat-card {
background: #020617;
border-radius: 12px;
padding: 12px;
border: 1px solid #1f2937;
box-shadow: 0 4px 16px rgba(15, 23, 42, 0.8);
}

.stat-value {
font-size: 1.6rem;
font-weight: 700;
color: var(--accent);
margin-bottom: 4px;
}

.stat-label {
font-size: 0.86rem;
color: #e5e7eb;
margin-bottom: 4px;
}

.stat-note {
font-size: 0.8rem;
color: var(--text-muted);
}

/* HOW IT WORKS */
.how-section {
background: #020617;
border-top: 1px solid #111827;
}

.steps-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 16px;
margin-top: 18px;
}

.step-card {
background: #020617;
border-radius: 12px;
border: 1px solid #1f2937;
padding: 16px;
box-shadow: 0 8px 24px rgba(15, 23, 42, 0.8);
}

.step-num {
width: 26px;
height: 26px;
border-radius: 999px;
background: rgba(59, 130, 246, 0.1);
color: #93c5fd;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.82rem;
font-weight: 600;
margin-bottom: 6px;
}

.step-title {
font-size: 0.98rem;
font-weight: 600;
margin-bottom: 6px;
}

.step-text {
font-size: 0.85rem;
color: var(--text-muted);
}

/* TESTIMONIALS */
.testimonials-section {
background: #020617;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 16px;
margin-top: 18px;
}

.test-card {
background: #020617;
border-radius: 12px;
border: 1px solid #1f2937;
padding: 14px;
box-shadow: 0 8px 24px rgba(15, 23, 42, 0.9);
font-size: 0.88rem;
}

.stars {
color: #fbbf24;
font-size: 0.8rem;
margin-bottom: 4px;
}

.test-quote {
margin-bottom: 8px;
}

.test-name {
font-weight: 600;
font-size: 0.9rem;
}

.test-role {
font-size: 0.8rem;
color: var(--text-muted);
}

/* CTA BAND */
.cta-band {
background: #020617;
border-top: 1px solid #111827;
border-bottom: 1px solid #111827;
}

.cta-flex {
display: flex;
justify-content: space-between;
gap: 18px;
align-items: center;
}

.cta-main {
max-width: 600px;
}

.cta-main h2 {
font-size: 1.5rem;
margin-bottom: 6px;
}

.cta-main p {
font-size: 0.94rem;
color: #e5e7eb;
}

.cta-urgency {
font-size: 0.82rem;
color: #fed7aa;
margin-top: 4px;
}

.cta-actions {
display: flex;
flex-direction: column;
gap: 8px;
}

/* FORM */
.form-section {
background: #020617;
}

.form-grid {
display: grid;
grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
gap: 22px;
align-items: flex-start;
}

form {
background: #020617;
border-radius: 16px;
border: 1px solid #1f2937;
padding: 16px;
box-shadow: var(--shadow-soft);
}

form h3 {
font-size: 1.1rem;
margin-bottom: 4px;
}

form p {
font-size: 0.84rem;
color: var(--text-muted);
margin-bottom: 10px;
}

.form-row {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 10px;
}

.form-group {
margin-bottom: 10px;
}

label {
display: block;
font-size: 0.78rem;
margin-bottom: 3px;
}

input,
select,
textarea {
width: 100%;
border-radius: 8px;
border: 1px solid #4b5563;
padding: 7px 9px;
font-size: 0.85rem;
background: #020617;
color: var(--text-main);
}

input:focus,
select:focus,
textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.5);
}

textarea {
resize: vertical;
min-height: 80px;
}

.form-submit-btn {
width: 100%;
margin-top: 6px;
}

.lock-text {
display: flex;
align-items: center;
gap: 6px;
font-size: 0.75rem;
color: var(--text-muted);
margin-top: 6px;
}

.lock-icon {
width: 16px;
height: 16px;
display: inline-flex;
align-items: center;
justify-content: center;
}

.fine-print {
font-size: 0.72rem;
color: var(--text-muted);
margin-top: 4px;
}

.form-side-note {
font-size: 0.86rem;
color: #e5e7eb;
}

.form-side-note strong {
color: var(--accent);
}

.form-side-list {
margin-top: 10px;
padding-left: 18px;
font-size: 0.82rem;
color: var(--text-muted);
}

.form-side-list li {
margin-bottom: 4px;
}

/* FAQ */
.faq-section {
background: #020617;
border-top: 1px solid #111827;
}

.faq-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 16px;
margin-top: 14px;
}

details {
background: #020617;
border-radius: 12px;
border: 1px solid #1f2937;
padding: 10px 12px;
box-shadow: 0 4px 16px rgba(15, 23, 42, 0.7);
font-size: 0.9rem;
}

summary {
cursor: pointer;
font-weight: 600;
list-style: none;
}

summary::-webkit-details-marker {
display: none;
}

details summary::after {
content: "+";
float: right;
color: #9ca3af;
font-weight: 700;
}

details[open] summary::after {
content: "–";
}

details p {
margin-top: 6px;
font-size: 0.84rem;
color: var(--text-muted);
}

/* FOOTER */
footer {
background: #020617;
border-top: 1px solid #111827;
padding: 20px 16px 18px;
font-size: 0.78rem;
color: var(--text-muted);
}

.footer-inner {
max-width: 1100px;
margin: 0 auto;
}

.footer-top {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 8px;
}

.footer-brand {
font-weight: 600;
color: #e5e7eb;
}

.footer-tagline {
font-size: 0.78rem;
}

.footer-contact a {
color: #e5e7eb;
}

.footer-links {
font-size: 0.76rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
.hero {
grid-template-columns: minmax(0, 1fr);
}

.form-grid {
grid-template-columns: minmax(0, 1fr);
}

.stats-grid,
.steps-grid,
.testimonials-grid,
.faq-grid {
grid-template-columns: minmax(0, 1fr);
}

.cta-flex {
flex-direction: column;
align-items: flex-start;
}
}

@media (max-width: 640px) {
.top-bar {
display: none;
}

header {
padding: 28px 14px 32px;
}

.nav {
flex-direction: column;
align-items: center;
gap: 8px;
}

.logo-wrap {
margin: 0 auto;
text-align: left;
}

.hero {
grid-template-columns: minmax(0, 1fr);
gap: 20px;
}

.hero-left {
text-align: center;
}

.hero-sub {
margin-left: auto;
margin-right: auto;
}

.hero-trust {
align-items: center;
text-align: center;
}

.hero-cta {
flex-direction: column;
}

.hero-cta .btn-primary,
.hero-cta .btn-outline {
width: 100%;
justify-content: center;
}

.hero-right {
margin-top: 4px;
}

.video-card {
margin: 0 auto;
}
}
