:root {
  --bg: #070707;
  --bg-soft: #0d0d0f;
  --card: #111114;
  --card-hover: #17171b;
  --text: #f8f7fb;
  --muted: #a8a5b1;
  --line: rgba(255, 255, 255, 0.11);
  --purple: #9c7cff;
  --purple-deep: #6c4cff;
  --pink: #e789ff;
  --lime: #c8ff5b;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -20%, rgba(106, 73, 255, 0.13), transparent 36%),
    var(--bg);
  font-family: Assistant, "Arial Hebrew", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

::selection {
  color: #09070f;
  background: var(--purple);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.section-shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(7, 7, 7, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.brand,
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
}

.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 18px var(--purple);
}

.brand-separator,
.brand-muted {
  color: #74717c;
}

.topbar-link {
  color: #d9d6df;
  transition: color 180ms ease;
}

.topbar-link:hover {
  color: var(--purple);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  width: min(calc(100% - 40px), 1280px);
  min-height: 850px;
  margin-inline: auto;
  padding: 128px 0 70px;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  color: var(--purple);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(156, 124, 255, 0.3);
  border-radius: 999px;
  background: rgba(156, 124, 255, 0.08);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  animation: blink 1.8s ease-in-out infinite;
}

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

h1 {
  max-width: 790px;
  margin: 28px 0 26px;
  font-size: clamp(68px, 7.5vw, 112px);
  line-height: 0.89;
  letter-spacing: -0.055em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #b391ff 0%, #7f64ff 52%, #e288ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.55;
}

.hero-copy strong {
  color: #f3f0f8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #0a0711;
  background: linear-gradient(110deg, #aa8cff, #8466ff 60%, #c77cff);
  box-shadow: 0 15px 42px rgba(128, 88, 255, 0.28);
}

.button-primary:hover {
  box-shadow: 0 20px 48px rgba(128, 88, 255, 0.38);
}

.button-ghost {
  color: #e9e6ef;
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.2);
}

.button-icon {
  font-size: 22px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  color: #88848f;
  font-size: 15px;
}

.hero-proof p {
  margin-bottom: 0;
}

.avatar-stack {
  display: flex;
  flex-direction: row-reverse;
}

.avatar-stack span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-right: -8px;
  place-items: center;
  color: #d8cffd;
  background: #17141f;
  border: 1px solid rgba(156, 124, 255, 0.32);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.agent-orbit {
  position: relative;
  width: min(46vw, 570px);
  aspect-ratio: 1;
  justify-self: end;
  transform: translateX(-4%);
}

.agent-orbit::before {
  position: absolute;
  inset: 15%;
  content: "";
  background: radial-gradient(circle, rgba(128, 88, 255, 0.22), transparent 65%);
  filter: blur(12px);
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(156, 124, 255, 0.21);
  border-radius: 50%;
}

.orbit-ring-one {
  inset: 9%;
}

.orbit-ring-two {
  inset: 24%;
  border-style: dashed;
  animation: spin 30s linear infinite;
}

.core-agent {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 170px;
  transform: translate(-50%, -50%);
  background: linear-gradient(145deg, #15121d, #0a090d);
  border: 1px solid rgba(178, 148, 255, 0.55);
  border-radius: 38%;
  box-shadow: 0 0 90px rgba(123, 79, 255, 0.26), inset 0 0 34px rgba(156, 124, 255, 0.08);
}

.core-agent::after {
  position: absolute;
  inset: -13px;
  content: "";
  border: 1px solid rgba(156, 124, 255, 0.13);
  border-radius: 42%;
}

.core-agent strong {
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.core-label {
  margin-bottom: 5px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.core-pulse {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 9px;
  height: 9px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--lime);
}

.orbit-agent {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: #d9d6df;
  background: rgba(17, 16, 21, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 700;
}

.orbit-agent span {
  color: var(--purple);
  font-size: 11px;
}

.orbit-agent-1 { top: 7%; right: 24%; }
.orbit-agent-2 { top: 31%; left: 0; }
.orbit-agent-3 { right: -2%; bottom: 34%; }
.orbit-agent-4 { bottom: 7%; left: 19%; }
.orbit-agent-5 { right: 7%; bottom: 8%; }

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow-one {
  top: 23%;
  right: -10%;
  width: 340px;
  height: 340px;
  background: rgba(126, 77, 255, 0.13);
}

.hero-glow-two {
  bottom: 8%;
  left: 10%;
  width: 260px;
  height: 260px;
  background: rgba(210, 110, 255, 0.08);
}

.promise {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.promise-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: end;
  margin-top: 22px;
}

.promise h2,
.kit h2,
.safety h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(46px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.promise h2 span,
.final-cta h2 span {
  color: var(--purple);
}

.promise-list {
  border-top: 1px solid var(--line);
}

.promise-list > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.promise-list span {
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
}

.promise-list p {
  margin-bottom: 0;
  color: #d7d4dc;
}

.kit {
  padding: 120px 0 90px;
}

.kit-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
}

.kit h2 {
  margin-top: 18px;
}

.copy-progress {
  padding: 10px 15px;
  color: #97939f;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  white-space: nowrap;
}

.copy-progress span {
  color: var(--purple);
  font-weight: 900;
}

.employee-grid {
  display: grid;
  gap: 18px;
}

.employee-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(21, 20, 25, 0.96), rgba(13, 13, 15, 0.96));
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: border-color 200ms ease, background 200ms ease;
}

.employee-card:hover,
.employee-card.is-open {
  background: linear-gradient(145deg, rgba(26, 24, 32, 0.98), rgba(13, 13, 15, 0.98));
  border-color: rgba(156, 124, 255, 0.35);
}

.employee-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  content: "";
  background: radial-gradient(circle at top right, var(--accent-soft), transparent 68%);
  pointer-events: none;
}

.employee-summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 72px minmax(180px, 0.75fr) minmax(260px, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: 100%;
  padding: 26px 28px;
  text-align: right;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.employee-number {
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.employee-title h3 {
  margin-bottom: 2px;
  font-size: 25px;
  line-height: 1.1;
}

.employee-title span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.employee-desc {
  margin-bottom: 0;
  color: #aaa6b2;
  font-size: 16px;
}

.employee-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #c9c5cf;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 220ms ease, color 220ms ease, border-color 220ms ease;
}

.employee-card.is-open .employee-toggle {
  color: var(--accent);
  border-color: var(--accent);
  transform: rotate(45deg);
}

.employee-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.employee-card.is-open .employee-detail {
  max-height: 3200px;
}

.employee-detail-inner {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
  margin: 0 28px;
  padding: 28px 0 30px;
  border-top: 1px solid var(--line);
}

.employee-meta {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.meta-block span {
  display: block;
  margin-bottom: 8px;
  color: #75717d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  padding: 6px 9px;
  color: #c9c5cf;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 12px;
}

.meta-note {
  margin-bottom: 0;
  color: #a29eaa;
  font-size: 14px;
}

.prompt-wrap {
  min-width: 0;
}

.prompt-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.prompt-toolbar span {
  color: #88838f;
  font-size: 13px;
  font-weight: 700;
}

.copy-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  color: #0b0811;
  background: var(--accent);
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.copy-button.is-copied {
  color: #081008;
  background: var(--lime);
}

.prompt-box {
  max-height: 520px;
  margin: 0;
  padding: 20px;
  overflow: auto;
  direction: rtl;
  color: #d5d1dc;
  background: #08080a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  font-family: Assistant, "Arial Hebrew", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.how {
  padding: 120px 0;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.how article {
  min-height: 250px;
  padding: 25px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.how article > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 46px;
  place-items: center;
  color: var(--purple);
  background: rgba(156, 124, 255, 0.08);
  border: 1px solid rgba(156, 124, 255, 0.26);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.how h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.how p {
  margin-bottom: 0;
  color: #96929e;
  font-size: 15px;
}

.safety {
  padding: 30px 0 120px;
}

.safety-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 36px;
  align-items: start;
  padding: clamp(28px, 5vw, 64px);
  background:
    radial-gradient(circle at 90% 0, rgba(200, 255, 91, 0.07), transparent 30%),
    #10110e;
  border: 1px solid rgba(200, 255, 91, 0.22);
  border-radius: 26px;
}

.safety-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  color: #101209;
  background: var(--lime);
  border-radius: 24px;
  box-shadow: 0 0 45px rgba(200, 255, 91, 0.18);
  font-size: 42px;
  font-weight: 900;
}

.safety .section-kicker {
  color: var(--lime);
}

.safety h2 {
  max-width: 850px;
  margin: 18px 0 20px;
  font-size: clamp(38px, 4.8vw, 66px);
}

.safety p {
  max-width: 790px;
  margin-bottom: 0;
  color: #aaa99f;
  font-size: 18px;
}

.final-cta {
  padding: 40px 0 110px;
}

.final-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 84px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(177, 131, 255, 0.2), transparent 42%),
    linear-gradient(145deg, #17131f, #0d0c10);
  border: 1px solid rgba(156, 124, 255, 0.26);
  border-radius: 30px;
}

.final-panel::before,
.final-panel::after {
  position: absolute;
  width: 240px;
  height: 240px;
  content: "";
  border: 1px solid rgba(156, 124, 255, 0.14);
  border-radius: 50%;
}

.final-panel::before { top: -160px; right: -80px; }
.final-panel::after { bottom: -180px; left: -50px; }

.final-cta h2 {
  margin: 20px 0;
}

.final-cta p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: #aaa6b2;
}

.final-cta .hero-actions {
  justify-content: center;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 32px;
  color: #6f6b76;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  color: #0b0c08;
  background: var(--lime);
  border-radius: 999px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
  font-size: 14px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 700ms ease forwards;
}

.reveal-delay-1 { animation-delay: 100ms; }
.reveal-delay-2 { animation-delay: 190ms; }
.reveal-delay-3 { animation-delay: 280ms; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 14px var(--purple); }
  50% { opacity: 0.35; box-shadow: 0 0 4px var(--purple); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 150px;
    text-align: center;
  }

  .hero-content {
    margin-inline: auto;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .agent-orbit {
    width: min(80vw, 550px);
    margin: 40px auto 0;
    justify-self: center;
    transform: none;
  }

  .promise-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .employee-summary {
    grid-template-columns: 58px 0.8fr 1fr auto;
    gap: 16px;
  }

  .employee-detail-inner {
    grid-template-columns: 1fr;
  }

  .employee-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .section-shell,
  .hero {
    width: min(calc(100% - 28px), var(--max));
  }

  .topbar {
    height: 62px;
    padding-inline: 16px;
  }

  .brand-separator,
  .brand-muted {
    display: none;
  }

  .topbar-link {
    font-size: 13px;
  }

  .hero {
    padding-top: 118px;
  }

  h1 {
    margin-top: 24px;
    font-size: clamp(54px, 17vw, 78px);
    line-height: 0.94;
  }

  .hero-copy {
    font-size: 19px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    flex-direction: column;
  }

  .agent-orbit {
    width: min(94vw, 420px);
  }

  .core-agent {
    width: 130px;
    height: 130px;
  }

  .core-agent strong {
    font-size: 25px;
  }

  .orbit-agent {
    padding: 7px 10px;
    font-size: 12px;
  }

  .orbit-agent-2 { left: -4%; }
  .orbit-agent-3 { right: -5%; }

  .promise,
  .kit,
  .how {
    padding: 86px 0;
  }

  .promise h2,
  .kit h2,
  .final-cta h2 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .kit-heading {
    align-items: start;
    flex-direction: column;
  }

  .employee-summary {
    grid-template-columns: 48px 1fr auto;
    padding: 21px 18px;
  }

  .employee-desc {
    grid-column: 2 / -1;
    font-size: 14px;
  }

  .employee-title h3 {
    font-size: 21px;
  }

  .employee-detail-inner {
    margin: 0 18px;
  }

  .employee-meta {
    grid-template-columns: 1fr;
  }

  .prompt-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .copy-button {
    justify-content: center;
    min-height: 44px;
  }

  .prompt-box {
    max-height: 450px;
    padding: 16px;
    font-size: 14px;
  }

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

  .how article {
    min-height: 0;
  }

  .how article > span {
    margin-bottom: 32px;
  }

  .safety-card {
    grid-template-columns: 1fr;
  }

  .safety-icon {
    width: 62px;
    height: 62px;
    border-radius: 19px;
    font-size: 34px;
  }

  .safety h2 {
    font-size: 39px;
  }

  .footer {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
