:root {
  --navy: #1A2B4C;
  --gold: #D4AF37;
  --cream: #F4EDE4;
  --ink: #0F1626;
  --steel: #3D556E;
  --line: #E8E8E8;
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
}

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

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -4rem;
  z-index: 100;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(26, 43, 76, 0.12);
  background: rgba(244, 237, 228, 0.94);
  backdrop-filter: blur(14px);
}

.brand-link img {
  width: 138px;
  height: auto;
  display: block;
}

.header-cta,
.primary-btn,
.final-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  padding: 0.8rem 1.25rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta {
  min-height: 42px;
  white-space: nowrap;
  padding-inline: 1rem;
  font-size: 0.92rem;
}

.header-cta:hover,
.primary-btn:hover,
.final-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}

.audio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(26, 43, 76, 0.22);
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  padding: 0.8rem 1.25rem;
}

.audio-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
}

.hero-section {
  border-bottom: 1px solid rgba(26, 43, 76, 0.1);
  background: var(--cream);
}

.hero-copy {
  padding-block: 1rem;
}

.eyebrow {
  color: #745800;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 0.9rem;
}

.proof-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(26, 43, 76, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.55rem 0.75rem;
  text-align: center;
}

.nova-visual {
  display: none;
  justify-content: center;
}

.visual-shell {
  position: relative;
  width: min(100%, 520px);
  min-height: 520px;
  border: 1px solid rgba(26, 43, 76, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(26, 43, 76, 0.14);
  overflow: hidden;
}

.visual-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(26, 43, 76, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
}

.visual-avatar {
  position: absolute;
  inset-inline: 0;
  top: 42px;
  width: 280px;
  height: 280px;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(26, 43, 76, 0.16));
}

.call-panel {
  position: absolute;
  inset-inline: 34px;
  bottom: 34px;
  border: 1px solid rgba(26, 43, 76, 0.16);
  border-radius: 8px;
  background: rgba(244, 237, 228, 0.94);
  padding: 1.25rem;
}

.call-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--steel);
  font-size: 0.92rem;
}

.call-panel p {
  margin-top: 1rem;
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.7;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.signal-row span {
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.signal-row span:nth-child(2),
.signal-row span:nth-child(4) {
  background: rgba(26, 43, 76, 0.22);
}

.section-band {
  border-block: 1px solid rgba(26, 43, 76, 0.1);
  background: rgba(255, 255, 255, 0.46);
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.light h2,
.section-heading.light .eyebrow {
  color: var(--white);
}

.section-heading h2,
.demo-section h2,
.trust-section h2,
.final-cta h2 {
  color: var(--navy);
  font-family: "Noto Serif Hebrew", serif;
  font-size: clamp(2rem, 5vw, 3.7rem);
  font-weight: 900;
  line-height: 1.18;
}

.pain-card,
.feature-card,
.industry-card,
.step-card {
  min-height: 170px;
  border: 1px solid rgba(26, 43, 76, 0.12);
  border-radius: 8px;
  background: var(--white);
  padding: 1.4rem;
}

.pain-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pain-card span,
.step-card span {
  color: #745800;
  font-weight: 900;
}

.pain-card p,
.feature-card p,
.industry-card p,
.step-card p {
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.75;
}

.feature-card h3,
.industry-card h3,
.step-card h3 {
  margin-block: 0.7rem 0.45rem;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 900;
}

.feature-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 50%;
  color: var(--navy);
  font-weight: 900;
}

.audio-panel {
  display: grid;
  gap: 1.25rem;
  border: 1px solid rgba(26, 43, 76, 0.14);
  border-radius: 8px;
  background: var(--white);
  padding: 1.5rem;
}

.audio-panel strong,
.audio-panel span {
  display: block;
}

.audio-panel strong {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
}

.audio-panel span {
  color: var(--steel);
}

.audio-panel audio {
  width: 100%;
}

.pricing-section {
  background: var(--navy);
}

.price-card {
  position: relative;
  min-height: 450px;
  border: 1px solid rgba(244, 237, 228, 0.2);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 1.5rem;
}

.price-card.highlighted {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 2px rgba(212, 175, 55, 0.38);
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
  padding: 0.35rem 0.7rem;
}

.price-card h3 {
  margin-top: 1rem;
  color: var(--navy);
  font-size: 2rem;
  font-weight: 900;
}

.price-card p {
  min-height: 58px;
  color: var(--steel);
  line-height: 1.7;
}

.price {
  margin-block: 1.35rem;
  color: var(--navy);
  font-size: clamp(2.1rem, 5vw, 3rem);
  font-weight: 900;
}

.price span {
  color: var(--steel);
  font-size: 1rem;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  border-top: 1px solid var(--line);
  color: var(--ink);
  padding-top: 0.8rem;
}

.pricing-note {
  margin-top: 1.5rem;
  color: rgba(244, 237, 228, 0.74);
  font-size: 0.95rem;
  line-height: 1.7;
}

.trust-grid {
  display: grid;
  gap: 1rem;
}

.trust-grid article {
  display: grid;
  gap: 0.35rem;
  border-inline-start: 4px solid var(--gold);
  background: var(--white);
  padding: 1rem 1.2rem;
}

.trust-grid strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.trust-grid span {
  color: var(--steel);
  line-height: 1.7;
}

details {
  padding: 1.1rem 1.3rem;
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

details p {
  margin-top: 0.8rem;
  color: var(--steel);
  line-height: 1.8;
}

.final-cta {
  background: var(--navy);
}

.final-cta h2 {
  color: var(--white);
}

.final-btn {
  margin-top: 2rem;
  background: var(--gold);
  color: var(--navy);
}

.final-btn:hover {
  background: var(--white);
}

@media (max-width: 760px) {
  .visual-shell {
    min-height: 430px;
  }

  .visual-avatar {
    top: 36px;
    width: 220px;
    height: 220px;
  }

  .call-panel {
    inset-inline: 18px;
    bottom: 18px;
  }

  .call-panel-top {
    flex-direction: column;
    gap: 0.25rem;
  }

  .brand-link img {
    width: 116px;
  }

  .header-cta {
    font-size: 0.82rem;
    padding-inline: 0.8rem;
  }

  .proof-chip {
    min-height: 50px;
    border-radius: 8px;
    font-size: 0.86rem;
  }
}

@media (min-width: 900px) {
  .nova-visual {
    display: flex;
  }
}
