/* ============================================================================
   Tel-Chetz · Landing pages shared stylesheet
   Hebrew Brutalism 2026 · Secular One · Bellefair · Heebo
   ============================================================================ */

:root {
  --navy: #0A1628;
  --navy-classic: #0F2847;
  --navy-deep: #050E1B;
  --gold: #D4A014;
  --gold-bright: #F5C23C;
  --gold-muted: #EBD79A;
  --bg: #F5F1E8;
  --bg-card: #FFFFFF;
  --cream: #EDE6D3;
  --fg: #1C1917;
  --fg-2: #475569;
  --fg-3: #64748b;
  --fg-4: #94a3b8;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --success: #059669;
  --danger: #dc2626;
  --font-sans:    "Heebo", system-ui, -apple-system, sans-serif;
  --font-display: "Secular One", "Heebo", system-ui, sans-serif;
  --font-title:   "Bellefair", "Heebo", Georgia, serif;
  --font-serif:   "Fraunces", "Bellefair", Georgia, serif;
  --font-mono:    "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
  color: var(--fg);
  background: var(--bg);
  margin: 0;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* Grain texture */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: 0.35; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11  0 0 0 0 0.10  0 0 0 0 0.09  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ===== NAV ===== */
.topnav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; gap: 28px;
  padding: 16px 40px;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(28, 43, 58, 0.08);
}
.topnav .brand { display: flex; align-items: center; gap: 12px; }
.topnav .brand-logo { height: 40px; width: auto; display: block; }
.topnav .brand-text {
  font-family: var(--font-title);
  font-size: 22px; font-weight: 400;
  color: var(--navy-classic); letter-spacing: -0.025em; line-height: 1;
}
.topnav nav { display: flex; gap: 24px; margin-inline-start: auto; margin-inline-end: 16px; }
.topnav nav a { font-size: 13px; font-weight: 500; color: var(--fg-2); transition: color 200ms; }
.topnav nav a:hover, .topnav nav a.active { color: var(--navy-classic); }
.topnav .sign-in { font-size: 13px; color: var(--navy-classic); font-weight: 500; padding: 8px 14px; border-radius: 8px; }
.topnav .sign-in:hover { background: rgba(28, 43, 58, 0.06); }
.topnav .cta {
  font-size: 13px; font-weight: 600; color: #fff;
  background: var(--navy-classic);
  padding: 10px 18px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: transform 200ms;
}
.topnav .cta:hover { transform: translateY(-1px); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 110px 40px 0;
  max-width: 1200px; margin: 0 auto;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--fg-3); font-weight: 500;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span.sep { margin: 0 8px; color: var(--fg-4); }

/* ===== HERO ===== */
.lp-hero { max-width: 1200px; margin: 0 auto; padding: 40px 40px 80px; position: relative; }
.lp-caps {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600; letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.lp-caps::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.lp-h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 400;
  color: var(--navy-classic);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin: 0 0 32px;
  max-width: 13ch;
}
.lp-h1 .em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.lp-lede {
  font-size: 22px; font-weight: 300;
  line-height: 1.5; color: var(--navy);
  max-width: 56ch; margin: 0;
}
.lp-lede strong {
  color: var(--navy-classic); font-weight: 700;
  background: linear-gradient(180deg, transparent 60%, rgba(212, 160, 20, 0.35) 60%);
}
.lp-hero-ctas { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  font-size: 14px; font-weight: 600; color: #fff;
  background: var(--navy-classic);
  padding: 14px 24px; border-radius: 10px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 14px rgba(28, 43, 58, 0.2);
  transition: transform 200ms var(--ease-out), box-shadow 200ms;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(28, 43, 58, 0.28); }
.btn-ghost {
  font-size: 14px; font-weight: 500; color: var(--navy-classic);
  padding: 14px 20px; border-radius: 10px;
  transition: background 200ms;
}
.btn-ghost:hover { background: rgba(28, 43, 58, 0.06); }

