
:root {
--bg: #141414;
--bg-card: #1c1c1c;
--bg-elevated: #242424;
--accent: #697565;
--accent-soft: rgba(105, 117, 101, 0.15);
--accent-border: rgba(105, 117, 101, 0.25);
--text: #ffffff;
--text-soft: rgba(255, 255, 255, 0.6);
--text-mute: rgba(255, 255, 255, 0.4);
--rule: rgba(255, 255, 255, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
background: var(--bg);
color: var(--text);
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 16px;
line-height: 1.5;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

/* ======== HERO ======== */
.hero {
min-height: 100vh;
padding: 140px 24px 80px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
}

.hero-glow {
position: absolute;
top: 20%;
left: 50%;
transform: translateX(-50%);
width: 600px;
height: 600px;
background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
filter: blur(60px);
pointer-events: none;
z-index: 0;
}

.hero-content {
position: relative;
z-index: 1;
max-width: 800px;
}

.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--accent-soft);
border: 1px solid var(--accent-border);
padding: 6px 14px;
border-radius: 100px;
font-size: 13px;
font-weight: 500;
color: var(--accent);
margin-bottom: 32px;
}

.hero-badge .dot {
width: 6px;
height: 6px;
background: var(--accent);
border-radius: 50%;
animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
font-size: clamp(48px, 8vw, 96px);
font-weight: 700;
line-height: 1.02;
letter-spacing: -0.04em;
margin-bottom: 24px;
}

.hero h1 .highlight {
color: var(--accent);
}

.hero-sub {
font-size: clamp(17px, 2vw, 20px);
color: var(--text-soft);
max-width: 560px;
margin: 0 auto 40px;
line-height: 1.5;
}

.hero-actions {
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
}

.btn-primary {
display: inline-flex;
align-items: center;
gap: 10px;
background: var(--accent);
color: #fff;
padding: 14px 28px;
border-radius: 100px;
text-decoration: none;
font-weight: 600;
font-size: 15px;
transition: all 0.2s ease;
border: 1px solid var(--accent);
}

.btn-primary:hover {
background: #7a8775;
border-color: #7a8775;
transform: translateY(-1px);
}

.btn-secondary {
display: inline-flex;
align-items: center;
gap: 10px;
background: transparent;
color: var(--text);
padding: 14px 28px;
border-radius: 100px;
text-decoration: none;
font-weight: 500;
font-size: 15px;
border: 1px solid var(--rule);
transition: all 0.2s ease;
}

.btn-secondary:hover {
background: var(--bg-elevated);
border-color: rgba(255, 255, 255, 0.2);
}

/* ======== FEATURES ======== */
.features {
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title .highlight {
  color: var(--accent);
}

.section-intro {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.feature-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}

.feature {
background: var(--bg-card);
border: 1px solid var(--rule);
border-radius: 24px;
padding: 32px;
transition: all 0.3s ease;
position: relative;
}

.feature:hover {
border-color: var(--accent-border);
transform: translateY(-2px);
}

.feature-icon {
width: 48px;
height: 48px;
background: var(--accent-soft);
border: 1px solid var(--accent-border);
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
color: var(--accent);
margin-bottom: 24px;
}

.feature h3 {
font-size: 22px;
font-weight: 600;
letter-spacing: -0.02em;
margin-bottom: 12px;
}

.feature p {
color: var(--text-soft);
font-size: 15px;
line-height: 1.6;
}

/* ======== META BAND ======== */
.meta-band {
padding: 0 24px 80px;
max-width: 1200px;
margin: 0 auto;
}

.meta-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 8px;
background: var(--bg-card);
border: 1px solid var(--rule);
border-radius: 24px;
padding: 8px;
}

.meta-item {
padding: 28px 24px;
border-radius: 18px;
transition: background 0.2s ease;
}

.meta-item:hover {
background: var(--bg-elevated);
}

.meta-icon {
color: var(--accent);
margin-bottom: 16px;
}

.meta-label {
font-size: 12px;
color: var(--text-mute);
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 6px;
font-weight: 500;
}

.meta-value {
font-size: 16px;
font-weight: 600;
color: var(--text);
}

/* ======== CTA SECTION ======== */
.final-cta {
padding: 60px 24px 120px;
text-align: center;
position: relative;
}

.final-cta-card {
max-width: 900px;
margin: 0 auto;
background: var(--bg-card);
border: 1px solid var(--rule);
border-radius: 32px;
padding: 80px 40px;
position: relative;
overflow: hidden;
}

.final-cta-card::before {
content: '';
position: absolute;
top: -50%; left: 50%;
transform: translateX(-50%);
width: 600px;
height: 600px;
background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
filter: blur(60px);
pointer-events: none;
}

.final-cta-content {
position: relative;
z-index: 1;
}

.final-cta h2 {
font-size: clamp(36px, 5vw, 56px);
font-weight: 700;
line-height: 1.05;
letter-spacing: -0.03em;
margin-bottom: 16px;
}

.final-cta h2 .highlight {
color: var(--accent);
}

.final-cta p {
color: var(--text-soft);
font-size: 18px;
max-width: 480px;
margin: 0 auto 36px;
line-height: 1.5;
}

/* ======== ANIMATIONS ======== */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}

.hero-badge { animation: fadeUp 0.6s 0.1s ease both; }
.hero h1 { animation: fadeUp 0.7s 0.2s ease both; }
.hero-sub { animation: fadeUp 0.6s 0.4s ease both; }
.hero-actions { animation: fadeUp 0.6s 0.5s ease both; }
.hero-mockup { animation: fadeUp 0.8s 0.7s ease both; }

/* ======== RESPONSIVE ======== */
@media (max-width: 900px) {
nav { padding: 10px 16px; top: 12px; left: 12px; right: 12px; }
.nav-brand { font-size: 16px; }
.nav-brand img { width: 28px; height: 28px; }
.hero { padding: 120px 20px 60px; }
.features { padding: 80px 20px; }
.feature-grid { grid-template-columns: 1fr; }
.meta-band { padding: 0 20px 40px; }
.meta-grid { grid-template-columns: 1fr 1fr; }
.final-cta { padding: 40px 20px 80px; }
.final-cta-card { padding: 60px 24px; border-radius: 24px; }
.footer-inner { grid-template-columns: 1fr; gap: 40px; }
.footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
.phone-frame { width: 240px; transform: rotateY(0) rotateX(0); }
}