:root {
  --ink: #111717;
  --muted: #687272;
  --line: rgba(17, 23, 23, 0.12);
  --paper: #f7f5ef;
  --white: #fffdf8;
  --charcoal: #151819;
  --steel: #60727a;
  --copper: #b8763d;
  --green: #12683a;
  --sage: #dfe6dc;
  --blue: #234e68;
  --shadow: 0 26px 70px rgba(17, 23, 23, 0.16);
  --soft-shadow: 0 16px 40px rgba(17, 23, 23, 0.1);
  --radius: 8px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Assistant", "Heebo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.nowrap { white-space: nowrap; }

.page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(184,118,61,.12), transparent 28%),
    linear-gradient(225deg, rgba(35,78,104,.12), transparent 32%),
    var(--paper);
}

.shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.wide { width: min(1360px, calc(100% - 32px)); margin: 0 auto; }

.site-nav {
  position: sticky;
  inset-block-start: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: rgba(17, 23, 23, .82);
  color: #fff;
  backdrop-filter: blur(18px);
}
.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--copper), #e3be78);
  color: #151819;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.nav-links a,
.pill {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 0 14px;
  color: inherit;
  font-weight: 800;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.nav-links a:hover,
.pill:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); }
.pill.dark { background: #151819; color: #fff; border-color: #151819; }
.pill.light { background: #fff; color: #151819; border-color: #fff; }
.pill.gold { background: linear-gradient(135deg, #e7c27b, #b8763d); color: #151819; border: 0; }

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero.compact { min-height: 78vh; }
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96) contrast(1.04);
  transform: scale(1.04);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17,23,23,.92), rgba(17,23,23,.58) 48%, rgba(17,23,23,.16)),
    linear-gradient(0deg, rgba(17,23,23,.88), transparent 45%);
}
.hero-content {
  padding: 74px 0 54px;
  color: #fff;
}
.kicker {
  margin: 0 0 12px;
  color: #e7c27b;
  font-weight: 900;
}
.benefit-glow {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 0 18px;
  border: 1px solid rgba(231, 194, 123, .46);
  border-radius: 999px;
  padding: 12px 18px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.06)),
    rgba(231, 194, 123, .1);
  color: #ffe1a0;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.07) inset,
    0 14px 34px rgba(231,194,123,.16),
    0 0 42px rgba(231,194,123,.16);
  font-weight: 950;
  line-height: 1.25;
}
.benefit-glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: inherit;
  background: conic-gradient(from 0deg, rgba(231,194,123,.08), rgba(255,255,255,.52), rgba(184,118,61,.62), rgba(231,194,123,.08));
  animation: benefitSpin 7s linear infinite;
}
.benefit-glow::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(17,23,23,.72);
  box-shadow: 0 0 28px rgba(231,194,123,.12) inset;
}
.conference-offer .benefit-glow::after {
  background: rgba(17,23,23,.58);
}
@keyframes benefitSpin {
  to { transform: rotate(1turn); }
}
@keyframes orbitGlow {
  to { transform: rotate(1turn); }
}
h1, h2, h3, p { margin-block-start: 0; }
h1 {
  max-width: 870px;
  margin-bottom: 18px;
  font-size: clamp(44px, 8vw, 112px);
  line-height: .86;
  letter-spacing: 0;
}
.hero .lead {
  max-width: 760px;
  color: rgba(255,255,255,.86);
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.countdown {
  width: min(100%, 620px);
  margin-top: 24px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255,255,255,.1);
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}
.countdown > span {
  display: block;
  margin-bottom: 10px;
  color: #e7c27b;
  font-weight: 950;
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.countdown-grid div {
  border-radius: 8px;
  padding: 14px 10px;
  background: rgba(17,23,23,.34);
  text-align: center;
}
.countdown-grid strong {
  display: block;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .9;
}
.countdown-grid small {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.74);
  font-weight: 850;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  max-width: 920px;
}
.stat {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
}
.stat strong { display: block; font-size: 30px; line-height: 1; }
.stat span { color: rgba(255,255,255,.76); font-weight: 750; }

