:root {
  --black: #050807;
  --ink: #0b1110;
  --pitch: #073f2a;
  --pitch-2: #0d6b42;
  --grass: #29c56d;
  --flood: #f2ff5f;
  --white: #f7f8f2;
  --white-soft: rgba(247, 248, 242, 0.78);
  --line: rgba(247, 248, 242, 0.18);
  --dark-line: rgba(5, 8, 7, 0.14);
  --paper: #f2f0e8;
  --muted: #66706a;
  --max: 1180px;
  --font-latin: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-hebrew: Assistant, "Noto Sans Hebrew", Arial, "Helvetica Neue", ui-sans-serif, system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-latin);
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

html:lang(he) body {
  font-family: var(--font-hebrew);
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

.match-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 max(20px, calc((100% - var(--max)) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(247, 248, 242, 0.14);
  background: linear-gradient(180deg, rgba(5, 8, 7, 0.82), rgba(5, 8, 7, 0.42));
  backdrop-filter: blur(14px);
  transition:
    height 180ms ease,
    background 180ms ease;
}

.match-header.is-scrolled,
.match-header.nav-active {
  height: 66px;
  background: rgba(5, 8, 7, 0.94);
}

.wordmark {
  display: grid;
  gap: 1px;
  min-width: 160px;
}

.wordmark span {
  font-size: 1.02rem;
  font-weight: 900;
}

.wordmark small {
  color: var(--white-soft);
  font-size: 0.76rem;
  font-weight: 760;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  order: 3;
}

.language-dock {
  position: fixed;
  bottom: 92px;
  left: 16px;
  z-index: 60;
  padding: 4px;
  border: 1px solid rgba(247, 248, 242, 0.2);
  border-radius: var(--radius-md);
  background: rgba(5, 8, 7, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.language-switch {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 36px);
  grid-template-rows: 32px;
  width: auto;
  padding: 3px;
  border: 1px solid rgba(247, 248, 242, 0.32);
  border-radius: var(--radius-sm);
  background: rgba(247, 248, 242, 0.08);
  direction: ltr;
}

.lang-option {
  position: relative;
  z-index: 2;
  padding: 0;
  color: var(--white-soft);
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 940;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease;
}

.lang-option.is-active {
  color: var(--black);
}

.lang-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 1;
  width: 36px;
  height: 32px;
  border-radius: 4px;
  background: var(--flood);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.language-switch[data-current="he"] .lang-thumb {
  transform: translateX(36px);
}

.mobile-contact-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 112px;
  z-index: 59;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--black);
  border: 1px solid var(--flood);
  border-radius: 14px;
  background: var(--flood);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  font-size: 0.95rem;
  font-weight: 940;
}

body.nav-open .mobile-contact-cta {
  display: none;
}

.match-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  order: 2;
}

.match-nav a {
  padding: 12px 12px;
  color: rgba(247, 248, 242, 0.82);
  font-size: 0.86rem;
  font-weight: 820;
}

.match-nav a:hover {
  color: var(--white);
}

.match-nav a:last-child {
  margin-inline-start: 8px;
  color: var(--black);
  border-radius: var(--radius-sm);
  background: var(--flood);
}

.match-nav a:last-child:hover {
  color: var(--black);
  background: var(--grass);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(247, 248, 242, 0.62);
  border-radius: var(--radius-sm);
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  inset-inline-start: 13px;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition:
    top 160ms ease,
    transform 160ms ease;
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 27px;
}

.menu-toggle[aria-expanded="true"] span:first-child,
.menu-toggle[aria-expanded="true"] span:last-child {
  top: 22px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
  background: url("assets/football-hero.jpg") center / cover no-repeat;
  filter: saturate(1.06) contrast(1.08);
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.08);
  will-change: transform;
}

.hero-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 78% 14%, rgba(242, 255, 95, 0.22), transparent 24%),
    linear-gradient(90deg, rgba(5, 8, 7, 0.97) 0%, rgba(5, 8, 7, 0.82) 42%, rgba(5, 8, 7, 0.34) 100%),
    linear-gradient(0deg, rgba(5, 8, 7, 0.93) 0%, rgba(5, 8, 7, 0.08) 46%);
}

