/* ===== משתני מיתוג ===== */
:root {
  --black: #000000;
  --cream: #FAF8F6;
  --lime: #DDFF00;
  --ochre: #A86C0B;
  --pink: #EC0262;
  --red: #E8332B;
  --grid-line: #1A1A1A;
  --charcoal: #141414;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  font-weight: 400;
  background: var(--black);
  color: var(--cream);
  line-height: 1.65;
  font-size: 1rem;
}

.mono {
  font-family: 'Roboto Mono', 'Courier New', monospace;
}

h1, h2 {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  padding: 10px 0;
}

.marquee-ochre { background: var(--ochre); color: var(--lime); }
.marquee-lime { background: var(--lime); color: var(--black); }

.marquee-track {
  display: inline-block;
  animation: scroll-marquee 18s linear infinite;
  font-family: 'Roboto Mono', 'Courier New', monospace;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.marquee-track span { padding-inline-end: 8px; }

@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Roboto Mono', 'Courier New', monospace;
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
}

.btn-pill {
  background: var(--cream);
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: 999px;
  padding: 16px 36px;
  transition: transform .12s ease, background .12s ease, color .12s ease;
}

.btn-pill:hover { background: var(--black); color: var(--cream); transform: translateY(-2px); }

.btn-lime { background: var(--lime); border-color: var(--lime); }
.btn-lime:hover { background: var(--black); color: var(--lime); border-color: var(--lime); }

/* ===== HERO — שחור + רשת גרף + תמונה ===== */
.hero {
  background-color: var(--black);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 28px 28px;
  color: var(--cream);
  padding: 56px 24px;
}

.hero-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.hero-text { text-align: center; }

.eyebrow {
  font-family: 'Roboto Mono', 'Courier New', monospace;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--ochre);
  margin-bottom: 20px;
  font-size: .85rem;
}

.eyebrow-light { color: var(--lime); }

.hl-lime { color: var(--lime); }

.hero-sub {
  font-family: 'Roboto Mono', 'Courier New', monospace;
  color: var(--lime);
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  margin: 24px 0 32px;
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  filter: grayscale(1) contrast(1.05);
}

.outline-text {
  font-size: clamp(2.6rem, 7vw, 5rem);
  -webkit-text-stroke: 1.5px var(--lime);
  color: transparent;
}

/* ===== רקע וידאו משותף (truth + checkout) ===== */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ===== TRUTH — וידאו רקע, טקסט במרכז ===== */
.truth {
  position: relative;
  background: var(--black);
  padding: 96px 24px;
  text-align: center;
  overflow: hidden;
}

.truth-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.74);
}

.truth-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.truth-content h2 {
  color: var(--cream);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin-bottom: 28px;
}

.truth-lead {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(1.2rem, 3.2vw, 1.5rem);
  margin-bottom: 8px;
}

.truth-para {
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.truth-bridge {
  font-weight: 500;
  font-size: 1.08rem;
  line-height: 1.7;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 248, 246, 0.25);
}