.section {
  padding: clamp(58px, 8vw, 108px) 0;
  scroll-margin-top: 96px;
}
.section.dark { background: #151819; color: #fff; }
.section.white { background: #fffdf8; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 68px);
  line-height: .94;
}
.section-head p { max-width: 560px; color: var(--muted); line-height: 1.65; font-size: 18px; }
.dark .section-head p { color: rgba(255,255,255,.68); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
#program .grid-3 { grid-template-columns: 1fr; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,253,248,.86);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(184,118,61,.36); }
.dark .card { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); color: #fff; }
.card-body { padding: 22px; }
.card h3 { margin-bottom: 10px; font-size: 25px; line-height: 1.1; }
.card p { color: #5e6969; line-height: 1.62; margin-bottom: 0; }
.dark .card p { color: rgba(255,255,255,.68); }
.highlight-card {
  text-decoration: none;
  color: inherit;
}
.highlight-card .card-body {
  min-height: 100%;
  display: grid;
  align-content: start;
}
.highlight-speaker-photo {
  width: 92px;
  height: 92px;
  margin: 0 0 16px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
  object-position: center;
  box-shadow:
    0 18px 34px rgba(17, 23, 23, .18),
    0 0 0 1px rgba(231, 194, 123, .52);
}
.highlight-link-card {
  position: relative;
}
.highlight-link-card::after {
  content: "לפרטי ההרצאה";
  width: max-content;
  max-width: calc(100% - 44px);
  margin: 16px 22px 22px;
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(231, 194, 123, .22);
  color: #2f2b24;
  font-size: 13px;
  font-weight: 900;
}
.highlight-link-card:hover .highlight-speaker-photo {
  transform: scale(1.04);
}
.project-img { aspect-ratio: 16 / 11; overflow: hidden; background: #d8d8d0; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .project-img img { transform: scale(1.06); }
.hadarim-projects {
  align-items: stretch;
}
.project-card {
  position: relative;
  cursor: pointer;
  outline: 0;
}
.project-card:focus-visible {
  box-shadow: 0 0 0 4px rgba(231,194,123,.45), var(--soft-shadow);
}
.project-card.is-active {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.project-card[data-project-id="horesh"].is-active {
  border-color: rgba(18,104,58,.62);
  background: linear-gradient(180deg, rgba(244,252,245,.98), rgba(255,253,248,.94));
}
.project-card[data-project-id="eucalyptus"].is-active {
  border-color: rgba(184,118,61,.68);
  background: linear-gradient(180deg, rgba(255,247,235,.98), rgba(255,253,248,.94));
}
.project-card[data-project-id="oranim"].is-active {
  border-color: rgba(35,78,104,.68);
  background: linear-gradient(180deg, rgba(237,247,252,.98), rgba(255,253,248,.94));
}
.project-toggle {
  position: absolute;
  inset-block-start: 14px;
  inset-inline-start: 14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255,253,248,.92);
  color: #151819;
  box-shadow: 0 12px 28px rgba(17,23,23,.16);
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}
.project-toggle:hover {
  transform: scale(1.06);
}
.project-card.is-active .project-toggle {
  background: #151819;
  color: #e7c27b;
}
.project-detail {
  position: relative;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fffdf8;
  box-shadow: var(--shadow);
}
.project-detail[hidden] {
  display: none;
}
.project-detail.is-open {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: 0;
  animation: projectReveal .34s ease both;
}
.project-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .11;
  background:
    linear-gradient(90deg, rgba(17,23,23,.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17,23,23,.14) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
.project-detail-copy,
.project-gallery {
  position: relative;
  z-index: 1;
}
.project-detail-copy {
  padding: clamp(24px, 4vw, 42px);
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.18), transparent 32%),
    linear-gradient(145deg, #151819, #243234);
}
.project-detail.tone-green .project-detail-copy {
  background:
    radial-gradient(circle at 18% 22%, rgba(231,194,123,.22), transparent 34%),
    linear-gradient(145deg, #0f3926, #151819);
}
.project-detail.tone-copper .project-detail-copy {
  background:
    radial-gradient(circle at 18% 22%, rgba(231,194,123,.28), transparent 34%),
    linear-gradient(145deg, #613a22, #151819);
}
.project-detail.tone-blue .project-detail-copy {
  background:
    radial-gradient(circle at 18% 22%, rgba(231,194,123,.2), transparent 34%),
    linear-gradient(145deg, #183d52, #151819);
}
.project-detail-copy .kicker {
  color: #e7c27b;
}
.project-detail-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: .94;
}
.project-detail-copy p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.68;
}
.project-stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}
.project-stat-row span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-weight: 900;
}
.project-detail-copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.project-detail-copy li {
  position: relative;
  padding-inline-start: 24px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
  font-weight: 750;
}
.project-detail-copy li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #e7c27b;
}
.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 30px);
  background:
    linear-gradient(135deg, rgba(255,253,248,.94), rgba(247,245,239,.98));
}
.gallery-tile {
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  border: 1px solid rgba(17,23,23,.1);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: 0 16px 36px rgba(17,23,23,.09);
}
.gallery-visual {
  position: relative;
  overflow: hidden;
  background: #e8e4da;
}
.gallery-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-tile > div:last-child {
  padding: 16px;
}
.gallery-tile strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}
.gallery-tile p {
  margin: 0;
  color: #5e6969;
  font-size: 15px;
  line-height: 1.55;
}
.drawing {
  position: absolute;
  inset: 14px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(35,78,104,.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(35,78,104,.14) 1px, transparent 1px),
    #fbfaf5;
  background-size: 22px 22px;
  border: 2px solid rgba(35,78,104,.32);
}
.drawing::before,
.drawing::after,
.drawing span,
.drawing b {
  content: "";
  position: absolute;
  display: block;
}
.drawing-plan span:nth-child(1) { inset: 22px 22px auto auto; width: 42%; height: 44%; border: 3px solid #151819; border-radius: 4px; }
.drawing-plan span:nth-child(2) { inset: auto 22px 22px auto; width: 48%; height: 30%; border: 3px solid #151819; border-radius: 4px; }
.drawing-plan span:nth-child(3) { left: 24px; top: 28px; width: 34%; height: 68%; border: 3px solid #b8763d; border-radius: 4px; }
.drawing-plan span:nth-child(4) { right: 45%; top: 18px; width: 3px; height: calc(100% - 36px); background: rgba(21,24,25,.62); }
.drawing-plan b { left: 24px; bottom: 20px; width: 34%; height: 3px; background: #12683a; }
.drawing-permit { transform: rotate(-1deg); }
.drawing-permit span:nth-child(1) { inset: 24px 22px auto 22px; height: 3px; background: #151819; box-shadow: 0 34px 0 rgba(21,24,25,.72), 0 68px 0 rgba(21,24,25,.4); }
.drawing-permit span:nth-child(2) { right: 26px; bottom: 22px; width: 44%; height: 44%; border: 3px solid #12683a; }
.drawing-permit span:nth-child(3) { left: 26px; bottom: 22px; width: 34%; height: 62%; border: 3px dashed #b8763d; }
.drawing-permit b { left: 22px; top: 18px; color: #234e68; font-size: 14px; font-weight: 950; }
.drawing-section span:nth-child(1) { left: 12%; right: 12%; bottom: 34px; height: 4px; background: #151819; }
.drawing-section span:nth-child(2) { right: 18%; bottom: 34px; width: 4px; height: 55%; background: #151819; transform: skewX(-12deg); }
.drawing-section span:nth-child(3) { left: 18%; bottom: 34px; width: 46%; height: 38%; border-top: 4px solid #b8763d; transform: skewX(18deg); }
.drawing-section b { right: 24px; top: 24px; width: 34px; height: 34px; border-radius: 999px; border: 4px solid #12683a; }
@keyframes projectReveal {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.tag {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(18,104,58,.1);
  color: #12683a;
  font-weight: 850;
  font-size: 13px;
}
.dark .tag { background: rgba(231,194,123,.14); color: #e7c27b; }

.contact-form {
  display: grid;
  gap: 16px;
}
.form-head h3 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}
.form-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: #273131;
  font-weight: 900;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17,23,23,.14);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255,253,248,.92);
  color: var(--ink);
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form textarea {
  resize: vertical;
  min-height: 118px;
  line-height: 1.5;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(184,118,61,.58);
  box-shadow: 0 0 0 4px rgba(231,194,123,.24);
  background: #fff;
}
.robot-check {
  width: max-content;
  max-width: 100%;
  grid-template-columns: auto 1fr;
  align-items: center;
  border: 1px solid rgba(17,23,23,.12);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255,255,255,.54);
}
.robot-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}
.form-submit {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 950;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.form-submit:hover {
  transform: translateY(-2px);
}
.contact-form.is-sent .form-submit {
  pointer-events: none;
}
.offer-contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
}
.offer-contact-wrap h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: .95;
}
.offer-contact-wrap p:not(.kicker) {
  max-width: 520px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}
.offer-contact-form {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184,118,61,.2);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 36px);
  background:
    radial-gradient(circle at 15% 0, rgba(231,194,123,.28), transparent 34%),
    linear-gradient(145deg, rgba(255,253,248,.98), rgba(239,244,237,.92));
  box-shadow: var(--soft-shadow);
}
.offer-contact-form .form-submit {
  background: linear-gradient(135deg, #e7c27b, #b8763d);
  color: #111717;
  box-shadow: 0 16px 34px rgba(184,118,61,.24);
}
.form-message {
  margin: 0;
  min-height: 22px;
  color: var(--muted);
  font-weight: 850;
}
.form-message.is-success {
  color: #12683a;
}
.form-message.is-error {
  color: #9b241e;
}
.hadarim-form {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17,23,23,.1);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 90% 0, rgba(231,194,123,.22), transparent 28%),
    linear-gradient(145deg, rgba(255,253,248,.96), rgba(239,244,237,.9));
  box-shadow: var(--soft-shadow);
}
.hadarim-form::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block: 0;
  width: 7px;
  background: linear-gradient(180deg, var(--green), var(--copper));
}
.hadarim-form .form-submit {
  width: max-content;
  min-width: 160px;
  background: linear-gradient(135deg, #e7c27b, #b8763d);
  color: #151819;
  box-shadow: 0 16px 34px rgba(184,118,61,.22);
}
.hadarim-form.is-sent .form-submit {
  background: linear-gradient(135deg, #e9f3e8, #cfe5d4);
  color: #12683a;
  box-shadow: none;
}

.material-strip {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: stretch;
}
.material-panel {
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: #222;
}
.material-panel img { width: 100%; height: 100%; object-fit: cover; }
.material-notes {
  display: grid;
  gap: 12px;
}
.note-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fffdf8;
}
.note-box strong { display: block; font-size: 22px; margin-bottom: 6px; }
.note-box p { color: var(--muted); line-height: 1.55; margin: 0; }

.team-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,253,248,.95), rgba(247,245,239,.92));
}
.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(231,194,123,.2), transparent 28%),
    linear-gradient(135deg, transparent 58%, rgba(18,104,58,.08));
  pointer-events: none;
}
.team-photo {
  position: relative;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: #fff;
}
.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 70%, rgba(17,23,23,.08)),
    linear-gradient(90deg, rgba(231,194,123,.05), transparent 38%);
  pointer-events: none;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(1.04) saturate(.98) contrast(1.02);
  transition: transform .55s ease, filter .35s ease;
}
.team-card:hover .team-photo img {
  transform: scale(1.045);
  filter: brightness(1.07) saturate(1.02) contrast(1.04);
}
.team-card .card-body {
  position: relative;
  z-index: 1;
}
.team-role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(18,104,58,.1);
  color: #12683a;
  font-weight: 900;
  font-size: 14px;
}
.team-role svg {
  width: 18px;
  height: 18px;
}

