/* ==========================================================================
   Neta — Execution & Operations Advisory
   Design tokens
   ========================================================================== */
:root {
  --navy: #14213D;
  --navy-soft: #1d2c52;
  --gold: #D8A928;
  --gold-soft: #f0d896;
  --bg: #F7F4EE;
  --bg-soft: #ECEAE4;
  --charcoal: #22252B;
  --white: #FFFFFF;

  --font: "Plus Jakarta Sans", "Manrope", "Sora", -apple-system, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --container: 1140px;
  --section-pad-compact: clamp(40px, 5vw, 64px);
  --section-pad: clamp(48px, 6.5vw, 88px);
  --section-pad-generous: clamp(72px, 9vw, 128px);

  --shadow-sm: 0 2px 10px rgba(20, 33, 61, 0.06);
  --shadow-md: 0 12px 32px rgba(20, 33, 61, 0.10);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; color: var(--charcoal); }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--section-pad) 0; }
section.section--compact { padding: var(--section-pad-compact) 0; }
section.section--generous { padding: var(--section-pad-generous) 0; }
button { font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   Shared bits
   ========================================================================== */
.kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9em;
}
.section-heading {
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  text-align: center;
  margin: 0 0 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  line-height: 1.2;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--navy-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover, .btn--gold:focus-visible {
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--nav { padding: 14px 22px; font-size: 0.875rem; }
.btn:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity 0.15s var(--ease);
  width: fit-content;
}
.link-arrow:hover { opacity: 0.7; }
.link-arrow span { display: inline-block; transition: transform 0.22s var(--ease); }
.link-arrow:hover span { transform: translateX(2px); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.eyebrow__brand {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--navy);
}
.eyebrow__divider {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow__tagline {
  font-size: 0.85rem;
  font-weight: 500;
  color: #5b5f68;
}

/* Fade-in-on-scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 640px) {
  .reveal { transform: translateY(10px); transition-duration: 0.4s; transition-delay: 0ms !important; }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: rgba(20, 33, 61, 0.08);
  box-shadow: 0 4px 20px rgba(20, 33, 61, 0.05);
}
.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__logo-img {
  height: 26px;
  width: auto;
  display: block;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links { display: flex; gap: 32px; }
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 3px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.2s var(--ease);
}
.nav-link:hover::after, .nav-link:focus-visible::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 24px 32px;
    border-bottom: 1px solid var(--bg-soft);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  }
  .nav__menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__links { flex-direction: column; gap: 18px; }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding-top: clamp(60px, 8vw, 100px); padding-bottom: clamp(60px, 8vw, 100px); }
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero__headline {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
}
.hero__sub {
  font-size: 1.08rem;
  max-width: 540px;
  color: var(--charcoal);
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero__visual { display: flex; justify-content: center; }
.hero-mark { width: 100%; max-width: 300px; height: auto; }
.hm-halo {
  fill: var(--gold);
  opacity: 0;
  animation: heroHaloFade 1.1s var(--ease) 0.1s forwards;
}
.hm-path {
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.75;
  stroke-linecap: round;
  opacity: 0.32;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: heroLineDraw 1.2s var(--ease) 0.25s forwards;
}
.hm-dot { fill: var(--navy); opacity: 0; animation: heroDotFade 0.5s var(--ease) 0.3s forwards; }
.hm-dot--gold { fill: var(--gold); opacity: 0; animation: heroDotFade 0.6s var(--ease) 1.3s forwards; }

@keyframes heroHaloFade { from { opacity: 0; } to { opacity: 0.1; } }
@keyframes heroLineDraw { from { stroke-dashoffset: 420; } to { stroke-dashoffset: 0; } }
@keyframes heroDotFade { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .eyebrow { justify-content: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { order: -1; margin-bottom: 8px; }
  .hero-mark { max-width: 230px; }
}

/* ==========================================================================
   Problem section
   ========================================================================== */
.problem { background: var(--bg-soft); }
.problem__container { max-width: 720px; }
.problem__heading {
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  max-width: 480px;
  margin: 0 0 32px;
}
.problem__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.problem__point {
  display: flex;
  align-items: center;
  gap: 16px;
}
.problem__point p { margin: 0; font-size: 1.05rem; font-weight: 500; color: var(--navy); }
.problem__icon {
  width: 30px; height: 30px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.problem__icon .pi-accent { stroke: var(--gold); }
.problem__note {
  margin: 30px 0 0;
  color: var(--navy);
  font-weight: 500;
  font-size: 1rem;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  max-width: 520px;
}
@media (max-width: 640px) {
  .problem__point p { font-size: 1rem; }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(20,33,61,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 30px 30px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216,169,40,0.5);
  box-shadow: 0 0 0 1px rgba(216,169,40,0.14), var(--shadow-md);
}
.service-card:hover .service-card__icon { transform: translate(2px, -2px); }
.service-card:hover .service-card__explore span { transform: translateX(2px); }
.service-card__icon {
  width: 36px; height: 36px;
  margin-bottom: 18px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s var(--ease);
}
.service-card__icon .sc-accent { stroke: var(--gold); }
.service-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.service-card p.service-card__opening {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card > p { font-size: 0.95rem; color: #4a4e57; }
.service-card__keywords {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.7;
  margin-bottom: 0;
}
.service-card__explore { margin-top: auto; align-self: flex-start; }

.section-cta { text-align: center; margin-top: 32px; }

@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-card { height: auto; }
}

/* ==========================================================================
   COO / VP Operations as a Service
   ========================================================================== */
.coo { background: var(--bg-soft); }
.coo__intro { max-width: 640px; margin: 0 0 48px; }
.coo__headline { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.coo__lead { font-size: 1.05rem; color: var(--charcoal); margin: 0; }

.coo__subhead { font-size: 1.15rem; margin-bottom: 22px; }

.coo__bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 40px;
}
.coo__bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.coo__bullet-marker {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  margin-top: 3px;
}
.coo__bullet-marker::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.coo__bullet span:last-child {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--charcoal);
}

@media (max-width: 900px) {
  .coo__bullets { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Workshops & Training
   ========================================================================== */
.workshops { background: var(--bg); }
.workshops__head { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.workshops__lead { font-size: 1.05rem; color: var(--charcoal); margin: 0; }

.courses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.course-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(20,33,61,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.course-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216,169,40,0.5);
  box-shadow: 0 0 0 1px rgba(216,169,40,0.14), var(--shadow-md);
}
.course-card h3 { font-size: 1.14rem; margin-bottom: 8px; }
.course-card__audience {
  font-size: 0.92rem;
  color: #4a4e57;
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(20,33,61,0.08);
}

.course-card__outcomes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}
.course-card__outcome {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.course-card__num {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.course-card__outcome-title { font-size: 0.94rem; font-weight: 600; color: var(--navy); margin: 0 0 3px; }
.course-card__impact { font-size: 0.83rem; color: #6b6f78; margin: 0; }
.course-card__impact strong { color: var(--navy); font-weight: 600; }

@media (max-width: 900px) {
  .courses__grid { grid-template-columns: 1fr; }
  .course-card { height: auto; }
}

/* ==========================================================================
   Approach ("Find the friction. Build the mechanism. Make it stick.")
   ========================================================================== */
.approach { background: var(--navy); color: var(--white); }
.approach__headline {
  color: var(--white);
  text-align: center;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  max-width: 760px;
  margin: 0 auto 44px;
}
.approach__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.approach__num {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.approach__step h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 6px; }
.approach__step p { color: rgba(255,255,255,0.72); font-size: 0.92rem; margin: 0; }

@media (max-width: 760px) {
  .approach__steps { grid-template-columns: 1fr; gap: 24px; }
}

/* ==========================================================================
   About
   ========================================================================== */
.about { background: var(--bg); }
.about__bridge {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.about__photo {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
.about__photo-backdrop {
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.about__photo-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  -webkit-mask-image: linear-gradient(to bottom, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 88%, transparent 100%);
}
.about__headline { font-size: clamp(2rem, 3.6vw, 2.7rem); margin-bottom: 6px; }
.about__subhead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}
.about__intro {
  font-size: 1.04rem;
  color: var(--charcoal);
}
.about__companies {
  font-size: 0.96rem;
  color: #4a4e57;
}
.about__companies strong { color: var(--navy); font-weight: 700; }
.about__bullets {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 16px 0 22px;
}
.about__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  color: var(--charcoal);
}
.about__bullet-icon {
  width: 13px;
  height: auto;
  flex-shrink: 0;
  margin-top: 0.3em;
}
.about__thesis {
  font-weight: 600;
  color: var(--navy);
  font-size: 1.04rem;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin: 0;
  max-width: 520px;
}

@media (max-width: 860px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__photo { max-width: 320px; }
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta { background: var(--navy); }
.final-cta__inner { text-align: center; max-width: 580px; }
.final-cta h2 { color: var(--white); font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.final-cta p { color: rgba(255,255,255,0.78); font-size: 1.05rem; }
.final-cta .btn { margin-top: 14px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.1); padding: 40px 0; }
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer__logo-img { height: 44px; width: auto; display: block; }
.footer__links { display: flex; gap: 24px; }
.footer__links a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.footer__links a:hover { color: var(--gold); }
.footer__copy { color: rgba(255,255,255,0.45); font-size: 0.82rem; margin: 0; width: 100%; text-align: center; }

@media (min-width: 561px) {
  .footer__copy { width: auto; text-align: left; }
}

/* ==========================================================================
   Privacy modal
   ========================================================================== */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.privacy-modal[hidden] { display: none; }
.privacy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 33, 61, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  animation: privacyFade 0.2s var(--ease);
}
.privacy-modal__panel {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: min(80vh, 640px);
  overflow-y: auto;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 44px 36px 36px;
  box-shadow: var(--shadow-md);
  animation: privacyIn 0.25s var(--ease);
}
.privacy-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bg-soft);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s var(--ease), transform 0.18s var(--ease);
}
.privacy-modal__close:hover { background: var(--gold-soft); }
.privacy-modal__close:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
.privacy-modal__rule {
  display: block;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}
.privacy-modal__title {
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.privacy-modal__body p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0 0 14px;
}
.privacy-modal__body p:last-child { margin-bottom: 0; }

body.modal-open { overflow: hidden; }

@keyframes privacyFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes privacyIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 560px) {
  .privacy-modal { padding: 16px; align-items: flex-end; }
  .privacy-modal__panel { max-height: 82vh; padding: 40px 24px 28px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
}
