/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── Variables ── */
:root {
  --bg: #08080a;
  --bg-2: #0f0f13;
  --bg-card: #131318;
  --bg-card-hover: #1a1a21;
  --fg: #f0ede6;
  --fg-muted: #8c8882;
  --fg-subtle: #3d3b36;
  --accent: #e8a020;
  --accent-dim: rgba(232, 160, 32, 0.08);
  --accent-glow: rgba(232, 160, 32, 0.15);
  --teal: #2dd4bf;
  --teal-dim: rgba(45, 212, 191, 0.08);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--fg-subtle); border-radius: 3px; }

/* ── Entrance animation ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeUp 0.7s var(--ease-out) both;
}
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-fade-in { animation: fadeIn 0.8s ease both; }
.animate-slide-right { animation: slideRight 0.6s var(--ease-out) both; }

/* ── NAV ── */
.site-nav {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-left { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  background: var(--accent);
  color: var(--bg);
  padding: 0.25rem 0.55rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav-brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-links { display: flex; align-items: center; gap: 0.5rem; }
.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--fg); background: rgba(255,255,255,0.05); }
.nav-cta {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--accent);
  color: var(--bg);
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity 0.2s, transform 0.15s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,160,32,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}
.hero-content { max-width: 600px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.hero-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 1.75rem;
  letter-spacing: -0.03em;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.075rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.75rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: var(--accent);
  color: var(--bg);
  padding: 0.8rem 1.75rem;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232, 160, 32, 0.25);
}
.hero-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 160, 32, 0.35);
}
.hero-cta-arrow { font-size: 1.1em; transition: transform 0.2s; }
.hero-cta:hover .hero-cta-arrow { transform: translateX(3px); }
.hero-secondary {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.hero-secondary:hover { color: var(--fg); border-color: var(--fg-subtle); }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-svg-wrap {
  width: 100%;
  max-width: 400px;
  position: relative;
}
.hero-svg-wrap svg {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.hero-badge {
  position: absolute;
  bottom: -12px;
  left: -12px;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.hero-badge-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-dim);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.hero-badge-text { display: flex; flex-direction: column; gap: 0.1rem; }
.hero-badge-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.hero-badge-sub {
  font-size: 0.7rem;
  color: var(--fg-muted);
}

/* ── PROBLEM ── */
.problem {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.section-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.18;
  color: var(--fg);
  max-width: 680px;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.problem-item {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s, transform 0.3s;
}
.problem-item:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.problem-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--fg-subtle);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  line-height: 1;
}
.problem-item h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.65rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.problem-item p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── CAPABILITY (3 VALUE PROPS) ── */
.capability {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.capability-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cap-header { margin-bottom: 3rem; }
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cap-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.cap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
}
.cap-card:hover {
  border-color: rgba(232,160,32,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.cap-card:hover::before { opacity: 1; }
.cap-icon {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--bg);
  background: var(--accent);
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}
.cap-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.cap-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.72;
}
.cap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}
.cap-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--fg-muted);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.testimonials-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
}
.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--fg-subtle);
  line-height: 1;
  opacity: 0.4;
}
.testimonial-quote {
  font-size: 0.975rem;
  color: var(--fg);
  line-height: 1.8;
  font-style: italic;
}
.testimonial-attribution {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(232,160,32,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.1rem;
}

/* ── METHOD ── */
.method {
  padding: 5rem 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.method-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.method-steps { display: flex; flex-direction: column; margin-bottom: 3rem; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--fg-subtle);
  letter-spacing: -0.04em;
  line-height: 1;
  padding-top: 0.1rem;
}
.step h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
}
.method-callout {
  background: var(--accent-dim);
  border: 1px solid rgba(232,160,32,0.2);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 1.5rem 2rem;
}
.method-callout p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── OUTCOME ── */
.outcome {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.outcome-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.outcome-item {
  padding: 1.75rem 2rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 12px;
}
.outcome-item h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.outcome-item p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── CLOSING ── */
.closing {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,160,32,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.closing-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}
.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(232,160,32,0.2);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}
.closing-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}
.closing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--accent);
  color: var(--bg);
  padding: 0.95rem 2.25rem;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(232, 160, 32, 0.3);
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}
.closing-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(232, 160, 32, 0.4);
}

/* ── FOOTER ── */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  background: var(--accent);
  color: var(--bg);
  padding: 0.2rem 0.45rem;
}
.footer-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual { order: -1; }
  .hero-svg-wrap { max-width: 320px; margin: 0 auto; }
  .cap-grid, .outcome-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 56px 1fr; gap: 1.5rem; }
}
@media (max-width: 640px) {
  .cap-grid, .outcome-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
}