.timeline { display: grid; gap: 8px; }
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0,1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: #fffdf8;
  transition: opacity .25s ease, filter .25s ease, background .25s ease, border-color .25s ease;
}
.time { color: var(--copper); font-weight: 950; font-size: 19px; }
.timeline-item h3 { margin-bottom: 4px; font-size: 19px; }
.timeline-item p { color: var(--muted); line-height: 1.35; margin: 0; font-size: 15px; }
.inline-sponsor-logo {
  display: inline-block;
  width: auto;
  max-width: 92px;
  max-height: 24px;
  margin: 0 5px;
  border-radius: 6px;
  padding: 2px 5px;
  background: #fff;
  object-fit: contain;
  vertical-align: middle;
  box-shadow: 0 0 0 1px rgba(17, 23, 23, .08);
}
.fox-plus-inline {
  max-width: 104px;
}
.termokir-inline {
  max-width: 96px;
  max-height: 22px;
}
.hever-inline {
  max-width: 112px;
  max-height: 28px;
}
.eldan-inline {
  max-width: 128px;
  max-height: 30px;
}
.itzik-inline {
  max-width: 126px;
  max-height: 28px;
}
.harash-inline {
  max-width: 78px;
  max-height: 34px;
}
.timeline-speaker-content {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.timeline-media-content {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.timeline-media-photo {
  width: 66px;
  height: 66px;
  border-radius: 16px;
  border: 3px solid #fff;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 10px 20px rgba(17, 23, 23, .14);
}
.timeline-speaker-photo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 10px 20px rgba(17, 23, 23, .14);
}
.timeline-speaker-stack {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.timeline-speaker-stack .timeline-speaker-photo + .timeline-speaker-photo {
  margin-inline-start: 0;
}
.roundtable-content {
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: start;
}
.roundtable-content .timeline-media-photo {
  width: 72px;
  height: 72px;
}
.roundtable-content .timeline-speaker-stack .timeline-speaker-photo {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-width: 2px;
}
.speakers-only {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.speakers-only .timeline-speaker-stack {
  margin-bottom: 0;
  justify-content: flex-start;
}
.speakers-only .timeline-speaker-photo {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
}
.timeline-item.is-past {
  opacity: .48;
  filter: grayscale(1);
  background: #ecece8;
  border-color: rgba(17,23,23,.08);
}
.timeline-item.is-past .time,
.timeline-item.is-past h3,
.timeline-item.is-past p {
  color: #8a8f8d;
}
.timeline-item.is-current {
  border-color: rgba(184,118,61,.58);
  background: linear-gradient(135deg, rgba(255,253,248,1), rgba(255,244,219,.96));
  box-shadow: 0 16px 44px rgba(184,118,61,.18);
}
.activity-item {
  border-color: rgba(37, 133, 119, .2);
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.95), transparent 30%),
    linear-gradient(135deg, rgba(232, 249, 241, .98), rgba(255, 246, 224, .96));
}
.activity-item.pool {
  border-color: rgba(24, 127, 176, .22);
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.95), transparent 30%),
    linear-gradient(135deg, rgba(225, 247, 255, .98), rgba(255, 244, 221, .94));
}
.activity-content {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.activity-content img {
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(17,23,23,.14);
}
.activity-item .time { color: #187f70; }
.activity-item.pool .time { color: #1679a8; }
.timeline-item.is-past .activity-content img { filter: grayscale(1); opacity: .72; }
.timeline-status {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 24px;
  margin-top: 8px;
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(18,104,58,.1);
  color: #12683a;
  font-size: 12px;
  font-weight: 900;
}
.timeline-status[hidden] { display: none; }
.timeline-item.is-past .timeline-status {
  background: rgba(104,114,114,.12);
  color: #7b8381;
}
.timeline-item.is-current .timeline-status {
  background: rgba(184,118,61,.16);
  color: #8f5527;
}

.northline-page {
  --nl-ink: #171914;
  --nl-stone: #f2eee4;
  --nl-paper: #fffaf0;
  --nl-line: rgba(23,25,20,.14);
  --nl-blue: #143f5c;
  --nl-lime: #c6e268;
  --nl-rust: #b86b4b;
  margin: 0;
  color: var(--nl-ink);
  background:
    linear-gradient(90deg, rgba(20,63,92,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20,63,92,.08) 1px, transparent 1px),
    var(--nl-stone);
  background-size: 44px 44px;
  font-family: "Assistant", "Heebo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.nl-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--nl-line);
  background: rgba(242,238,228,.88);
  backdrop-filter: blur(18px);
}
.nl-nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.nl-brand,
.nl-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nl-brand {
  position: relative;
  padding-inline-end: 10px;
}
.nl-mark {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid var(--nl-ink);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255,250,240,.88), rgba(198,226,104,.56)),
    var(--nl-lime);
  box-shadow: 6px 6px 0 rgba(20,63,92,.18);
  overflow: hidden;
}
.nl-mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(23,25,20,.16);
  border-block-end: 0;
}
.nl-mark::after {
  content: "";
  position: absolute;
  inset-inline-end: 8px;
  inset-block-start: 9px;
  width: 10px;
  height: 38px;
  background: linear-gradient(180deg, rgba(184,107,75,.18), transparent);
}
.nl-mark svg {
  position: relative;
  width: 46px;
  height: 46px;
  overflow: visible;
}
.nl-mark path {
  fill: none;
  stroke: var(--nl-ink);
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nl-mark-roof { stroke-width: 5.5; }
.nl-mark-n,
.nl-mark-l {
  stroke-width: 5;
}
.nl-mark-base {
  stroke-width: 4;
  stroke: var(--nl-rust);
}
.nl-brand strong {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-inline-start: 2px solid rgba(23,25,20,.16);
  padding-inline-start: 12px;
  font-size: 19px;
  letter-spacing: 0;
}
.nl-brand strong::after {
  content: "";
  position: absolute;
  inset-inline-start: 12px;
  inset-block-end: 4px;
  width: 74px;
  height: 4px;
  background: var(--nl-rust);
}
.nl-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  color: rgba(23,25,20,.72);
  font-weight: 900;
}
.nl-links a:hover {
  color: var(--nl-ink);
  border-color: var(--nl-rust);
}
.nl-hero {
  padding: clamp(32px, 6vw, 78px) 0 34px;
  overflow: hidden;
}
.nl-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}
.nl-hero-copy {
  min-height: 620px;
  display: grid;
  align-content: center;
}
.nl-eyebrow {
  margin: 0 0 16px;
  color: var(--nl-rust);
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: 0;
}
.nl-hero h1,
.nl-section-title h2,
.nl-studio-copy h2,
.nl-contact h2 {
  margin: 0;
  font-size: clamp(48px, 8vw, 112px);
  line-height: .86;
  letter-spacing: 0;
}
.nl-hero-copy p:not(.nl-eyebrow),
.nl-section-title,
.nl-studio-copy p {
  color: rgba(23,25,20,.72);
  font-size: 20px;
  line-height: 1.75;
}
.nl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.nl-actions a,
.nl-contact-row a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--nl-ink);
  padding: 0 18px;
  background: var(--nl-ink);
  color: var(--nl-paper);
  font-weight: 1000;
  box-shadow: 7px 7px 0 var(--nl-lime);
  transition: transform .22s ease, box-shadow .22s ease;
}
.nl-actions a + a {
  background: var(--nl-paper);
  color: var(--nl-ink);
  box-shadow: 7px 7px 0 rgba(20,63,92,.18);
}
.nl-actions a:hover,
.nl-contact-row a:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--nl-lime);
}
.nl-visual {
  position: relative;
  min-height: 660px;
}
.nl-main-img,
.nl-float-img,
.nl-studio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nl-main-img {
  position: absolute;
  inset: 26px 0 0 80px;
  width: calc(100% - 80px);
  height: 590px;
  border: 2px solid var(--nl-ink);
  box-shadow: 18px 18px 0 var(--nl-blue);
}
.nl-float-img {
  position: absolute;
  left: 0;
  bottom: 32px;
  width: min(44%, 330px);
  height: 240px;
  border: 2px solid var(--nl-ink);
  box-shadow: 12px 12px 0 var(--nl-lime);
}
.nl-brief {
  position: absolute;
  right: 32px;
  bottom: 0;
  max-width: 310px;
  border: 2px solid var(--nl-ink);
  padding: 20px;
  background: var(--nl-paper);
  box-shadow: 10px 10px 0 var(--nl-rust);
}
.nl-brief span,
.nl-project span,
.nl-people span,
.nl-contact-row span {
  display: block;
  color: rgba(23,25,20,.58);
  font-weight: 900;
}
.nl-brief strong {
  display: block;
  margin-top: 6px;
  font-size: 28px;
  line-height: 1.05;
}
.nl-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
  border: 2px solid var(--nl-ink);
  background: var(--nl-paper);
}
.nl-metrics div {
  padding: 22px;
  border-inline-start: 1px solid var(--nl-line);
}
.nl-metrics div:last-child { border-inline-start: 0; }
.nl-metrics strong {
  display: block;
  color: var(--nl-blue);
  font-size: clamp(34px, 5vw, 62px);
  line-height: .9;
}
.nl-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(23,25,20,.68);
  font-weight: 900;
}
.nl-section {
  padding: clamp(64px, 9vw, 126px) 0;
}
.nl-split {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}
.nl-section-title {
  position: sticky;
  top: 102px;
}
.nl-section-title h2,
.nl-studio-copy h2,
.nl-contact h2 {
  font-size: clamp(38px, 6vw, 76px);
}
.nl-process {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--nl-ink);
}
.nl-process article {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-bottom: 2px solid var(--nl-ink);
}
.nl-process article > span {
  color: var(--nl-rust);
  font-size: 34px;
  font-weight: 1000;
}
.nl-process h3,
.nl-project h3 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.05;
}
.nl-process p,
.nl-project p {
  margin: 0;
  color: rgba(23,25,20,.68);
  font-size: 18px;
  line-height: 1.65;
}
.nl-portfolio {
  background: var(--nl-ink);
  color: var(--nl-paper);
}
.nl-portfolio .nl-section-title { color: rgba(255,250,240,.72); }
.nl-portfolio .nl-section-title h2 { color: var(--nl-paper); }
.nl-projects {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}
.nl-project {
  display: grid;
  grid-template-columns: minmax(260px, .64fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  border: 1px solid rgba(255,250,240,.18);
  padding: 16px;
  background: rgba(255,250,240,.06);
  transition: transform .26s ease, background .26s ease, border-color .26s ease;
}
.nl-project:hover {
  transform: translateX(-8px);
  border-color: rgba(198,226,104,.56);
  background: rgba(255,250,240,.1);
}
.nl-project img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.nl-project span { color: var(--nl-lime); }
.nl-project h3 { color: var(--nl-paper); }
.nl-project p { color: rgba(255,250,240,.72); }
.nl-studio {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}
.nl-studio-image {
  height: 560px;
  border: 2px solid var(--nl-ink);
  box-shadow: -18px 18px 0 var(--nl-lime);
}
.nl-studio-copy {
  border-inline-start: 3px solid var(--nl-rust);
  padding-inline-start: clamp(22px, 4vw, 44px);
}
.nl-people {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.nl-people div {
  border: 1px solid var(--nl-line);
  padding: 16px;
  background: rgba(255,250,240,.72);
}
.nl-people strong {
  display: block;
  font-size: 22px;
}
.nl-contact {
  padding-top: 0;
}
.nl-contact-inner {
  display: grid;
  grid-template-columns: minmax(280px, .84fr) minmax(320px, 1.16fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
  border: 2px solid var(--nl-ink);
  padding: clamp(28px, 6vw, 70px);
  background: var(--nl-blue);
  color: var(--nl-paper);
  box-shadow: 18px 18px 0 var(--nl-lime);
}
.nl-contact .nl-eyebrow,
.nl-contact-row span { color: var(--nl-lime); }
.nl-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}
.nl-contact-row span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,250,240,.22);
  padding: 0 14px;
}
.nl-contact-row a {
  background: var(--nl-paper);
  color: var(--nl-ink);
}
.northline-form {
  border: 2px solid var(--nl-ink);
  padding: clamp(20px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(255,250,240,.98), rgba(232,239,213,.92));
  color: var(--nl-ink);
  box-shadow: 10px 10px 0 var(--nl-rust);
}
.northline-form label {
  color: var(--nl-ink);
}
.northline-form input,
.northline-form select,
.northline-form textarea {
  border: 2px solid var(--nl-ink);
  border-radius: 0;
  background: #fffaf0;
  color: var(--nl-ink);
}
.northline-form input:focus,
.northline-form select:focus,
.northline-form textarea:focus {
  border-color: var(--nl-blue);
  box-shadow: 5px 5px 0 var(--nl-lime);
}
.northline-form .robot-check {
  border: 2px solid var(--nl-ink);
  border-radius: 0;
  background: rgba(255,250,240,.8);
}
.northline-form .robot-check input {
  accent-color: var(--nl-rust);
}
.northline-form .form-submit {
  width: max-content;
  min-width: 168px;
  border: 2px solid var(--nl-ink);
  border-radius: 0;
  background: var(--nl-ink);
  color: var(--nl-paper);
  box-shadow: 7px 7px 0 var(--nl-lime);
}
.northline-form .form-submit:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--nl-lime);
}
.northline-form.is-sent .form-submit {
  background: var(--nl-lime);
  color: var(--nl-ink);
  box-shadow: none;
}
.nl-footer {
  padding: 36px 0 52px;
  background: var(--nl-ink);
  color: rgba(255,250,240,.74);
}
.nl-footer .wide {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.orbital {
  position: absolute;
  inset-inline-end: 7vw;
  inset-block-start: 18vh;
  width: min(32vw, 420px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: .9;
  transform-style: preserve-3d;
  animation: breathe 7s ease-in-out infinite;
}
.cube {
  position: absolute;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 80px rgba(0,0,0,.22);
}
.cube.one { inset: 10% 20% auto auto; width: 45%; height: 34%; transform: rotate(8deg) skewY(-8deg); }
.cube.two { inset: auto auto 12% 6%; width: 48%; height: 40%; transform: rotate(-10deg) skewY(7deg); }
.cube.three { inset: 34% auto auto 26%; width: 30%; height: 52%; transform: rotate(16deg) skewY(-12deg); }
@keyframes breathe {
  0%,100% { transform: translate3d(0,0,0) rotateX(0deg); }
  50% { transform: translate3d(-12px,18px,0) rotateX(7deg); }
}

.logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
.logos.sponsor-marquee.is-ready {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(17,23,23,.1);
  border-radius: 16px;
  padding: 14px 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(184,118,61,.1), transparent 30%),
    radial-gradient(circle at 92% 86%, rgba(18,104,58,.08), transparent 32%),
    rgba(255,253,248,.78);
  box-shadow: var(--soft-shadow);
}
.sponsor-lane {
  position: relative;
  height: 138px;
  overflow: hidden;
  direction: ltr;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, transparent 6%, #000 14%, #000 86%, transparent 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, transparent 6%, #000 14%, #000 86%, transparent 94%, transparent 100%);
}
.sponsor-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 138px;
  animation: sponsor-logo-loop var(--duration, 52s) linear infinite;
  transform: translate3d(0,0,0);
  will-change: transform;
}
.sponsor-lane-reverse .sponsor-track {
  animation-name: sponsor-logo-loop-reverse;
}
.sponsor-lane:hover .sponsor-track {
  animation-play-state: paused;
}
.sponsor-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  padding-inline: 6px;
}
.sponsor-marquee.is-ready .logo-tile {
  width: 190px;
  min-height: 0;
  height: 118px;
  flex: 0 0 auto;
  padding: 14px 18px;
}
.sponsor-marquee.is-ready .logo-tile img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 84px;
}
.sponsor-marquee.is-ready .logo-tile.safe-logo img,
.sponsor-marquee.is-ready .logo-tile.tall-logo img,
.sponsor-marquee.is-ready .logo-tile.wide-logo img,
.sponsor-marquee.is-ready .logo-tile.ab-logo img {
  width: auto;
  max-height: 84px;
}
.sponsor-marquee.is-ready .logo-tile.pandoor-logo,
.sponsor-marquee.is-ready .logo-tile.supergas-logo {
  width: 382px;
}
.sponsor-marquee.is-ready .logo-tile.manaf-logo {
  width: 300px;
}
.sponsor-marquee.is-ready .logo-tile.pandoor-logo img,
.sponsor-marquee.is-ready .logo-tile.supergas-logo img {
  width: auto;
  max-width: 96%;
  max-height: 84px;
  object-fit: contain;
}
.sponsor-marquee.is-ready .logo-tile.manaf-logo img {
  width: auto;
  max-width: 94%;
  max-height: 88px;
  object-fit: contain;
}
.sponsor-marquee.is-ready .logo-tile.eldan-logo {
  width: 268px;
  padding: 12px 16px;
}
.sponsor-marquee.is-ready .logo-tile.eldan-logo img {
  width: auto;
  max-width: 96%;
  max-height: 88px;
  object-fit: contain;
}
.sponsor-marquee.is-ready .logo-tile.palziv-logo {
  width: 210px;
  padding: 12px;
}
.sponsor-marquee.is-ready .logo-tile.palziv-logo img {
  width: auto;
  max-width: 92%;
  max-height: 86px;
  object-fit: contain;
}
.sponsor-marquee.is-ready .logo-tile:hover {
  transform: translateY(-3px) scale(1.02);
}
@keyframes sponsor-logo-loop {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-25%,0,0); }
}
@keyframes sponsor-logo-loop-reverse {
  from { transform: translate3d(-25%,0,0); }
  to { transform: translate3d(0,0,0); }
}
.logo-tile {
  box-sizing: border-box;
  min-height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
  text-align: center;
  font-weight: 950;
  color: #1b2424;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.logo-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(184,118,61,.42);
  box-shadow: var(--soft-shadow);
}
.logo-tile img {
  display: block;
  width: auto;
  height: auto;
  max-height: calc(100% - 8px);
  max-width: 100%;
  object-fit: contain;
}
.logo-tile.tall-logo img {
  max-height: calc(100% - 8px);
}
.logo-tile.safe-logo img {
  max-height: calc(100% - 8px);
}
.logo-tile.pandoor-logo {
  grid-column: span 2;
}
.logo-tile.pandoor-logo img {
  max-height: calc(100% - 8px);
  width: min(100%, 520px);
  object-fit: contain;
}
.logo-tile.eldan-logo {
  grid-column: auto;
}
.logo-tile.eldan-logo img {
  max-height: calc(100% - 8px);
  width: min(100%, 245px);
  object-fit: contain;
}
.logo-tile.palziv-logo {
  grid-column: auto;
}
.logo-tile.palziv-logo img {
  max-height: calc(100% - 14px);
  width: min(100%, 184px);
  object-fit: contain;
}
.logo-tile.manaf-logo img {
  max-height: calc(100% - 8px);
  width: min(100%, 300px);
  object-fit: contain;
}
.logo-tile.hever-logo img {
  max-height: calc(100% - 8px);
  width: min(100%, 230px);
}
.logo-tile.supergas-logo {
  grid-column: span 2;
  background: #fff;
}
.logo-tile.supergas-logo img {
  max-height: calc(100% - 8px);
  max-width: 96%;
}
.logo-tile.wide-logo img {
  max-height: calc(100% - 8px);
}
.logo-tile.ab-logo {
  background: #fff;
  border-color: rgba(17,23,23,.1);
}
.logo-tile.ab-logo img {
  max-height: calc(100% - 8px);
}
.logo-tile .logo-wordmark {
  display: grid;
  gap: 4px;
  font-size: 20px;
  line-height: 1.1;
}
.logo-tile .logo-wordmark small {
  color: var(--muted);
  font-size: 13px;
}