html:dir(rtl) .hero-overlay {
  background:
    radial-gradient(circle at 22% 14%, rgba(242, 255, 95, 0.22), transparent 24%),
    linear-gradient(270deg, rgba(5, 8, 7, 0.97) 0%, rgba(5, 8, 7, 0.82) 42%, rgba(5, 8, 7, 0.34) 100%),
    linear-gradient(0deg, rgba(5, 8, 7, 0.93) 0%, rgba(5, 8, 7, 0.08) 46%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
  width: min(var(--max), calc(100% - 40px));
  min-height: calc(100svh - 86px);
  align-items: end;
  margin: 0 auto;
  padding: 122px 0 112px;
}

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

.overline,
.section-kicker,
.role-tag {
  margin: 0;
  color: var(--grass);
  font-size: 0.78rem;
  font-weight: 940;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(3.45rem, 6.2vw, 7.05rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy p:not(.overline) {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--white-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

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

.action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 900;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

html:dir(rtl) .action-arrow {
  transform: scaleX(-1);
}

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

.action.primary {
  color: var(--black);
  border-color: var(--flood);
  background: var(--flood);
}

.action.primary:hover {
  border-color: var(--grass);
  background: var(--grass);
}

.action.ghost {
  color: var(--white);
  border-color: rgba(247, 248, 242, 0.48);
  background: rgba(247, 248, 242, 0.04);
}

.action.ghost:hover {
  border-color: var(--white);
  background: rgba(247, 248, 242, 0.12);
}

.profile-card {
  display: grid;
  align-self: end;
  overflow: hidden;
  border: 1px solid rgba(247, 248, 242, 0.26);
  border-radius: var(--radius-md);
  background: rgba(5, 8, 7, 0.62);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.3);
  --profile-slide: 34px;
}

.profile-card img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.95) contrast(1.03);
}

.profile-card img,
.profile-meta {
  will-change: transform, opacity, filter;
}

.profile-card.is-profile-switching.shift-to-he {
  --profile-slide: -34px;
}

.profile-card.is-profile-switching.shift-to-en {
  --profile-slide: 34px;
}

.profile-card.is-profile-switching img {
  animation: profileImageShift 640ms cubic-bezier(0.2, 0.86, 0.2, 1) both;
}

.profile-card.is-profile-switching .profile-meta {
  animation: profileMetaShift 700ms cubic-bezier(0.2, 0.86, 0.2, 1) 60ms both;
}

.profile-meta {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-top: 1px solid rgba(247, 248, 242, 0.18);
}

.profile-meta h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1;
}

.profile-meta p {
  margin: 0;
  color: var(--white-soft);
  font-size: 0.94rem;
}

html:lang(he) .hero h1,
html:lang(he) .intro-panel h2,
html:lang(he) .section-head h2,
html:lang(he) .pitch-note h2,
html:lang(he) .closing h2,
html:lang(he) .story-lead p {
  font-family: var(--font-hebrew);
  font-weight: 900;
}

.touchline {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(247, 248, 242, 0.2);
  background: rgba(5, 8, 7, 0.78);
  backdrop-filter: blur(12px);
}

.touchline span {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 18px;
  border-inline-end: 1px solid rgba(247, 248, 242, 0.16);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.touchline span:last-child {
  border-inline-end: 0;
}

.intro-panel,
.story-section,
.representation,
.experience,
.closing,
.lead-section,
.footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

#profile,
#representation,
#experience,
#contact,
#lead-form {
  scroll-margin-top: 88px;
}

.intro-panel {
  display: grid;
  gap: 18px;
  padding: 104px 0 88px;
}

.intro-panel h2,
.section-head h2,
.pitch-note h2,
.closing h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.35rem, 5.6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 56px;
  padding: 0 0 104px;
  color: var(--white);
}

.story-lead p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 3.7vw, 3.45rem);
  font-weight: 900;
  line-height: 1.02;
}

.story-copy {
  display: grid;
  gap: 22px;
  align-content: end;
  max-width: 590px;
  color: var(--white-soft);
  font-size: clamp(1.03rem, 1.7vw, 1.18rem);
}

.story-copy p {
  margin: 0;
}

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

