@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #000000;
  --off-black: #0a0a0a;
  --card-bg:  rgba(255,255,255,0.03);
  --card-border: rgba(255,255,255,0.07);
  --white:    #ffffff;
  --muted:    rgba(255,255,255,0.62);
  --dim:      rgba(255,255,255,0.28);
  --accent:   #3b82f6;
  --accent-2: #60a5fa;
  --green-accent: #34d399;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── Background Canvas ─────────────────────────────────────── */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* ─── Layout Wrapper ────────────────────────────────────────── */
.site-wrap {
  position: relative;
  z-index: 2;
}

/* ─── NAV ───────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 6%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--card-border);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  gap: 2px;
}

.nav-logo-wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 40px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.88);
  line-height: 1;
}

.nav-logo-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.btn-nav {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-nav:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.3);
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 6% 80px;
}

.hero-eyebrow {
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 24px;
}

.text-gradient-white {
  background: linear-gradient(180deg, #fff 60%, rgba(255,255,255,0.35));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-blue {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ─── VSL Container ─────────────────────────────────────────── */

/* ─── CTA Button ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(59,130,246,0.3);
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 0 40px rgba(59,130,246,0.5);
  transform: translateY(-1px);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}

.btn-primary:hover svg { transform: translateY(2px); }

/* ─── Section Shared ────────────────────────────────────────── */
section {
  padding: 100px 6%;
}

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ─── What We Do ────────────────────────────────────────────── */
.services-section {
  max-width: 1100px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.service-card {
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: border-color 0.25s, background 0.25s;
}

.service-card:hover {
  border-color: rgba(59,130,246,0.25);
  background: rgba(59,130,246,0.04);
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-2);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

.service-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-2);
}

/* ─── Why Different ─────────────────────────────────────────── */
.diff-section {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.diff-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.diff-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 48px;
}

.compare-col {
  border-radius: 14px;
  padding: 24px;
}

.compare-col.them {
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--card-border);
}

.compare-col.us {
  background: rgba(10,20,40,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(59,130,246,0.2);
}

.compare-col h4 {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.compare-col.them h4 { color: var(--muted); }
.compare-col.us h4 { color: var(--accent-2); }

.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compare-col ul li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.compare-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.compare-col.them ul li::before { background: rgba(255,255,255,0.15); }
.compare-col.us ul li { color: rgba(255,255,255,0.75); }
.compare-col.us ul li::before { background: var(--accent-2); }

.diff-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.diff-stat {
  border-radius: 14px;
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--card-border);
  padding: 28px;
  transition: border-color 0.2s;
}

.diff-stat:hover {
  border-color: rgba(59,130,246,0.2);
}

.diff-stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.diff-stat-value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff 50%, rgba(255,255,255,0.4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.diff-stat-desc {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}

/* ─── Application Section ───────────────────────────────────── */
.apply-section {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.apply-form-wrap {
  margin-top: 48px;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 48px 40px;
  backdrop-filter: blur(12px);
}

.apply-note {
  margin-top: 14px;
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.05em;
}

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonials-section {
  max-width: 960px;
  margin: 0 auto;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.proof-card {
  border-radius: 16px;
  border: 1px solid var(--card-border);
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 28px;
  transition: border-color 0.2s;
}

.proof-card:hover { border-color: rgba(255,255,255,0.12); }

.proof-tag {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--muted);
}

.proof-tag.green { color: var(--green-accent); }
.proof-tag.blue  { color: var(--accent-2); }
.proof-tag.amber { color: #fbbf24; }

.proof-quote {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
}

.proof-card .proof-empty {
  font-size: 12px;
  color: var(--dim);
  font-style: italic;
  line-height: 1.6;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 10px 14px;
  border-right: 1px solid rgba(255,255,255,0.07);
  min-width: 0;
}
.proof-stat:last-child { border-right: none; }
.proof-stat-num {
  font-size: clamp(14px, 2.2vw, 20px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  overflow: visible;
}
.proof-stat-label {
  font-size: 8px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
  word-break: break-all;
  white-space: normal;
}

/* ─── CTA Band ──────────────────────────────────────────────── */
.cta-band {
  background: rgba(59,130,246,0.06);
  border-top: 1px solid rgba(59,130,246,0.15);
  border-bottom: 1px solid rgba(59,130,246,0.15);
  padding: 100px 6%;
  text-align: center;
}

.cta-band-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-band p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ─── Footer ────────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 2;
  padding: 48px 6%;
  border-top: 1px solid var(--card-border);
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-right: auto;
  align-items: flex-start;
}
.footer-logo .nav-logo-wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 52px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  line-height: 1;
}
.footer-logo .nav-logo-tagline {
  font-size: 16px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
  margin-left: auto;
}

.footer-links a {
  font-size: 11px;
  color: var(--dim);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--muted); }

.footer-copy {
  font-size: 11px;
  color: var(--dim);
  text-align: center;
  margin-top: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ─── Divider ───────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--card-border);
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── Fade-in animations ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Typeform-style Application Form ──────────────────────── */
.tf-form {
  border-radius: 16px;
  background: #0d1117;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  min-height: 380px;
}

.tf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tf-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
}

.tf-progress-track {
  width: 120px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
}

.tf-progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
  width: 0%;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}

