/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1e1e1e;
  --border: #2a2a2a;
  --text: #f0ede8;
  --text-muted: #8a8784;
  --accent: #00E57A;
  --accent-dim: #00b85e;
  --red: #ff4d4d;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.mono-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* === NAV === */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  font-size: 1.1rem;
  color: var(--accent);
}

.brand-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--accent); }

/* === HERO === */
.hero {
  padding: 8rem 4rem 6rem;
  max-width: 1200px;
}

.hero-inner {
  max-width: 860px;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
  color: var(--text);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.stat { display: flex; flex-direction: column; gap: 0.2rem; }

.stat-val {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.04em;
}

.stat-div {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* === FRAME SECTION === */
.frame-section {
  padding: 4rem 4rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.frame-inner { max-width: 1200px; }

.frame-intro {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.frame-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.frame-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  transition: border-color 0.2s;
}

.frame-card:hover { border-color: var(--accent); }

.frame-card--tall { grid-row: span 1; }
.frame-card--med { }
.frame-card--short { }

.frame-icon {
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
}

.frame-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

/* === SERVICES === */
.services {
  padding: 7rem 4rem;
}

.services-inner { max-width: 1200px; }

.section-label {
  display: block;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.service-item {
  padding: 2.5rem;
  background: var(--surface);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.service-item:hover { background: var(--surface-2); }

.service-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === PRICING === */
.pricing {
  padding: 7rem 4rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-inner { max-width: 1200px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.pricing-tier {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}

.pricing-tier--featured {
  border-color: var(--accent);
  background: var(--surface-2);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.tier-name {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.tier-price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

.tier-period {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.tier-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}

.tier-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
}

.pricing-note {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.04em;
}

/* === CLOSING === */
.closing {
  padding: 8rem 4rem;
}

.closing-inner {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.closing-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  max-width: 640px;
  color: var(--text);
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-top: 1rem;
}

.closing-niches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.niche-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

/* === FOOTER === */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 4rem;
}

.footer-inner { max-width: 1200px; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-legal {
  font-size: 0.72rem;
  color: #444;
  margin-top: 2rem;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.04em;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; flex-wrap: wrap; gap: 1rem; }
  .nav-tagline { display: none; }
  .nav-actions { display: none; } /* Hidden on mobile — form is CTA-driven */
  .hero { padding: 5rem 1.5rem 4rem; }
  .hero-headline { font-size: 2.4rem; }
  .hero-stat-row { flex-wrap: wrap; gap: 1.5rem; }
  .stat-div { display: none; }
  .frame-section { padding: 3rem 1.5rem; }
  .frame-grid { grid-template-columns: repeat(2, 1fr); }
  .services { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing { padding: 4rem 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing { padding: 5rem 1.5rem; }
  footer { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .frame-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2rem; }
}