/* ===== CONTENT SECTIONS ===== */
.lp-section { max-width: 1200px; margin: 0 auto; padding: 72px 40px; }
.lp-section + .lp-section { border-top: 1px solid rgba(28, 43, 58, 0.08); }
.lp-section-head { margin-bottom: 48px; max-width: 820px; }
.lp-section-caps {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; color: var(--gold);
  margin-bottom: 18px;
}
.lp-h2 {
  font-family: var(--font-title);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 400;
  color: var(--navy-classic);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.lp-h2 .em {
  font-family: var(--font-serif);
  font-style: italic; color: var(--gold); font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.lp-section-sub {
  font-size: 17px; line-height: 1.55;
  color: var(--fg-2); max-width: 640px;
  margin: 0; font-weight: 300;
}

/* Feature grid (Module breakdown) */
.feat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 40px;
}
.feat {
  padding: 32px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 12px;
  position: relative; transition: transform .3s, box-shadow .3s;
}
.feat:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(28, 43, 58, 0.08); }
.feat::before { content: ''; position: absolute; top: 0; inset-inline: 0; height: 2px; background: var(--gold); border-radius: 12px 12px 0 0; }
.feat-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.feat-title { font-family: var(--font-title); font-size: 22px; font-weight: 400; color: var(--navy-classic); margin: 0 0 10px; line-height: 1.2; }
.feat-body { font-size: 14.5px; line-height: 1.65; color: var(--fg-2); font-weight: 300; }

/* Steps (How it works) */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0; margin-top: 40px;
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  background: var(--bg-card);
}
.step { padding: 32px; border-inline-end: 1px solid var(--border); position: relative; }
.step:last-child { border-inline-end: 0; }
.step-num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 400;
  color: var(--gold); line-height: 1;
  margin-bottom: 16px; letter-spacing: -0.04em;
}
.step-title { font-family: var(--font-title); font-size: 19px; font-weight: 400; color: var(--navy-classic); margin: 0 0 10px; }
.step-body { font-size: 13.5px; line-height: 1.6; color: var(--fg-2); font-weight: 300; }

