/* === ATOMIKGROWOS THEME === */

:root {
  --bg: #0d0d0f;
  --surface: #141416;
  --surface-2: #1c1c1f;
  --border: #2a2a2e;
  --text: #f0ece6;
  --text-muted: #7a7672;
  --text-dim: #4a4845;
  --accent: #e8a84a;
  --accent-dim: rgba(232, 168, 74, 0.12);
  --accent-glow: rgba(232, 168, 74, 0.06);
  --green: #4ade80;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(13,13,15,0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--text);
}
.brand-mark {
  font-size: 20px;
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* HERO */
.hero {
  padding: 100px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232,168,74,0.3);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.meta-item {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border);
}

/* HERO VISUAL */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 380px;
}
.hero-visual {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,168,74,0.15);
}
.visual-ring-1 { width: 320px; height: 320px; animation: pulse 4s ease-in-out infinite; }
.visual-ring-2 { width: 220px; height: 220px; border-color: rgba(232,168,74,0.25); animation: pulse 4s ease-in-out infinite 0.6s; }
.visual-ring-3 { width: 130px; height: 130px; border-color: rgba(232,168,74,0.4); animation: pulse 4s ease-in-out infinite 1.2s; }
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
.visual-core {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.core-icon {
  font-size: 28px;
  color: var(--accent);
}
.core-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* PROOF */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 48px;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.proof-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 40px;
}
.proof-stat:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 220px;
}
.proof-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

/* SECTION SHARED */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.65;
}

/* FEATURES */
.features {
  padding: 100px 48px;
  max-width: 1300px;
  margin: 0 auto;
}
.features .section-headline { margin-bottom: 60px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature-card {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.3s;
}
.feature-card:hover { background: var(--surface); }
.feature-icon {
  font-size: 24px;
  margin-bottom: 20px;
}
.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* PROCESS */
.process {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process .section-headline { margin-bottom: 12px; }
.process .section-sub { margin-bottom: 70px; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1100px;
}
.step {
  flex: 1;
  padding-right: 24px;
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-connector {
  width: 24px;
  height: 1px;
  background: var(--border);
  margin-top: 28px;
  flex-shrink: 0;
}

/* PRICING */
.pricing {
  padding: 100px 48px;
  max-width: 1300px;
  margin: 0 auto;
}
.pricing .section-headline { margin-bottom: 48px; }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 56px 52px;
  max-width: 640px;
}
.pricing-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.pricing-period {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.pricing-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.check {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}
.pricing-note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-dim);
}

/* CLOSING */
.closing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 120px 48px;
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}
.closing-body {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 48px;
}
.closing-divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 32px;
}
.closing-tagline {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 60px 24px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { height: 240px; }
  .hero-visual { width: 240px; height: 240px; }
  .visual-ring-1 { width: 240px; height: 240px; }
  .visual-ring-2 { width: 160px; height: 160px; }
  .visual-ring-3 { width: 90px; height: 90px; }
  .proof { padding: 40px 24px; }
  .proof-inner { flex-direction: column; gap: 40px; }
  .proof-divider { width: 40px; height: 1px; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .process { padding: 60px 24px; }
  .process-steps { flex-direction: column; gap: 0; }
  .step-connector { display: none; }
  .pricing { padding: 60px 24px; }
  .pricing-card { padding: 36px 28px; }
  .closing { padding: 80px 24px; }
  .footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px; }
  .section-headline br { display: none; }
}
@media (max-width: 480px) {
  .stat-num { font-size: 40px; }
  .pricing-amount { font-size: 48px; }
  .proof-stat { padding: 0 20px; }
}

/* Responsive proof section */
@media (max-width: 900px) {
  .proof-inner { flex-wrap: wrap; gap: 0; }
  .proof-stat { flex: 1 1 100%; padding: 0; margin-bottom: 40px; }
  .proof-divider { display: none; }
  .proof-stat:last-child { margin-bottom: 0; }
}