.conference-hero {
  background: #0f1714;
}
.conference-hero .hero-media img { opacity: .62; }
.conference-hero::after {
  background:
    linear-gradient(90deg, rgba(17,23,23,.76), rgba(17,23,23,.46) 48%, rgba(17,23,23,.08)),
    linear-gradient(0deg, rgba(17,23,23,.72), transparent 45%);
}
.event-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 22px;
  align-items: center;
}
.event-hero-card {
  align-self: start;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: clamp(22px, 3.5vw, 38px);
  background: linear-gradient(135deg, rgba(17,23,23,.72), rgba(18,104,58,.42));
  color: #fff;
  box-shadow: 0 28px 90px rgba(0,0,0,.26);
  backdrop-filter: blur(18px);
  text-align: start;
}
.event-hero-card .countdown {
  margin: 0 0 24px auto;
}
.event-hero-card span {
  display: block;
  color: #e7c27b;
  font-weight: 950;
}
.event-hero-card .event-card-date {
  margin-top: 6px;
  color: rgba(255,255,255,.8);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 900;
}
.event-hero-card strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(34px, 5vw, 74px);
  line-height: .92;
}
.event-hero-card p {
  max-width: 420px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.55;
}
.registration-surge {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  margin-top: clamp(28px, 5vw, 58px);
  padding: clamp(24px, 5vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(231,194,123,.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 16%, rgba(231,194,123,.32), transparent 30%),
    radial-gradient(circle at 6% 100%, rgba(18,104,58,.18), transparent 34%),
    linear-gradient(135deg, #14201d, #26342d 54%, #fff8e8);
  box-shadow: 0 28px 80px rgba(17,23,23,.18);
}
.registration-surge::before {
  content: "";
  position: absolute;
  inset: -45% -12%;
  z-index: -1;
  background: conic-gradient(from 120deg, transparent, rgba(231,194,123,.34), transparent 34%, rgba(255,255,255,.2), transparent 62%);
  animation: orbitGlow 11s linear infinite;
  opacity: .62;
}
.registration-surge::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(17,23,23,.88), rgba(38,52,45,.8) 58%, rgba(255,248,232,.9));
}
.registration-surge .kicker {
  color: #e7c27b;
}
.registration-surge h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 72px);
  line-height: .95;
}
.registration-surge p:not(.kicker) {
  max-width: 700px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}
