:root {
  --bg: #f6f0e7;
  --surface: #fffaf2;
  --ink: #17324d;
  --muted: #5f6f80;
  --brand: #123c69;
  --brand-2: #0f6f6b;
  --accent: #f2b705;
  --line: #e5d9c9;
  --shadow: 0 18px 55px rgba(18, 60, 105, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  direction: rtl;
  font-family: "Heebo", "Noto Sans Hebrew", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff6d7 0, transparent 28rem), var(--bg);
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(246, 240, 231, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--brand);
  box-shadow: var(--shadow);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand);
  background: rgba(18, 60, 105, 0.08);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: center;
  padding-block: 3rem;
}

.eyebrow {
  color: var(--brand-2);
  font-weight: 900;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  line-height: 1.18;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

p {
  margin: 0 0 1rem;
}

.lead {
  color: var(--muted);
  font-size: 1.18rem;
  max-width: 60ch;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  background: var(--brand);
  color: white;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button.secondary {
  background: white;
  color: var(--brand);
  border: 1px solid var(--line);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.25rem;
  min-height: 150px;
}

.metric {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--brand);
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.85rem;
  font-weight: 800;
  background: rgba(15, 111, 107, 0.11);
  color: var(--brand-2);
}

.section {
  padding-block: 2.2rem;
}

.demo-form {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  font: inherit;
  background: white;
  color: var(--ink);
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: white;
}

th,
td {
  text-align: right;
  padding: 0.9rem;
  border-bottom: 1px solid var(--line);
}

th {
  background: rgba(18, 60, 105, 0.08);
}

.chart {
  display: flex;
  align-items: end;
  gap: 0.65rem;
  min-height: 210px;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18, 60, 105, 0.08), rgba(18, 60, 105, 0.02));
}

.bar {
  flex: 1;
  min-height: 24px;
  border-radius: 14px 14px 4px 4px;
  background: linear-gradient(180deg, var(--accent), #d98c00);
}

.prompt-list {
  display: grid;
  gap: 0.8rem;
}

.prompt {
  border-inline-start: 5px solid var(--accent);
  background: white;
  border-radius: 18px;
  padding: 1rem;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 2rem 1.25rem;
  text-align: center;
}

@media (max-width: 840px) {
  .hero,
  .nav {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }
}