.section-head {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 54px;
  margin-bottom: 48px;
}

.rep-list {
  border-top: 1px solid var(--white);
}

.rep-list article {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.rep-list span {
  color: var(--grass);
  font-size: 0.88rem;
  font-weight: 940;
}

.rep-list h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1;
}

.rep-list p {
  max-width: 620px;
  margin: 0;
  color: var(--white-soft);
  font-size: 1.02rem;
}

.pitch-note {
  position: relative;
  display: grid;
  min-height: 560px;
  align-items: center;
  padding: 80px max(20px, calc((100% - var(--max)) / 2));
  overflow: hidden;
  color: var(--black);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12) 0 14%, transparent 14.4%),
    linear-gradient(135deg, var(--pitch), #0b7a48);
}

.pitch-note .section-kicker,
.pitch-note h2 {
  position: relative;
  z-index: 2;
  max-width: 920px;
  color: var(--white);
}

.pitch-note > div:not(.pitch-lines) {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  min-width: 0;
}

.pitch-note h2 {
  margin-top: 18px;
  max-width: 100%;
}

.pitch-lines {
  position: absolute;
  inset: 42px;
  z-index: 1;
  border: 2px solid rgba(247, 248, 242, 0.28);
}

.pitch-lines span {
  position: absolute;
  display: block;
  border: 2px solid rgba(247, 248, 242, 0.24);
}

.pitch-lines span:nth-child(1) {
  inset: 16% auto 16% 0;
  width: 18%;
  border-left: 0;
}

.pitch-lines span:nth-child(2) {
  inset: 16% 0 16% auto;
  width: 18%;
  border-right: 0;
}

html:dir(rtl) .pitch-lines span:nth-child(1) {
  inset: 16% 0 16% auto;
  border-right: 0;
  border-left: 2px solid rgba(247, 248, 242, 0.24);
}

html:dir(rtl) .pitch-lines span:nth-child(2) {
  inset: 16% auto 16% 0;
  border-left: 0;
  border-right: 2px solid rgba(247, 248, 242, 0.24);
}

.pitch-lines span:nth-child(3) {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  border: 0;
  background: rgba(247, 248, 242, 0.28);
}

.experience {
  padding: 106px 0;
}

.career-table {
  border-top: 1px solid var(--white);
}

.career-table article {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) minmax(220px, 0.45fr);
  gap: 28px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.career-table time {
  color: var(--grass);
  font-size: 0.82rem;
  font-weight: 940;
  text-transform: uppercase;
}

.career-table h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.7vw, 2.35rem);
  line-height: 1;
}

.career-table p {
  margin: 9px 0 0;
  color: var(--white-soft);
}

.career-table strong {
  color: var(--white);
  font-size: 0.98rem;
}

.closing {
  display: flex;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.closing h2 {
  max-width: 820px;
  margin-top: 16px;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.62fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  padding: 96px 0 112px;
  border-top: 1px solid var(--line);
}

.lead-copy {
  display: grid;
  gap: 18px;
}

.lead-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.35rem, 5.2vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead-copy p:not(.section-kicker) {
  max-width: 560px;
  margin: 0;
  color: var(--white-soft);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.lead-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(247, 248, 242, 0.2);
  border-radius: var(--radius-md);
  background: rgba(247, 248, 242, 0.045);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
}

.form-field label span {
  color: var(--white-soft);
  font-weight: 760;
}

.form-field input,
.form-field textarea {
  width: 100%;
  color: var(--white);
  border: 1px solid rgba(247, 248, 242, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(5, 8, 7, 0.52);
  font: inherit;
  font-size: 1rem;
  outline: 0;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.form-field input {
  min-height: 50px;
  padding: 0 14px;
}

.form-field textarea {
  resize: vertical;
  min-height: 112px;
  padding: 13px 14px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(247, 248, 242, 0.42);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--flood);
  background: rgba(5, 8, 7, 0.72);
  box-shadow: 0 0 0 3px rgba(242, 255, 95, 0.12);
}

.form-field input:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 104, 104, 0.82);
}

.lead-form .action {
  width: 100%;
}

.lead-form .action:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.form-status {
  min-height: 1.35em;
  margin: 0;
  color: var(--white-soft);
  font-size: 0.92rem;
  font-weight: 760;
}