.registration-surge .pill {
  min-width: 230px;
  justify-content: center;
  padding: 18px 26px;
  font-size: 18px;
  box-shadow: 0 18px 44px rgba(184,118,61,.28);
}
.smart-install {
  margin-top: 0;
  border: 1px solid rgba(231,194,123,.34);
  border-radius: 8px;
  padding: 0;
  background:
    radial-gradient(circle at 0 0, rgba(231,194,123,.18), transparent 46%),
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  border: 0;
  box-shadow: none;
}
.smart-install h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(30px, 8vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 950;
}
.smart-install-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.smart-install-button {
  width: 100%;
  min-height: 48px;
  border: 0;
  cursor: pointer;
  justify-content: center;
}
.smart-install-button.pill.light {
  background: rgba(255,255,255,.92);
  color: #111717;
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
}
.smart-install-button:hover {
  transform: translateY(-2px);
}
.smart-install p {
  max-width: none;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}
.modal-open { overflow: hidden; }
.install-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}
.install-modal[hidden] { display: none; }
.install-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,12,12,.62);
  backdrop-filter: blur(10px);
}
.install-dialog {
  position: relative;
  width: min(480px, 100%);
  border: 1px solid rgba(231,194,123,.3);
  border-radius: 8px;
  padding: 24px;
  background:
    radial-gradient(circle at 0 0, rgba(231,194,123,.18), transparent 42%),
    #fffdf8;
  box-shadow: 0 34px 100px rgba(0,0,0,.32);
}
.install-close {
  position: absolute;
  inset-inline-start: 14px;
  inset-block-start: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-weight: 950;
}
.app-badge img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(18,104,58,.22);
}
.install-dialog h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 6vw, 46px);
  line-height: .95;
}
.install-dialog p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}
.install-dialog ol {
  display: grid;
  gap: 10px;
  margin: 16px 0 22px;
  padding-inline-start: 22px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}