/* Personas / Who it's for */
.personas-lp {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 40px;
}
.persona-lp { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.persona-lp-role { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; color: var(--gold); font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
.persona-lp-title { font-family: var(--font-title); font-size: 19px; color: var(--navy-classic); margin: 0 0 12px; font-weight: 400; }
.persona-lp-body { font-size: 13.5px; line-height: 1.6; color: var(--fg-2); font-weight: 300; }

/* Proof block (dark) */
.proof {
  background: var(--navy-deep); color: #fff;
  padding: 100px 40px; text-align: center; position: relative; overflow: hidden;
}
.proof::before {
  content: ''; position: absolute;
  top: 50%; inset-inline-start: 50%;
  width: 700px; height: 700px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(196, 146, 42, 0.12), transparent 60%);
  pointer-events: none;
}
.proof-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.proof-label {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.3em;
  color: rgba(238, 242, 247, 0.7); font-weight: 600; margin-bottom: 20px;
}
.proof-num {
  font-family: var(--font-display);
  font-size: clamp(84px, 11vw, 160px);
  font-weight: 400;
  color: var(--gold-bright);
  line-height: 1; letter-spacing: -0.055em; margin: 0;
}
.proof-body {
  font-family: var(--font-title);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.5; color: rgba(238, 242, 247, 0.9);
  max-width: 680px; margin: 24px auto 0; font-weight: 400;
}
.proof-body .em { font-style: italic; color: var(--gold); font-family: var(--font-serif); }

/* FAQ */
.faq-lp { max-width: 820px; margin: 0 auto; border-top: 1px solid rgba(28, 43, 58, 0.12); }
.faq-lp-item { border-bottom: 1px solid rgba(28, 43, 58, 0.1); }
.faq-lp-q {
  width: 100%; text-align: start;
  display: flex; justify-content: space-between; gap: 20px;
  padding: 22px 0;
  font-family: var(--font-title); font-size: 20px; font-weight: 400;
  color: var(--navy-classic); cursor: pointer;
  transition: color 200ms;
}
.faq-lp-q:hover { color: var(--gold); }
.faq-lp-q::after {
  content: '+'; font-family: var(--font-mono); color: var(--gold);
  font-weight: 300; flex-shrink: 0;
  transition: transform 300ms var(--ease-out);
}
.faq-lp-item.open .faq-lp-q::after { transform: rotate(45deg); }
.faq-lp-a {
  max-height: 0; overflow: hidden;
  transition: max-height 300ms var(--ease-out);
}
.faq-lp-item.open .faq-lp-a { max-height: 400px; }
.faq-lp-a-inner {
  padding: 0 0 26px;
  font-size: 15px; line-height: 1.65;
  color: var(--fg-2); font-weight: 300;
  max-width: 680px;
}

/* CTA */
.lp-cta {
  background: var(--navy-deep); color: #fff;
  padding: 100px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.lp-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(196,146,42,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(196,146,42,0.05) 1px, transparent 1px);
  background-size: 72px 72px;
}
.lp-cta-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.lp-cta-caps { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; color: var(--gold); font-weight: 600; margin-bottom: 22px; }
.lp-cta-title {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  color: #fff; line-height: 1.05; letter-spacing: -0.025em;
  margin: 0 0 24px; text-wrap: balance;
}
.lp-cta-title .em { font-family: var(--font-serif); font-style: italic; color: var(--gold); }
.lp-cta-sub { font-size: 17px; color: rgba(238, 242, 247, 0.75); max-width: 560px; margin: 0 auto 36px; font-weight: 300; }
.lp-cta-form {
  display: flex; gap: 8px; max-width: 520px; margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(196, 146, 42, 0.3);
  border-radius: 14px; padding: 8px;
  backdrop-filter: blur(10px);
}
.lp-cta-input {
  flex: 1; background: transparent; border: 0;
  padding: 14px 16px;
  font-family: inherit; font-size: 14.5px;
  color: #fff;
}
.lp-cta-input:focus { outline: none; }
.lp-cta-input::placeholder { color: rgba(238, 242, 247, 0.45); }
.lp-cta-btn {
  font-size: 13.5px; font-weight: 600;
  background: var(--gold); color: var(--navy-deep);
  padding: 0 22px; border-radius: 10px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background 200ms;
}
.lp-cta-btn:hover { background: #d4a433; }
.lp-cta-status { min-height: 18px; margin-top: 16px; font-size: 12px; color: rgba(238, 242, 247, 0.6); }

/* Related pages */
.related { max-width: 1200px; margin: 0 auto; padding: 80px 40px; }
.related-head {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.28em;
  color: var(--gold); font-weight: 600; margin-bottom: 28px;
}
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.related-item {
  padding: 22px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 10px;
  display: block; transition: transform .3s, box-shadow .3s;
}
.related-item:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(28, 43, 58, 0.08); border-color: var(--gold); }
.related-item-title { font-family: var(--font-title); font-size: 18px; color: var(--navy-classic); margin: 0 0 6px; font-weight: 400; }
.related-item-sub { font-size: 13px; color: var(--fg-2); font-weight: 300; line-height: 1.5; }

/* Footer */
footer.site-foot {
  background: var(--navy-deep); color: rgba(238, 242, 247, 0.7);
  padding: 64px 40px 32px;
  border-top: 1px solid rgba(196, 146, 42, 0.2);
}
.foot-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; }
.foot-brand { display: flex; flex-direction: column; gap: 14px; }
.foot-brand img.foot-logo { width: 220px; height: auto; background: var(--bg); padding: 14px 16px; border-radius: 8px; }
.foot-brand p { font-size: 13px; color: rgba(238, 242, 247, 0.6); line-height: 1.6; max-width: 340px; margin: 0; }
.foot-brand address { font-style: normal; font-size: 13px; color: rgba(238, 242, 247, 0.6); line-height: 1.7; }
.foot-brand address a { color: inherit; }
.foot-col-head { font-size: 10px; letter-spacing: 0.28em; color: var(--gold); font-weight: 500; margin-bottom: 16px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.foot-col a { font-size: 13px; color: rgba(238, 242, 247, 0.7); transition: color 200ms; }
.foot-col a:hover { color: var(--gold); }
.foot-bottom {
  max-width: 1400px; margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(238, 242, 247, 0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(238, 242, 247, 0.45);
}
.foot-mono { font-family: var(--font-mono); letter-spacing: 0.15em; }

/* ===== RESPONSIVE ===== */
@media (max-width: 820px) {
  .topnav { padding: 12px 20px; }
  .topnav nav { display: none; }
  .breadcrumb, .lp-hero, .lp-section, .related { padding-inline: 20px; }
  .lp-hero { padding-top: 30px; padding-bottom: 60px; }
  .lp-section { padding-block: 56px; }
  .foot-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; }
  .step { border-inline-end: 0; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: 0; }
  .feat-grid, .personas-lp { grid-template-columns: 1fr; }
  .proof { padding: 72px 24px; }
  .lp-cta { padding: 72px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