.tf-steps { padding: 36px 32px 32px; }

.tf-step { display: none; }
.tf-step.active { display: block; }

.tf-q-num {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}

.tf-q-num span { font-weight: 600; }
.tf-q-num svg  { width: 6px; height: 6px; color: var(--accent); }

.tf-question {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
}

.tf-req { color: var(--accent); margin-left: 3px; }

.tf-choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.tf-choice {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.tf-choice:hover {
  background: rgba(59,130,246,0.08);
  border-color: rgba(59,130,246,0.3);
  color: var(--white);
}

.tf-choice.selected {
  background: rgba(59,130,246,0.12);
  border-color: rgba(59,130,246,0.5);
  color: var(--white);
}

.tf-key {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.tf-choice.selected .tf-key,
.tf-choice:hover .tf-key {
  background: rgba(59,130,246,0.2);
  border-color: rgba(59,130,246,0.5);
  color: var(--accent-2);
}

/* Text fields */
.tf-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.tf-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tf-input {
  width: 100%;
  padding: 13px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.18s, background 0.18s;
}

.tf-input::placeholder { color: rgba(255,255,255,0.28); }

.tf-input:focus {
  border-color: rgba(59,130,246,0.45);
  background: rgba(59,130,246,0.05);
}
.tf-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}

/* Nav row */
.tf-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
}

.tf-nav-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.tf-error {
  font-size: 12px;
  color: #f87171;
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tf-error.show { opacity: 1; }

.tf-next-btn,
.tf-back-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.tf-next-btn {
  background: var(--accent);
  color: var(--white);
  margin-left: auto;
}

.tf-next-btn svg,
.tf-back-btn svg { width: 16px; height: 16px; }

.tf-next-btn:hover { opacity: 0.85; transform: translateY(1px); }

.tf-back-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}

.tf-back-btn:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.tf-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  border: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s;
}

.tf-submit-btn svg { width: 16px; height: 16px; }
.tf-submit-btn:hover { opacity: 0.88; }

/* Done screen */
.tf-done {
  text-align: center;
  padding: 20px 0 8px;
}

.tf-done-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.tf-done-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green-accent);
}

.tf-done h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.tf-done p {
  font-size: 14px;
  color: var(--muted);
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── Responsive ────────────────────────────────────────────── */
.hero-mobile-logo { display: none; }

@media (max-width: 768px) {
  nav { display: none; }

  .hero-mobile-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 5.5rem;
  }
  .hero-mobile-logo .nav-logo-wordmark {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 52px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1;
  }
  .hero-mobile-logo .nav-logo-tagline {
    font-size: 13px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
  }

  .nav-links { display: none; }

  .diff-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .diff-compare {
    grid-template-columns: 1fr 1fr;
  }

  .apply-form-wrap {
    padding: 0;
  }

  .tf-steps { padding: 28px 20px 24px; }

  .tf-field-row { grid-template-columns: 1fr; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero { padding: 80px 5% 64px; justify-content: flex-start; min-height: 100dvh; }
  section { padding: 72px 5%; }
}

@media (max-width: 480px) {
  .diff-compare { grid-template-columns: 1fr; }
  .compare-col.them { display: none; }
}