.install-open-link {
  width: 100%;
  justify-content: center;
}
.identity-strip {
  padding: 22px 0;
  background: #fffdf8;
  border-bottom: 1px solid var(--line);
}
.identity-inner {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
}
.identity-inner img {
  max-height: 138px;
  width: 100%;
  object-fit: contain;
}
.identity-logo-link {
  display: inline-grid;
  width: max-content;
  max-width: 100%;
  border-radius: 8px;
  transition: transform .22s ease, filter .22s ease;
}
.identity-logo-link:hover,
.identity-logo-link:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 14px 24px rgba(18,104,58,.16));
}
.identity-logo-link:focus-visible {
  outline: 3px solid rgba(184,118,61,.54);
  outline-offset: 5px;
}
.identity-inner h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1;
}
.date-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}
.date-card div,
.date-card a {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255,255,255,.1);
  color: #fff;
}
.date-card a {
  text-decoration: none;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.date-card a:hover,
.date-card a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(231,194,123,.68);
  background: rgba(231,194,123,.18);
  outline: 0;
}
.date-card strong { display: block; font-size: 30px; }

.speaker {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 20px;
  align-items: stretch;
}
.speaker-visual {
  min-height: 420px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 14% 18%, rgba(231,194,123,.18), transparent 32%),
    linear-gradient(135deg, rgba(18,104,58,.92), rgba(21,24,25,.94)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1200&q=82") center/cover;
  color: #fff;
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  align-content: space-between;
  gap: 28px;
  box-shadow: 0 24px 70px rgba(17,23,23,.18);
}
.speaker-card-top {
  display: grid;
  grid-template-columns: minmax(126px, 180px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.speaker-portrait {
  position: relative;
  width: 100%;
  margin: 0;
}
.speaker-portrait::before {
  content: "";
  position: absolute;
  inset-block-start: -8px;
  inset-inline-start: -8px;
  z-index: -1;
  width: calc(100% + 16px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(231,194,123,.28);
  animation: portraitPulse 4.8s ease-in-out infinite;
}
.speaker-portrait img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, #e7c27b, rgba(255,255,255,.94), #b8763d);
  object-fit: cover;
  object-position: 50% 28%;
  box-shadow: 0 22px 52px rgba(0,0,0,.32);
}
.speaker-portrait figcaption {
  margin-top: 8px;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
}
.speaker-meta {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.speaker-date {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(231,194,123,.36);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255,255,255,.12);
  color: #e7c27b;
  font-weight: 950;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.speaker-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255,255,255,.9);
  color: #151819;
  font-size: 14px;
  font-weight: 950;
}
.speaker-title-block {
  max-width: 520px;
}
.speaker-title-block .kicker {
  margin-bottom: 8px;
  color: #e7c27b;
  font-size: 16px;
}
.speaker-title-block h2 {
  margin: 0 0 8px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .9;
}
.speaker-title-block p:not(.kicker) {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 850;
  line-height: 1.25;
}
@keyframes portraitPulse {
  0%, 100% { transform: scale(.96); opacity: .34; }
  50% { transform: scale(1.08); opacity: .78; }
}
.speaker-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  padding: clamp(24px, 4vw, 44px);
}
.speaker-copy h2 { font-size: clamp(32px, 5vw, 62px); line-height: .95; margin-bottom: 14px; }
.speaker-copy p { color: #526060; line-height: 1.75; font-size: 18px; }

.conference-offer {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(21,24,25,.96), rgba(35,78,104,.88)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=82") center/cover;
  color: #fff;
  box-shadow: var(--shadow);
}
.conference-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
}
.conference-offer h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(38px, 6vw, 82px);
  line-height: .9;
}
.conference-offer p {
  max-width: 660px;
  color: rgba(255,255,255,.78);
  font-size: 19px;
  line-height: 1.65;
}
.offer-price-line {
  display: flex;
  align-items: end;
  gap: 10px;
  margin: 16px 0 4px;
  color: #e7c27b;
  font-weight: 950;
}
.offer-price-line strong {
  font-size: clamp(60px, 10vw, 118px);
  line-height: .8;
}
.conference-offer .offer-note {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 560px;
  margin-top: 8px;
  border: 1px solid rgba(231,194,123,.28);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height: 1.35;
}
.conference-offer .offer-note strong {
  color: #e7c27b;
  font-weight: 950;
}
.offer-showcase {
  display: grid;
  gap: 18px;
  perspective: 1400px;
}
.showcase-site {
  position: relative;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 14px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.06)),
    rgba(11,18,20,.34);
  box-shadow: 0 22px 56px rgba(0,0,0,.26);
  backdrop-filter: blur(16px);
  transform: rotateY(-4deg) translateZ(0);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.showcase-site::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, transparent 12%, rgba(255,255,255,.18) 44%, transparent 72%);
  opacity: 0;
  transform: translateX(22%);
  transition: opacity .28s ease, transform .28s ease;
  pointer-events: none;
}
.showcase-site:hover {
  border-color: rgba(231,194,123,.54);
  box-shadow: 0 28px 74px rgba(0,0,0,.34);
  transform: rotateY(0) translateY(-4px);
}
.showcase-site:hover::before {
  opacity: 1;
  transform: translateX(-18%);
}
.showcase-stage {
  position: relative;
  min-height: 206px;
  padding: 10px 10px 20px 54px;
}
.desktop-shot {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.phone-shot {
  position: absolute;
  left: 8px;
  bottom: 2px;
  width: min(30%, 104px);
  aspect-ratio: 9 / 18;
  object-fit: cover;
  object-position: top;
  border: 4px solid #f7f1e6;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(0,0,0,.36);
}
.showcase-copy {
  display: grid;
  gap: 4px;
  padding: 0 4px 4px;
}
.showcase-copy span {
  width: max-content;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(231,194,123,.14);
  color: #e7c27b;
  font-size: 12px;
  font-weight: 950;
}
.showcase-copy strong {
  color: #fff;
  font-size: 23px;
  line-height: 1.1;
}
.showcase-copy p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.45;
}