.form-status[data-tone="success"] {
  color: var(--grass);
}

.form-status[data-tone="warning"] {
  color: var(--flood);
}

.form-status[data-tone="error"] {
  color: #ff8c8c;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 42px;
  color: var(--white-soft);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--grass);
  font-weight: 850;
}

.letterized {
  --shift: 0.7em;
}

.letterized .word {
  display: inline-block;
  white-space: nowrap;
  direction: inherit;
  unicode-bidi: isolate;
}

.letterized .char {
  display: inline-block;
}

.text-swap .char {
  animation: letterSwitch 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: calc(var(--i) * 12ms);
}

html:dir(rtl) .text-swap .char {
  animation-name: letterSwitchRtl;
}

@keyframes profileImageShift {
  0% {
    opacity: 0.62;
    transform: translateX(calc(var(--profile-slide) * -1)) scale(0.985);
    filter: saturate(0.9) contrast(1.02) blur(5px);
  }

  62% {
    opacity: 1;
    transform: translateX(calc(var(--profile-slide) * 0.16)) scale(1.004);
    filter: saturate(0.95) contrast(1.03) blur(0);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: saturate(0.95) contrast(1.03) blur(0);
  }
}

@keyframes profileMetaShift {
  0% {
    opacity: 0;
    transform: translateX(calc(var(--profile-slide) * -0.78));
  }

  64% {
    opacity: 1;
    transform: translateX(calc(var(--profile-slide) * 0.12));
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes letterSwitch {
  0% {
    opacity: 0;
    transform: translateX(calc(var(--shift) * -1)) translateY(0.24em) rotate(-2deg);
    filter: blur(3px);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes letterSwitchRtl {
  0% {
    opacity: 0;
    transform: translateX(var(--shift)) translateY(0.24em) rotate(2deg);
    filter: blur(3px);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0deg);
    filter: blur(0);
  }
}

@media (max-width: 980px) {
  .match-header {
    height: 70px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .match-header.is-scrolled,
  .match-header.nav-active {
    height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .match-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 10px 16px 18px;
    border-bottom: 1px solid rgba(247, 248, 242, 0.22);
    background: rgba(5, 8, 7, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 150ms ease,
      transform 150ms ease;
  }

  .match-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .match-nav a {
    padding: 15px 2px;
    border-bottom: 1px solid rgba(247, 248, 242, 0.14);
  }

  .match-nav a:last-child {
    margin: 14px 0 0;
    padding: 15px 16px;
    text-align: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 110px;
  }

  .profile-card {
    max-width: 440px;
  }

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

  .story-section,
  .section-head,
  .career-table article,
  .lead-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rep-list article {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .rep-list p {
    grid-column: 2;
  }

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

@media (max-width: 640px) {
  :root {
    --radius-sm: 10px;
    --radius-md: 16px;
  }

  body {
    padding-bottom: 76px;
  }

  .wordmark {
    min-width: 116px;
  }

  .wordmark span {
    font-size: 0.94rem;
  }

  .wordmark small {
    font-size: 0.7rem;
  }

  .header-actions {
    gap: 8px;
  }

  .language-dock {
    top: auto;
    bottom: 14px;
    left: 14px;
    border-radius: 14px;
  }

  .mobile-contact-cta {
    display: inline-flex;
  }

  .lang-option {
    font-size: 0.7rem;
  }

  .lang-thumb {
    width: 36px;
    height: 32px;
  }

  .language-switch[data-current="he"] .lang-thumb {
    transform: translateX(36px);
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .menu-toggle span {
    inset-inline-start: 11px;
  }

  .menu-toggle span:first-child {
    top: 15px;
  }

  .menu-toggle span:last-child {
    top: 25px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child,
  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 20px;
  }

  .hero-inner,
  .intro-panel,
  .story-section,
  .representation,
  .experience,
  .closing,
  .lead-section,
  .footer {
    width: calc(100% - 32px);
  }

  .hero-inner {
    gap: 20px;
    min-height: 0;
    padding-top: 96px;
    padding-bottom: 24px;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    background-position: 58% center;
    transform: translate3d(0, calc(var(--hero-parallax, 0px) * 0.55), 0) scale(1.03);
  }

  .hero-overlay,
  html:dir(rtl) .hero-overlay {
    background:
      radial-gradient(circle at 68% 18%, rgba(242, 255, 95, 0.18), transparent 28%),
      linear-gradient(180deg, rgba(5, 8, 7, 0.78) 0%, rgba(5, 8, 7, 0.86) 48%, rgba(5, 8, 7, 0.98) 100%),
      linear-gradient(90deg, rgba(5, 8, 7, 0.92), rgba(5, 8, 7, 0.34));
  }

  .hero-copy {
    display: grid;
    gap: 14px;
  }

  .overline,
  .section-kicker,
  .role-tag {
    font-size: 0.72rem;
  }

  .hero h1 {
    margin-top: 0;
    max-width: 10ch;
    font-size: clamp(3rem, 16.4vw, 4.45rem);
    line-height: 0.9;
  }

  .hero-copy p:not(.overline) {
    max-width: 31ch;
    margin-top: 0;
    font-size: 1.02rem;
    line-height: 1.4;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-top: 8px;
  }

  .action {
    width: 100%;
    min-height: 50px;
    border-radius: 14px;
  }

  .profile-card {
    grid-template-columns: 104px minmax(0, 1fr);
    max-width: none;
    border-radius: 16px;
    background: rgba(5, 8, 7, 0.72);
    backdrop-filter: blur(12px);
  }

  .profile-card img {
    height: 128px;
    aspect-ratio: auto;
    object-position: center 18%;
  }

  .profile-meta {
    align-content: center;
    gap: 6px;
    min-width: 0;
    padding: 14px;
    border-top: 0;
    border-inline-start: 1px solid rgba(247, 248, 242, 0.18);
  }

  .profile-meta h2 {
    font-size: 1.45rem;
  }

  .profile-meta p {
    font-size: 0.84rem;
  }

  .touchline {
    position: relative;
    display: flex;
    gap: 8px;
    padding: 0 16px 20px;
    overflow-x: auto;
    border-top: 0;
    background: linear-gradient(180deg, rgba(5, 8, 7, 0.98), rgba(5, 8, 7, 1));
    backdrop-filter: none;
    scrollbar-width: none;
  }

  .touchline::-webkit-scrollbar {
    display: none;
  }

  .touchline span {
    flex: 0 0 auto;
    min-height: 0;
    padding: 9px 12px;
    border: 1px solid rgba(247, 248, 242, 0.18);
    border-radius: 999px;
    background: rgba(247, 248, 242, 0.06);
    white-space: nowrap;
  }

  .intro-panel,
  .representation,
  .experience,
  .lead-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .intro-panel {
    gap: 12px;
  }

  .story-section {
    gap: 18px;
    padding-bottom: 58px;
  }

  .intro-panel h2,
  .section-head h2,
  .pitch-note h2,
  .closing h2 {
    font-size: clamp(2.35rem, 12vw, 3.55rem);
  }

  .story-lead p {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .story-copy {
    gap: 14px;
    font-size: 1rem;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .rep-list {
    display: grid;
    gap: 10px;
    border-top: 0;
  }

  .rep-list article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(247, 248, 242, 0.14);
    border-radius: 16px;
    background: rgba(247, 248, 242, 0.045);
  }

  .rep-list p {
    grid-column: auto;
  }

  .pitch-note {
    min-height: 500px;
    padding: 54px 16px;
  }

  .pitch-note h2 {
    font-size: clamp(2.15rem, 10.7vw, 3.1rem);
    line-height: 1.02;
  }

  .lead-form {
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .lead-copy {
    gap: 12px;
  }

  .lead-copy h2 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .form-field input {
    min-height: 54px;
  }

  .pitch-lines {
    inset: 20px;
  }

  .career-table {
    display: grid;
    gap: 10px;
    border-top: 0;
  }

  .career-table article {
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(247, 248, 242, 0.14);
    border-radius: 16px;
    background: rgba(247, 248, 242, 0.045);
  }

  .career-table h3 {
    font-size: 1.48rem;
  }

  .footer {
    flex-direction: column;
    padding-bottom: 22px;
  }
}

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