/* CraftSync — Dark Atmospheric Landing Page */
:root {
  --bg: #0C0C0C;
  --surface: #141414;
  --surface-2: #1A1A1A;
  --text: #FAFAFA;
  --text-muted: #888888;
  --text-dim: #444444;
  --accent: #E8B84B;
  --accent-dim: rgba(232,184,75,0.1);
  --border: rgba(255,255,255,0.07);
  --max-w: 1100px;
  --pad: clamp(24px, 5vw, 80px);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(12,12,12,0.88);
  backdrop-filter: blur(20px);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px var(--pad) 80px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(232,184,75,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1px solid rgba(232,184,75,0.25);
  border-radius: 100px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 820px;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 80px;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #0C0C0C;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.hero-cta-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.hero-cta-secondary {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.hero-cta-secondary:hover { color: var(--text); }
.hero-meta-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
/* WORKFLOWS */
.workflows {
  padding: 100px var(--pad);
  border-top: 1px solid var(--border);
}
.section-header {
  max-width: var(--max-w);
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
}
.workflow-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.workflow-card {
  background: var(--surface);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.workflow-card:hover { border-color: rgba(232,184,75,0.2); }
.workflow-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 12px;
  margin-bottom: 24px;
}
.workflow-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.workflow-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.workflow-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 0.68rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--surface-2);
  color: var(--text-dim);
  border: 1px solid var(--border);
}
/* PROCESS */
.process {
  padding: 100px var(--pad);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-steps {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}
.process-step {
  flex: 1;
  padding: 40px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
}
.step-number {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-content p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}
.process-connector {
  width: 48px;
  height: 1px;
  background: var(--border);
  margin-top: 56px;
  flex-shrink: 0;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--text-dim);
  border-bottom: 1px solid var(--text-dim);
  transform: rotate(-45deg);
}
/* INDUSTRIES */
.industries { padding: 100px var(--pad); }
.industry-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.industry-card {
  background: var(--surface);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.industry-card:hover { border-color: rgba(232,184,75,0.2); }
.industry-icon { margin-bottom: 20px; }
.industry-card h3 {
  font-family: var(--font-display);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.industry-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}
/* PRICING */
.pricing {
  padding: 100px var(--pad);
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.pricing-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pricing-card {
  background: var(--bg);
  padding: 44px 36px;
  border: 1px solid var(--border);
}
.pricing-card.featured {
  border-color: rgba(232,184,75,0.3);
  background: linear-gradient(180deg, rgba(232,184,75,0.04) 0%, var(--bg) 100%);
}
.pricing-tier {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.per-mo {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 32px;
  line-height: 1.5;
}
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li {
  color: var(--text-muted);
  font-size: 0.875rem;
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
/* MANIFESTO */
.manifesto {
  padding: 120px var(--pad);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(232,184,75,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin-bottom: 36px;
  font-style: italic;
}
.manifesto-body {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
/* FOOTER */
.footer { padding: 60px var(--pad) 40px; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 8px;
}
.footer-tagline { color: var(--text-dim); font-size: 0.85rem; }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.78rem;
  line-height: 1.5;
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .workflow-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .process-connector { width: 1px; height: 32px; margin: 0 auto; }
  .process-connector::after { display: none; }
  .hero-meta-row { flex-wrap: wrap; gap: 24px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .industry-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-cta-primary { width: 100%; justify-content: center; }
}