/* Krauze Consulting — Sales Page */
/* NOTE: no em/en dashes used anywhere in this file's content per brand style rule */

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

:root {
  --background: #050506;
  --surface: #0d1113;
  --surface-2: #11171a;
  --border: #1c2528;
  --border-strong: #29373b;
  --foreground: #f0f4f5;
  --muted: #8a969b;
  --accent: #00c0d0;
  --accent-strong: #007e8a;
  --accent-foreground: #04222b;
  --radius: 14px;
  --radius-sm: 8px;
  --max-width: 1120px;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.wrap {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.placeholder-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent-foreground);
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-foreground);
}

.btn-primary:hover {
  background: #14cddc;
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border-color: var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 6, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 30px;
  width: auto;
}

.brand span {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
}

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

.nav-links a:not(.btn) {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.15s ease;
}

.nav-links a:not(.btn):hover {
  color: var(--foreground);
}

.nav-mobile-hide {
  display: flex;
  gap: 32px;
}

@media (max-width: 720px) {
  .nav-mobile-hide {
    display: none;
  }
}

/* ---------- Hero ---------- */

.hero {
  padding: 88px 0 96px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 192, 208, 0.16) 0%, rgba(0, 192, 208, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(32px, 5.2vw, 58px);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.08;
  max-width: 880px;
  margin: 0 auto 24px;
}

.hero h1 .accent-text {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-note {
  font-size: 13px;
  color: var(--muted);
}

/* Video placeholder */

.video-shell {
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  padding: 8px;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background: linear-gradient(145deg, #0d1113 0%, #060809 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px dashed var(--border-strong);
}

.video-frame .play-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 0 0 12px rgba(0, 192, 208, 0.08);
}

.video-frame .play-btn svg {
  margin-left: 4px;
}

.video-placeholder-text {
  text-align: center;
  padding: 0 24px;
}

.video-placeholder-text p {
  color: var(--muted);
  font-size: 13px;
  max-width: 360px;
  margin: 0 auto;
}

.video-placeholder-text code {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  color: var(--accent);
  background: rgba(0, 192, 208, 0.08);
  border-radius: 6px;
  padding: 6px 10px;
}

/* ---------- Sections generic ---------- */

section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
}

.bg-alt {
  background: var(--surface);
}

/* ---------- Pain section ---------- */

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }
}

.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pain-card .mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.pain-card p {
  font-size: 15px;
  color: var(--foreground);
}

/* ---------- Shift / solution ---------- */

.shift {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 860px) {
  .shift {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.shift h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.6px;
  margin-bottom: 20px;
}

.shift p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 16px;
}

.shift-visual {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
  padding: 32px;
}

.shift-stat {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.shift-stat:last-child {
  border-bottom: none;
}

.shift-stat .num {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
}

.shift-stat .label {
  font-size: 13px;
  color: var(--muted);
  max-width: 160px;
  text-align: right;
}

/* ---------- Curriculum ---------- */

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .curriculum-grid {
    grid-template-columns: 1fr;
  }
}

.curriculum-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.curriculum-card .index {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}

.curriculum-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.curriculum-card p {
  font-size: 14px;
  color: var(--muted);
}

/* ---------- Who for / not for ---------- */

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 720px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }
}

.fit-card {
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
}

.fit-card.yes {
  background: rgba(0, 192, 208, 0.06);
  border-color: rgba(0, 192, 208, 0.3);
}

.fit-card.no {
  background: var(--surface);
}

.fit-card h3 {
  font-size: 18px;
  margin-bottom: 18px;
}

.fit-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fit-card li {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.fit-card.yes li {
  color: var(--foreground);
}

.fit-card .tick {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--accent);
}

.fit-card.no .tick {
  color: #8a969b;
}

/* ---------- Results / testimonials ---------- */

.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

@media (max-width: 800px) {
  .stat-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 24px 12px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
}

.stat-item .num {
  font-size: 34px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}

.stat-item .label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wins-wall {
  width: 100%;
  height: 520px;
  overflow: hidden;
  margin-top: 56px;
  -webkit-mask-image: linear-gradient(180deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(180deg, transparent, black 10%, black 90%, transparent);
}

.wins-wall-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 860px) {
  .wins-wall-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wins-col {
  overflow: hidden;
  height: 100%;
  position: relative;
}

.wins-col-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wins-col[data-dir="up"] .wins-col-track {
  animation: wins-scroll-up linear infinite;
}

.wins-col[data-dir="down"] .wins-col-track {
  animation: wins-scroll-down linear infinite;
}

@keyframes wins-scroll-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes wins-scroll-down {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

.win-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}

.win-card .whead {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.win-card .avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--muted);
  flex-shrink: 0;
}

.win-card .wname {
  font-weight: 600;
  font-size: 12px;
}

.win-card .wmilestone {
  font-weight: 700;
  color: var(--foreground);
  font-size: 15px;
}

.video-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

@media (max-width: 900px) {
  .video-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .video-results-grid {
    grid-template-columns: 1fr;
  }
}

.video-testimonial {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 8px;
}

.video-testimonial-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.video-testimonial-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-testimonial-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-testimonial-frame .vt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-testimonial-frame .vt-play span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(0, 192, 208, 0.12);
}

.next-card {
  border-color: var(--accent);
  background: rgba(0, 192, 208, 0.06);
}

.next-card-inner {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  border: 1px dashed var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  gap: 10px;
}

.next-card-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.next-card-sub {
  font-size: 13px;
  color: var(--muted);
  max-width: 240px;
  margin-bottom: 6px;
}

/* ---------- Founder ---------- */

.founder {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 720px) {
  .founder {
    grid-template-columns: 1fr;
  }
}

.founder-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px dashed var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding: 20px;
}

.founder-body h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}

.founder-body .role {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 18px;
}

.founder-body p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 14px;
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}

.faq-question .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faq-item.open .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer-inner {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Final CTA ---------- */

.final-cta {
  text-align: center;
  border-bottom: none;
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.6px;
  margin-bottom: 18px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  color: var(--muted);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 36px;
}

.final-cta .guarantee {
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Footer ---------- */

footer {
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  height: 24px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
}

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

.footer-copy {
  font-size: 12px;
  color: #4d5659;
}