.offer-hero::after {
  background:
    linear-gradient(90deg, rgba(17,23,23,.9), rgba(17,23,23,.52) 48%, rgba(17,23,23,.18)),
    linear-gradient(0deg, rgba(17,23,23,.82), transparent 44%);
}
.price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0 4px;
  color: #e7c27b;
}
.price strong { font-size: clamp(72px, 13vw, 156px); line-height: .8; }
.screens {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.screen-card {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  padding: 16px;
}
.screen-pair {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 12px;
  align-items: start;
}
.screen-pair img {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #ddd;
}
.mobile-shot { aspect-ratio: 9 / 18; object-fit: cover; object-position: top; }
.desktop-shot { aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }

.footer {
  padding: 36px 0 52px;
  background: #111717;
  color: rgba(255,255,255,.74);
}
.footer .shell {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal {
  display: grid;
  gap: 6px;
  line-height: 1.65;
}
.footer-legal a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer a,
.nl-footer a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  html {
    scroll-padding-top: 176px;
  }
  .section,
  .nl-section {
    scroll-margin-top: 176px;
  }
  .nav-inner { align-items: flex-start; flex-direction: column; gap: 10px; padding: 12px 0; }
  .brand { width: 100%; gap: 10px; font-size: 16px; line-height: 1.15; }
  .brand-mark { width: 42px; height: 42px; flex: 0 0 auto; }
  .nav-links { width: 100%; }
  .nav-links a { flex: 1 1 auto; }
  .hero-stats, .grid-4, .logos { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3, .grid-2, .material-strip, .event-grid, .speaker, .screens, .conference-offer-grid, .offer-contact-wrap, .nl-contact-inner { grid-template-columns: 1fr; }
  .project-detail.is-open {
    grid-template-columns: 1fr;
  }
  .project-gallery {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .orbital { opacity: .42; width: 54vw; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .event-hero-card { align-self: stretch; }
  .registration-surge {
    grid-template-columns: 1fr;
  }
  .registration-surge .pill {
    width: max-content;
  }
  .nl-nav-inner { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .nl-links { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .nl-hero-grid,
  .nl-split,
  .nl-studio { grid-template-columns: 1fr; }
  .nl-hero-copy { min-height: auto; padding-top: 18px; }
  .nl-visual { min-height: 560px; }
  .nl-main-img { inset-inline-start: 34px; width: calc(100% - 50px); height: 500px; }
  .nl-section-title { position: static; }
  .nl-project { grid-template-columns: 1fr; }
  .nl-studio-copy { border-inline-start: 0; padding-inline-start: 0; }
}

@media (max-width: 640px) {
  .shell, .wide { width: min(100% - 22px, 1180px); }
  .hero { min-height: auto; }
  .hero-content { padding: 54px 0 38px; }
  h1 { font-size: clamp(44px, 16vw, 76px); }
  .hero-stats, .date-card, .logos { grid-template-columns: 1fr; }
  .nav-links { gap: 7px; }
  .nav-links a,
  .pill {
    min-height: 38px;
    padding: 0 12px;
    font-size: 15px;
  }
  .logo-tile.eldan-logo,
  .logo-tile.palziv-logo,
  .logo-tile.pandoor-logo,
  .logo-tile.manaf-logo,
  .logo-tile.supergas-logo {
    grid-column: auto;
  }
  .sponsor-lane,
  .sponsor-track {
    height: auto;
  }
  .logos.sponsor-marquee.is-ready {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .sponsor-lane {
    display: contents;
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .sponsor-track {
    display: contents;
    width: auto;
    animation: none;
  }
  .sponsor-group {
    display: contents;
  }
  .sponsor-group[aria-hidden="true"] {
    display: none;
  }
  .sponsor-marquee.is-ready .logo-tile {
    width: auto;
    height: 98px;
    padding: 12px 14px;
  }
  .sponsor-marquee.is-ready .logo-tile img,
  .sponsor-marquee.is-ready .logo-tile.safe-logo img,
  .sponsor-marquee.is-ready .logo-tile.tall-logo img,
  .sponsor-marquee.is-ready .logo-tile.wide-logo img,
  .sponsor-marquee.is-ready .logo-tile.ab-logo img {
    width: auto;
    max-height: 68px;
  }
  .sponsor-marquee.is-ready .logo-tile.pandoor-logo,
  .sponsor-marquee.is-ready .logo-tile.supergas-logo {
    width: auto;
    grid-column: span 2;
  }
  .sponsor-marquee.is-ready .logo-tile.manaf-logo {
    width: auto;
    grid-column: span 2;
  }
  .sponsor-marquee.is-ready .logo-tile.pandoor-logo img,
  .sponsor-marquee.is-ready .logo-tile.supergas-logo img {
    width: auto;
    max-height: 68px;
  }
  .sponsor-marquee.is-ready .logo-tile.manaf-logo img {
    width: auto;
    max-height: 70px;
  }
  .sponsor-marquee.is-ready .logo-tile.eldan-logo {
    width: auto;
    grid-column: auto;
  }
  .sponsor-marquee.is-ready .logo-tile.eldan-logo img {
    width: auto;
    max-width: 96%;
    max-height: 72px;
  }
  .sponsor-marquee.is-ready .logo-tile.palziv-logo {
    width: auto;
    grid-column: auto;
  }
  .sponsor-marquee.is-ready .logo-tile.palziv-logo img {
    width: auto;
    max-width: 92%;
    max-height: 74px;
  }
  .sponsor-group {
    gap: 10px;
    padding-inline: 5px;
  }
  .countdown-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .identity-inner { grid-template-columns: 1fr; text-align: center; }
  .identity-inner img { max-height: 132px; }
  .identity-logo-link { justify-self: center; }
  .speaker-card-top {
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 14px;
  }
  .speaker-meta {
    justify-content: flex-start;
  }
  .speaker-visual {
    min-height: 0;
  }
  .benefit-glow {
    width: 100%;
    border-radius: 18px;
    padding: 12px 14px;
    text-align: center;
  }
  .smart-install-actions {
    grid-template-columns: 1fr;
  }
  .offer-showcase { gap: 14px; }
  .showcase-site { transform: none; }
  .showcase-stage { min-height: 164px; padding-left: 44px; }
  .phone-shot { width: min(28%, 86px); border-width: 3px; border-radius: 14px; }
  .project-card {
    min-height: 0;
  }
  .project-toggle {
    width: 42px;
    height: 42px;
    inset-block-start: 10px;
    inset-inline-start: 10px;
  }
  .project-detail {
    margin-top: 14px;
  }
  .project-detail-copy {
    padding: 22px;
  }
  .hadarim-form .form-submit,
  .northline-form .form-submit {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding-inline: 16px;
  }
  .robot-check {
    width: 100%;
  }
  .project-stat-row {
    grid-template-columns: 1fr;
  }
  .gallery-tile {
    grid-template-rows: 168px 1fr;
  }
  .timeline-item { grid-template-columns: 1fr; }
  .activity-content { grid-template-columns: 54px minmax(0, 1fr); }
  .activity-content img { width: 54px; }
  .timeline-media-content {
    grid-template-columns: 56px minmax(0, 1fr);
  }
  .roundtable-content {
    grid-template-columns: 1fr;
  }
  .timeline-media-photo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }
  .roundtable-content .timeline-media-photo {
    width: 100%;
    height: 92px;
  }
  .roundtable-content .timeline-speaker-stack .timeline-speaker-photo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
  .speakers-only {
    grid-template-columns: 1fr;
  }
  .screen-pair { grid-template-columns: 1fr; }
  .mobile-shot { max-height: 520px; width: 58%; margin: 0 auto; }
  .pill { width: 100%; }
  .registration-surge {
    text-align: center;
  }
  .registration-surge .pill {
    width: 100%;
  }
  .nl-hero { padding-top: 22px; }
  .nl-mark { width: 50px; height: 50px; }
  .nl-mark svg { width: 40px; height: 40px; }
  .nl-brand strong {
    display: inline-flex;
    gap: 4px;
    white-space: nowrap;
  }
  .nl-links a { white-space: nowrap; }
  .nl-hero h1 { font-size: clamp(46px, 15vw, 68px); }
  .nl-hero-copy p:not(.nl-eyebrow),
  .nl-section-title,
  .nl-studio-copy p { font-size: 17px; }
  .nl-actions a,
  .nl-contact-row a { width: 100%; }
  .nl-visual { min-height: 440px; }
  .nl-main-img {
    inset: 12px 0 auto 18px;
    width: calc(100% - 28px);
    height: 338px;
    box-shadow: 9px 9px 0 var(--nl-blue);
  }
  .nl-float-img {
    width: 46%;
    height: 142px;
    bottom: 34px;
    box-shadow: 7px 7px 0 var(--nl-lime);
  }
  .nl-brief {
    right: 16px;
    bottom: 0;
    max-width: 220px;
    padding: 14px;
    box-shadow: 6px 6px 0 var(--nl-rust);
  }
  .nl-brief strong { font-size: 22px; }
  .nl-metrics { grid-template-columns: repeat(2, 1fr); }
  .nl-metrics div { padding: 16px; }
  .nl-process article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .nl-process article > span { font-size: 28px; }
  .nl-project { padding: 12px; }
  .nl-project:hover { transform: none; }
  .nl-studio-image {
    height: 340px;
    box-shadow: -9px 9px 0 var(--nl-lime);
  }
  .nl-contact-inner { box-shadow: 9px 9px 0 var(--nl-lime); }
  .logos.sponsor-marquee.is-ready {
    align-items: stretch;
    grid-auto-flow: dense;
  }
  .sponsor-marquee.is-ready .logo-tile,
  .sponsor-marquee.is-ready .logo-tile.eldan-logo,
  .sponsor-marquee.is-ready .logo-tile.palziv-logo,
  .sponsor-marquee.is-ready .logo-tile.pandoor-logo,
  .sponsor-marquee.is-ready .logo-tile.manaf-logo,
  .sponsor-marquee.is-ready .logo-tile.supergas-logo,
  .sponsor-marquee.is-ready .logo-tile.wide-logo,
  .sponsor-marquee.is-ready .logo-tile.ab-logo,
  .sponsor-marquee.is-ready .logo-tile.tall-logo {
    min-height: 128px;
    height: 128px;
    padding: 12px;
    overflow: hidden;
  }
  .sponsor-marquee.is-ready .logo-tile img,
  .sponsor-marquee.is-ready .logo-tile.safe-logo img,
  .sponsor-marquee.is-ready .logo-tile.tall-logo img,
  .sponsor-marquee.is-ready .logo-tile.wide-logo img,
  .sponsor-marquee.is-ready .logo-tile.ab-logo img,
  .sponsor-marquee.is-ready .logo-tile.eldan-logo img,
  .sponsor-marquee.is-ready .logo-tile.palziv-logo img,
  .sponsor-marquee.is-ready .logo-tile.pandoor-logo img,
  .sponsor-marquee.is-ready .logo-tile.manaf-logo img,
  .sponsor-marquee.is-ready .logo-tile.supergas-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 104px;
    object-fit: contain;
    object-position: center;
  }
  .sponsor-marquee.is-ready .logo-tile.pandoor-logo,
  .sponsor-marquee.is-ready .logo-tile.supergas-logo,
  .sponsor-marquee.is-ready .logo-tile.wide-logo,
  .sponsor-marquee.is-ready .logo-tile.eldan-logo,
  .sponsor-marquee.is-ready .logo-tile.hever-logo {
    grid-column: span 2;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .install-dialog {
    width: min(100%, 360px);
    max-height: calc(100dvh - 28px);
    overflow: auto;
    padding: 20px;
  }
  .app-badge {
    margin-bottom: 14px;
  }
  .app-badge img {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }
  .install-close {
    width: 36px;
    height: 36px;
  }
  .smart-install h2 {
    font-size: clamp(28px, 8.5vw, 38px);
  }
  .install-dialog p {
    font-size: 15px;
  }
  .install-dialog ol {
    gap: 8px;
    margin: 12px 0 18px;
    font-size: 14px;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }
  .footer .shell,
  .nl-footer .wide {
    flex-direction: column;
    align-items: flex-start;
  }
  .screen-card,
  .team-card,
  .project-card,
  .nl-project {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .sponsor-track { animation: none !important; }
}