/* ===== MISTAKES — טעויות שעולות כסף ===== */
.mistakes {
  background: var(--black);
  padding: 72px 24px 80px;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.truth-subhead {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  margin: 0 0 36px;
}

.brush-underline {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 20' preserveAspectRatio='none'%3E%3Cpath d='M2 12 C 40 4, 80 18, 120 10 S 200 2, 240 12 S 280 16, 298 8' stroke='%23EC0262' stroke-width='5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 12px;
  padding-bottom: 10px;
}

.mistakes-list {
  list-style: none;
  text-align: right;
  margin: 0 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mistakes-list li {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 4px;
  padding: 24px 22px 26px;
  border-top: 4px solid var(--pink);
  display: flex;
  flex-direction: column;
}

.m-num {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  color: var(--pink);
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 14px;
}

.mistakes-list strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.mistakes-list p {
  font-size: .92rem;
  line-height: 1.6;
  color: #C9C4BC;
}

.truth-close {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(1.1rem, 3.2vw, 1.4rem);
  line-height: 1.4;
  border-top: 2px solid var(--lime);
  padding-top: 28px;
}

.truth-close strong { color: var(--pink); }

/* ===== SKILLS ===== */
.skills {
  background: var(--black);
  color: var(--cream);
  padding: 64px 24px 72px;
}

.skills h2 {
  text-align: center;
  color: var(--lime);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  margin-bottom: 44px;
  font-family: 'Roboto Mono', 'Courier New', monospace;
  font-weight: 500;
  letter-spacing: 0;
}

.skills-list {
  list-style: none;
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.skills-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.05rem;
  padding: 18px 0;
  border-bottom: 1px solid #2A2A2A;
}

.check {
  color: var(--lime);
  font-weight: 700;
  font-size: 1rem;
  min-width: 32px;
}

/* ===== ABOUT (placeholder) ===== */
.about {
  padding: 64px 24px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  color: var(--black);
}

.about h2 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  margin-bottom: 22px;
  color: var(--black);
}

/* ===== CLARITY — מסגרת ליים על שחור ===== */
.clarity {
  background: var(--black);
  color: var(--lime);
  padding: 56px 24px;
  text-align: center;
  border-top: 3px solid var(--lime);
  border-bottom: 3px solid var(--lime);
}

.clarity-text {
  max-width: 680px;
  margin: 0 auto;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  line-height: 1.4;
}

.clarity-text strong { color: var(--cream); }

/* ===== BONUS — כרטיס קרם על שחור ===== */
.bonus {
  padding: 64px 24px;
  display: flex;
  justify-content: center;
}

.bonus-card {
  max-width: 520px;
  background: var(--cream);
  color: var(--black);
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.bonus-letter {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 8px;
}

.bonus-label {
  font-weight: 500;
  color: var(--ochre);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .8rem;
  margin-bottom: 14px;
}

.bonus-text { font-size: 1rem; }

/* ===== CHECKOUT — וידאו רקע ===== */
.checkout {
  position: relative;
  background: var(--black);
  color: var(--cream);
  text-align: center;
  padding: 80px 24px;
  overflow: hidden;
}

.checkout-content {
  position: relative;
  z-index: 1;
}

.checkout h2 {
  color: var(--cream);
  font-size: clamp(2rem, 6vw, 3.2rem);
  margin-bottom: 36px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 24px;
  text-align: center;
  background: var(--black);
}

.footer .placeholder-text { max-width: 640px; }

/* ===== PLACEHOLDER MARKERS (מכוון — נשאר מחוץ לפלטת המותג בכוונה, כדי לבלוט כ"טרם הושלם") ===== */
.placeholder-block {
  background: repeating-linear-gradient(
    45deg,
    #FFF3E0,
    #FFF3E0 10px,
    #FFE9C7 10px,
    #FFE9C7 20px
  );
}

.placeholder-text {
  color: #B45309;
  font-weight: 500;
  font-size: .85rem;
  background: #FFF3E0;
  border: 1px dashed #D97706;
  border-radius: 6px;
  padding: 10px 16px;
  display: inline-block;
  font-family: 'Roboto Mono', 'Courier New', monospace;
}

.placeholder-inline { margin-top: 16px; }

.placeholder-inline-tag {
  color: #B45309;
  background: #FFF3E0;
  border: 1px dashed #D97706;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 800px) {
  .hero-grid, .truth-grid {
    grid-template-columns: 1fr;
  }
  .hero-image { order: -1; max-width: 320px; margin: 0 auto; }
  .truth-image { max-width: 320px; margin: 0 auto; }
  .truth-grid { text-align: center; }
  .mistakes-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .btn-pill { width: 100%; text-align: center; }
  .outline-text { font-size: clamp(2.1rem, 10vw, 3rem); }
}
