:root {
  --bg: #f7f4ee;
  --ink: #171615;
  --muted: #68635c;
  --surface: #ffffff;
  --line: #ded7ca;
  --accent: #0e3f3c;
  --accent-ink: #ffffff;
  --soft: #ebe4d8;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  background:
    linear-gradient(135deg, rgba(14, 63, 60, 0.08), transparent 34rem),
    var(--bg);
  color: var(--ink);
  direction: rtl;
  font-family:
    "Noto Sans Hebrew", "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  margin: 0;
}

a {
  color: inherit;
}

.admin-shell {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  margin: 0 auto;
  max-width: 1120px;
  padding: clamp(1rem, 4vw, 3rem);
}

.hero,
.note {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(23, 22, 21, 0.08);
}

.hero {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  min-height: 56vh;
  padding: clamp(1.5rem, 5vw, 4.5rem);
}

.brand {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
}

.brand span {
  font-size: 1.4rem;
  font-weight: 900;
}

.hero-copy {
  align-self: end;
  max-width: 760px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 900;
  margin: 0 0 0.8rem;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 1rem;
}

.hero-copy p:not(.eyebrow),
.note p,
.steps p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.75;
}

.actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  border: 1px solid var(--accent);
  border-radius: 6px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.1rem;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps article {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem;
}

.steps span {
  color: var(--accent);
  display: block;
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 1.1rem;
}

.steps h2,
.note h2 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.steps p,
.note p {
  margin-bottom: 0;
}

.note {
  padding: 1.25rem;
}

@media (max-width: 760px) {
  .admin-shell {
    padding: 1rem;
  }

  .hero {
    min-height: auto;
    padding: 1.25rem;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
