:root {
  color-scheme: light;
  --ink: #0d1720;
  --muted: #5e6b78;
  --paper: #f7f8f6;
  --white: #ffffff;
  --line: #dfe5e7;
  --teal: #0aa6a6;
  --teal-dark: #066969;
  --amber: #d89b24;
  --charcoal: #111820;
  --shadow: 0 24px 70px rgba(13, 23, 32, 0.14);
  --radius: 8px;
  --hero-progress: 0;
  --hero-scale: 1.04;
  --hero-shift: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Heebo", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

body.accessibility-large-text {
  font-size: 112%;
}

body.accessibility-high-contrast {
  --ink: #000000;
  --muted: #1b1b1b;
  --paper: #ffffff;
  --white: #ffffff;
  --line: #000000;
  --teal: #005f5f;
  --teal-dark: #003f3f;
  --amber: #8a5a00;
  --charcoal: #000000;
}

body.accessibility-reduced-motion *,
body.accessibility-reduced-motion *::before,
body.accessibility-reduced-motion *::after {
  scroll-behavior: auto !important;
  transition-duration: 0.01ms !important;
  animation-duration: 0.01ms !important;
}

img {
  display: block;
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--amber);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding-block: 18px;
  padding-inline: clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 24, 32, 0.9);
  color: var(--white);
  padding-block: 8px;
  box-shadow: 0 10px 30px rgba(10, 16, 22, 0.18);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .brand {
  top: 50%;
}

.brand {
  display: inline-flex;
  align-items: center;
  position: absolute;
  left: clamp(-110px, -6vw, -72px);
  top: calc(50% + 15px);
  transform: translateY(-50%);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(240px, 30vw, 420px);
  height: 116px;
  padding: 0;
  transform: none;
  transition: width 220ms ease, height 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled .brand-logo {
  width: clamp(150px, 18vw, 230px);
  height: 46px;
  transform: none;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  direction: rtl;
  margin-inline-start: 0;
  margin-inline-end: auto;
  font-size: 0.96rem;
  font-weight: 600;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--teal);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  padding: 188px clamp(20px, 5vw, 72px) 72px;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

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

.hero-media {
  background:
    radial-gradient(circle at 72% 22%, rgba(10, 166, 166, 0.22), transparent 34%),
    linear-gradient(135deg, #071018, #111820 54%, #071018);
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transform: scale(var(--hero-scale)) translate3d(0, var(--hero-shift), 0);
  transform-origin: center;
  transition: transform 120ms linear;
  animation: heroImageIn 1400ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.1), rgba(17, 24, 32, 0.78) 58%, rgba(17, 24, 32, 0.96)),
    linear-gradient(0deg, rgba(17, 24, 32, 0.84), rgba(17, 24, 32, 0.1) 54%);
}

.hero-content {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  padding-bottom: clamp(48px, 10vh, 96px);
  text-align: center;
}

.hero-content.is-visible .eyebrow {
  animation: riseIn 650ms 80ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content.is-visible .hero-copy {
  animation: riseIn 700ms 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content.is-visible .hero-actions {
  animation: riseIn 700ms 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  justify-content: center;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

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

h1 {
  margin-bottom: 24px;
  max-width: 760px;
  font-size: clamp(2.1rem, 4.4vw, 4.2rem);
  line-height: 1.02;
  font-weight: 800;
}

.hero-slogan {
  direction: ltr;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  justify-items: center;
  gap: 0.18em;
  max-width: min(90vw, 1280px);
  margin: 0 auto 28px;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: clamp(1.75rem, 5vw, 5.8rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.hero-slogan span {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.55em, 0) rotateX(55deg);
  transform-origin: bottom;
}

.hero-slogan .slogan-execution {
  color: var(--white);
}

.hero-slogan .slogan-rest {
  color: var(--teal);
}

.hero-content.is-visible .hero-slogan span {
  animation: sloganWord 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content.is-visible .hero-slogan span:nth-child(1) {
  animation-delay: 180ms;
}

.hero-content.is-visible .hero-slogan span:nth-child(2) {
  animation-delay: 300ms;
}

.hero-content.is-visible .hero-slogan span:nth-child(3) {
  animation-delay: 420ms;
}

.hero-copy {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  transform: translateY(-30px);
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--teal);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.hero-stats {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  justify-content: space-between;
  margin-inline-start: auto;
}

.hero-stats article {
  min-width: 145px;
  flex: 1;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  transform: translateY(18px);
  opacity: 0;
  animation: riseIn 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-stats article:nth-child(1) {
  animation-delay: 980ms;
}

.hero-stats article:nth-child(2) {
  animation-delay: 1120ms;
}

.hero-stats article:nth-child(3) {
  animation-delay: 1260ms;
}

.hero-stats article:nth-child(4) {
  animation-delay: 1400ms;
}

.hero-stats article:nth-child(5) {
  animation-delay: 1540ms;
}

.hero-stats strong {
  display: block;
  color: var(--amber);
  font-size: 0.92rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px);
}

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

.section-heading h2,
.cta h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
  background: var(--white);
}

.intro p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.intro p:last-child {
  margin-bottom: 0;
}

.founders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.founder-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.founder-portrait {
  width: 84px;
  height: 84px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(145deg, #e2e6e9, #8e979d);
  box-shadow: 0 10px 22px rgba(17, 33, 42, 0.14);
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.founder-card h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.founder-card p {
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.96rem;
  line-height: 1.35;
}

.services {
  background: var(--paper);
}

.clients {
  background: #edf3f2;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.client-grid img {
  width: 100%;
  height: 118px;
  padding: 36px;
  object-fit: contain;
  background: var(--white);
  filter: grayscale(1);
  opacity: 0.86;
  transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.client-grid .client-logo-ofek {
  padding: 44px;
}

.client-grid .client-logo-large {
  padding: 24px;
}

.client-grid img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.03);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.service-card {
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(13, 23, 32, 0.04);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 420ms ease, border-color 420ms ease;
}

.service-card.is-visible {
  transition-delay: calc(var(--reveal-index, 0) * 90ms);
}

.service-card.is-visible:hover {
  transform: translateY(-8px);
  border-color: rgba(10, 166, 166, 0.38);
  box-shadow: 0 26px 70px rgba(13, 23, 32, 0.12);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: rgba(10, 166, 166, 0.1);
  color: var(--teal-dark);
  font-weight: 800;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), background 500ms ease;
}

.service-card.is-visible .card-icon {
  transform: scale(1.08);
  background: var(--teal);
  color: var(--white);
}

.timeline li.is-visible span {
  transform: scale(1.08);
  background: transparent;
  color: var(--teal);
}

.service-card h3,
.solution-list h3,
.timeline h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.25;
}

.service-card p,
.solution-list p,
.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.solutions {
  background: var(--charcoal);
  color: var(--white);
}

.solutions .section-kicker {
  color: var(--amber);
}

.showcase-shell {
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 70px);
  margin-top: 44px;
  align-items: center;
}

.showcase-stage {
  position: relative;
  min-height: clamp(430px, 42vw, 560px);
  perspective: 1400px;
  overflow: visible;
}

.showcase-stage::before {
  content: "";
  position: absolute;
  inset: 10% 5% 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 166, 166, 0.2), transparent 62%);
  filter: blur(8px);
}

.showcase-screen {
  position: absolute;
  inset: 4% 0 0;
  min-height: 390px;
  transform: translate3d(0, 18px, 0) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 560ms cubic-bezier(0.16, 1, 0.3, 1), opacity 360ms ease, box-shadow 560ms ease;
}

.showcase-screen:nth-child(2) {
  transform: translate3d(0, 18px, 0) scale(0.96);
}

.showcase-screen:nth-child(3) {
  transform: translate3d(0, 18px, 0) scale(0.96);
}

.showcase-screen:nth-child(4) {
  transform: translate3d(0, 18px, 0) scale(0.96);
}

.showcase-screen.is-active {
  z-index: 5;
  transform: translate3d(0, 0, 0) rotateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.showcase-image {
  position: absolute;
  display: block;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(13, 23, 32, 0.28);
}

.showcase-image-desktop {
  top: 8%;
  right: 0;
  width: min(92%, 680px);
  aspect-ratio: 16 / 9.4;
  border: 6px solid #0d1117;
  border-radius: 8px;
}

.showcase-image-phone {
  width: min(31%, 210px);
  aspect-ratio: 9 / 19.5;
  border: 7px solid #050505;
  border-radius: 28px;
}

.floating-phone {
  left: 0;
  bottom: 1%;
}

.phone-front {
  right: 18%;
  top: 1%;
  z-index: 2;
}

.phone-back {
  left: 18%;
  top: 10%;
  z-index: 1;
  transform: scale(0.92);
  opacity: 0.82;
}

.showcase-panel {
  display: grid;
  gap: 10px;
}

.showcase-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  width: 100%;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: right;
  cursor: pointer;
}

.showcase-tab span {
  grid-row: span 2;
  color: var(--amber);
  font-weight: 800;
}

.showcase-tab strong {
  font-size: 1.15rem;
  line-height: 1.25;
}

.showcase-tab small {
  color: var(--muted);
  font: inherit;
  line-height: 1.65;
}

.showcase-tab.is-active strong,
.showcase-tab:hover strong {
  color: var(--teal-dark);
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
}

.showcase-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(10, 166, 166, 0.18);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.solutions .showcase-tab {
  border-top-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.solutions .showcase-tab small {
  color: rgba(255, 255, 255, 0.68);
}

.solutions .showcase-tab.is-active strong,
.solutions .showcase-tab:hover strong {
  color: var(--amber);
}

.solutions .showcase-tags span {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(300px, 1.14fr);
  gap: clamp(32px, 7vw, 90px);
  background: var(--charcoal);
  color: var(--white);
}

.split .section-kicker {
  color: var(--amber);
}

.solution-list {
  display: grid;
  gap: 18px;
}

.solution-list div {
  padding: 26px 0 26px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  transition: border-color 500ms ease, transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-list.is-visible div {
  border-color: rgba(216, 155, 36, 0.5);
}

.solution-list p {
  color: rgba(255, 255, 255, 0.68);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 28px 0 0;
  border-top: 2px solid var(--teal);
  overflow: hidden;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline li.is-visible::before {
  transform: scaleX(1);
}

.timeline span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--teal);
  font-weight: 800;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), color 500ms ease, background 500ms ease;
}

.cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 520px);
  gap: clamp(32px, 7vw, 96px);
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px);
  background: #edf3f2;
}

.cta p {
  color: var(--muted);
  font-size: 1.12rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-links-cta {
  margin-top: 28px;
}

.social-links-cta a {
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(10, 166, 166, 0.18);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(13, 23, 32, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-links-cta a:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 166, 166, 0.42);
  box-shadow: 0 18px 42px rgba(13, 23, 32, 0.12);
}

.contact-details {
  align-self: start;
  border-top: 1px solid var(--line);
}

.contact-start {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  margin: 24px 0 30px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-start:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.contact-details dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.contact-details dl > div {
  display: grid;
  grid-template-columns: minmax(90px, 0.32fr) 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-details dt {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-details dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.contact-details dd a {
  color: inherit;
  text-decoration: none;
}

.contact-details dd a:hover {
  color: var(--teal-dark);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  direction: ltr;
  padding: 26px clamp(20px, 5vw, 72px);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.74);
}

.site-footer p {
  direction: rtl;
  margin: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  order: 0;
  width: 132px;
  opacity: 0.96;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.site-footer a,
.footer-links a {
  color: var(--white);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  direction: rtl;
  gap: 16px;
}

.social-links-footer {
  gap: 8px;
}

.social-links-footer a {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
}

.social-links-footer svg {
  width: 18px;
  height: 18px;
}

.social-links-footer a:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.cookie-consent {
  position: fixed;
  right: clamp(16px, 4vw, 48px);
  bottom: clamp(16px, 4vw, 32px);
  left: clamp(16px, 4vw, 48px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin-inline: auto;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(17, 24, 32, 0.96);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 55px rgba(10, 16, 22, 0.28);
  backdrop-filter: blur(16px);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent p {
  margin: 0;
  font-size: 0.98rem;
}

.cookie-consent a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent .button {
  flex: 0 0 auto;
  min-width: 112px;
  padding-block: 10px;
  cursor: pointer;
}

.accessibility-tools {
  position: fixed;
  left: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 32px);
  z-index: 55;
  display: grid;
  gap: 8px;
  justify-items: start;
}

body.cookie-consent-visible .accessibility-tools {
  bottom: clamp(112px, 12vw, 140px);
}

.accessibility-toggle,
.accessibility-panel button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(10, 16, 22, 0.18);
}

.accessibility-toggle {
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  font-weight: 800;
}

.accessibility-toggle svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.accessibility-panel {
  display: grid;
  gap: 6px;
  min-width: 180px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(17, 24, 32, 0.96);
  box-shadow: 0 18px 55px rgba(10, 16, 22, 0.28);
}

.accessibility-panel[hidden] {
  display: none;
}

.accessibility-panel button {
  width: 100%;
  padding: 9px 10px;
  text-align: right;
}

.accessibility-panel button:hover,
.accessibility-toggle:hover {
  background: var(--teal-dark);
}

.legal-page {
  background: var(--paper);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  direction: ltr;
  padding: 22px clamp(20px, 5vw, 72px);
  background: var(--charcoal);
  color: var(--white);
}

.legal-header img {
  width: min(220px, 46vw);
  height: auto;
}

.legal-header a {
  direction: rtl;
  font-weight: 700;
}

.legal-main {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.legal-document {
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(13, 23, 32, 0.07);
}

.legal-document h1 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.legal-updated {
  margin-bottom: 34px;
  color: var(--muted);
  font-weight: 700;
}

.legal-document h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
}

.legal-document p,
.legal-document li {
  color: var(--muted);
}

.legal-document ul {
  margin: 0;
  padding-inline-start: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(38px) scale(0.985);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-index, 0) * 70ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes sloganWord {
  0% {
    opacity: 0;
    transform: translate3d(0, 0.55em, 0) rotateX(55deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0);
  }
}

@keyframes riseIn {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  0% {
    opacity: 0;
    transform: scale(1.12) translate3d(0, 18px, 0);
  }
  100% {
    opacity: 0.82;
    transform: scale(1.04) translate3d(0, 0, 0);
  }
}

@media (max-width: 1080px) {
  .site-footer {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-shell {
    grid-template-columns: 1fr;
  }

  .showcase-stage {
    min-height: 470px;
  }

  .client-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .contact-details dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .site-header {
    padding-block: 14px;
    padding-inline: 20px;
  }

  .brand-logo {
    width: min(58vw, 270px);
    height: clamp(68px, 18vw, 88px);
    padding: 0;
    transform: none;
  }

  .brand {
    left: -42px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 92svh;
    padding-top: 138px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(17, 24, 32, 0.14), rgba(17, 24, 32, 0.84)),
      linear-gradient(0deg, rgba(17, 24, 32, 0.9), rgba(17, 24, 32, 0.18) 62%);
  }

  .hero-content {
    padding-bottom: 40px;
  }

  .hero-slogan {
    max-width: min(78vw, 340px);
    font-size: clamp(1.55rem, 6.9vw, 2.05rem);
    line-height: 0.98;
  }

  .hero-slogan span {
    flex: 0 1 auto;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .button {
    width: 100%;
  }

  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
  }

  .cookie-consent p {
    font-size: 0.92rem;
  }

  .cookie-consent .button {
    width: 100%;
  }

  .accessibility-tools {
    left: 16px;
    bottom: 16px;
  }

  body.cookie-consent-visible .accessibility-tools {
    bottom: 196px;
  }

  .accessibility-panel {
    min-width: min(220px, calc(100vw - 32px));
  }

  .hero-stats article {
    min-width: 100%;
  }

  .intro,
  .split,
  .cta {
    grid-template-columns: 1fr;
  }

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

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

  .service-card {
    min-height: auto;
  }

  .showcase-shell {
    gap: 22px;
    margin-top: 30px;
  }

  .showcase-stage {
    min-height: 260px;
    overflow: hidden;
    border-radius: 8px;
  }

  .showcase-stage::before {
    inset: 18% 8% 0;
    filter: blur(14px);
  }

  .showcase-screen {
    inset: 0;
    min-height: 230px;
    transform: translate3d(0, 0, 0) scale(0.98);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 18px 44px rgba(13, 23, 32, 0.18);
  }

  .showcase-screen:nth-child(2),
  .showcase-screen:nth-child(3),
  .showcase-screen:nth-child(4) {
    transform: translate3d(0, 0, 0) scale(0.98);
  }

  .showcase-screen.is-active {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .showcase-image {
    box-shadow: 0 16px 38px rgba(13, 23, 32, 0.2);
  }

  .showcase-image-desktop {
    top: 0;
    right: 0;
    width: 100%;
    border-width: 4px;
  }

  .showcase-image-phone {
    width: 37%;
    border-width: 5px;
    border-radius: 22px;
  }

  .floating-phone {
    left: 4%;
    bottom: 0;
  }

  .phone-front {
    right: 8%;
    top: 0;
  }

  .phone-back {
    left: 8%;
    top: 8%;
  }

  .showcase-panel {
    gap: 8px;
  }

  .showcase-tab {
    grid-template-columns: auto 1fr;
    gap: 2px 10px;
    padding: 12px 0;
  }

  .showcase-tab span {
    grid-row: span 2;
    font-size: 0.86rem;
  }

  .showcase-tab strong {
    font-size: 1rem;
  }

  .showcase-tab small {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .showcase-tags {
    padding-top: 10px;
  }

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

  .client-grid img {
    height: 94px;
    padding: 26px;
  }

  .client-grid .client-logo-ofek {
    padding: 34px;
  }

  .client-grid .client-logo-large {
    padding: 18px;
  }

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

  .footer-logo {
    width: 118px;
  }
}

/* Solutions command-center layout */
.solutions {
  position: relative;
  overflow: hidden;
}

.solutions::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 166, 166, 0.12), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(216, 155, 36, 0.13), transparent 28%);
  pointer-events: none;
}

.solutions > * {
  position: relative;
  z-index: 1;
}

.showcase-shell {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  grid-template-areas:
    "tabs stage"
    "tabs thumbs";
  gap: 22px;
  align-items: stretch;
  margin-top: 48px;
}

.showcase-panel {
  grid-area: tabs;
  align-content: start;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}

.showcase-tab {
  position: relative;
  padding: 16px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.showcase-tab::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: transparent;
}

.showcase-tab.is-active,
.showcase-tab:hover {
  border-color: rgba(10, 166, 166, 0.38);
  background: rgba(255, 255, 255, 0.075);
  transform: translateX(-4px);
}

.showcase-tab.is-active::before,
.showcase-tab:hover::before {
  background: var(--teal);
}

.showcase-tab strong {
  display: block;
  margin-bottom: 4px;
}

.showcase-stage {
  grid-area: stage;
  min-height: clamp(430px, 38vw, 560px);
  padding: clamp(16px, 2.4vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(6, 12, 18, 0.46);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.showcase-stage::before {
  inset: auto 8% -18%;
  height: 42%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 166, 166, 0.28), transparent 62%);
  filter: blur(20px);
}

.showcase-screen {
  inset: clamp(16px, 2.4vw, 28px);
  min-height: auto;
  transform: translate3d(0, 20px, 0) scale(0.98);
}

.showcase-screen.is-active {
  transform: translate3d(0, 0, 0) scale(1);
}

.showcase-image {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.showcase-image-desktop {
  top: 10%;
  right: 5%;
  width: min(84%, 760px);
  border-color: #060a0f;
}

.showcase-image-phone {
  width: min(28%, 190px);
}

.floating-phone {
  left: 4%;
  bottom: 6%;
}

.phone-front {
  right: 32%;
  top: 4%;
}

.phone-back {
  left: 18%;
  top: 13%;
}

.showcase-thumbs {
  grid-area: thumbs;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.showcase-thumb {
  height: 82px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  overflow: hidden;
  opacity: 0.62;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.showcase-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-thumb.is-active,
.showcase-thumb:hover {
  opacity: 1;
  transform: translateY(-3px);
  border-color: var(--teal);
}

.showcase-tags {
  margin-top: 12px;
}

@media (max-width: 1080px) {
  .showcase-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "stage"
      "tabs"
      "thumbs";
  }

  .showcase-stage {
    min-height: 500px;
  }
}

@media (max-width: 760px) {
  .showcase-shell {
    gap: 16px;
  }

  .showcase-stage {
    min-height: 340px;
    padding: 14px;
  }

  .showcase-screen {
    inset: 14px;
  }

  .showcase-image-desktop {
    top: 7%;
    right: 0;
    width: 100%;
  }

  .showcase-image-phone {
    width: 35%;
    border-width: 5px;
    border-radius: 22px;
  }

  .phone-front {
    right: 24%;
  }

  .phone-back {
    left: 16%;
  }

  .showcase-panel {
    padding: 10px;
  }

  .showcase-tab {
    padding: 13px 10px;
  }

  .showcase-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-thumb {
    height: 74px;
  }
}

.solutions .showcase-tab {
  grid-template-columns: 44px 1fr;
  gap: 6px 14px;
  align-items: start;
  text-align: right;
}

.solutions .showcase-tab span {
  grid-row: 1 / span 3;
  justify-self: start;
  min-width: 34px;
  text-align: left;
}

.solutions .showcase-tab strong,
.solutions .showcase-tab small {
  grid-column: 2;
  display: block;
  max-width: 100%;
  text-align: right;
}

.showcase-shell {
  grid-template-areas: "tabs stage";
}

.showcase-screen {
  transform: translate3d(-18px, 22px, 0) scale(0.97);
  filter: saturate(0.86);
}

.showcase-screen.is-active {
  transform: translate3d(0, 0, 0) scale(1);
  filter: saturate(1);
}

.showcase-thumbs,
.showcase-thumb {
  display: none;
}

@media (max-width: 1080px) {
  .showcase-shell {
    grid-template-areas:
      "stage"
      "tabs";
  }
}

.solutions.section {
  padding-top: clamp(54px, 6.75vw, 96px);
  padding-bottom: clamp(54px, 6.75vw, 96px);
}

.solutions .showcase-shell {
  margin-top: 34px;
}

.solutions .showcase-stage {
  min-height: clamp(320px, 28vw, 420px);
  padding: clamp(14px, 1.8vw, 22px);
}

.solutions .showcase-screen {
  inset: clamp(14px, 1.8vw, 22px);
}

.solutions .showcase-image-desktop {
  top: 12%;
  right: 3%;
  width: min(66%, 620px);
}

.solutions .showcase-image-phone {
  width: min(20%, 150px);
}

.solutions .floating-phone {
  top: 12%;
  bottom: auto;
  left: 6%;
}

.solutions .phone-front {
  right: 46%;
  top: 7%;
}

.solutions .phone-back {
  left: 16%;
  top: 14%;
}

@media (max-width: 1080px) {
  .solutions .showcase-stage {
    min-height: 375px;
  }

  .solutions .showcase-image-desktop {
    width: 70%;
  }

  .solutions .showcase-image-phone {
    width: 21%;
  }
}

@media (max-width: 760px) {
  .solutions.section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .solutions .showcase-stage {
    min-height: 255px;
  }

  .solutions .showcase-image-desktop {
    top: 8%;
    right: 0;
    width: 72%;
  }

  .solutions .showcase-image-phone {
    width: 25%;
  }

  .solutions .floating-phone {
    top: 10%;
    left: 2%;
  }

  .solutions .phone-front {
    right: 42%;
  }

  .solutions .phone-back {
    left: 8%;
  }
}

.solutions.section {
  min-height: min(760px, 92svh);
  display: grid;
  align-content: center;
  padding-top: clamp(42px, 5vw, 72px);
  padding-bottom: clamp(42px, 5vw, 72px);
}

.solutions .section-heading h2 {
  max-width: 980px;
  font-size: clamp(1.9rem, 3.2vw, 3.35rem);
}

.solutions .showcase-shell {
  grid-template-columns: minmax(240px, 310px) minmax(0, 1fr);
  gap: clamp(18px, 2.6vw, 38px);
  margin-top: clamp(22px, 3vw, 34px);
}

.solutions .showcase-panel {
  gap: 8px;
  padding: 10px;
}

.solutions .showcase-tab {
  min-height: 0;
  padding: 12px 12px;
}

.solutions .showcase-tab strong {
  margin-bottom: 2px;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.solutions .showcase-tab small {
  font-size: clamp(0.88rem, 1.05vw, 0.98rem);
  line-height: 1.45;
}

.solutions .showcase-stage {
  min-height: clamp(285px, 31vw, 390px);
  padding: 0;
  overflow: hidden;
  perspective: 1200px;
}

.solutions .showcase-stage::after {
  content: "";
  position: absolute;
  inset: 12% 8%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(10, 166, 166, 0.24), transparent);
  filter: blur(18px);
  transform: rotate(-12deg);
  pointer-events: none;
}

.solutions .showcase-screen {
  inset: 0;
  transform: translate3d(-22px, 18px, 0) rotateY(-8deg) rotateX(2deg) scale(0.96);
}

.solutions .showcase-screen.is-active {
  transform: translate3d(0, 0, 0) rotateY(0) rotateX(0) scale(1);
}

.solutions .showcase-image-desktop {
  top: 11%;
  right: 8%;
  width: min(62%, 590px);
  transform: rotateY(-9deg) rotateZ(-1deg);
  transform-origin: right center;
}

.solutions .showcase-image-phone {
  width: min(18%, 138px);
  transform: rotateY(14deg) rotateZ(2deg);
}

.solutions .floating-phone {
  top: 14%;
  left: 11%;
}

.solutions .phone-front {
  right: 47%;
  top: 8%;
  transform: rotateY(-10deg) rotateZ(-1.8deg);
}

.solutions .phone-back {
  left: 22%;
  top: 17%;
  transform: rotateY(13deg) rotateZ(2.5deg) scale(0.92);
}

@media (max-width: 1080px) {
  .solutions.section {
    min-height: auto;
  }

  .solutions .showcase-shell {
    grid-template-columns: 1fr;
  }

  .solutions .showcase-stage {
    min-height: clamp(300px, 48vw, 420px);
  }

  .solutions .showcase-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .solutions .showcase-panel {
    grid-template-columns: 1fr;
  }

  .solutions .showcase-stage {
    min-height: 255px;
  }

  .solutions .showcase-image-desktop {
    right: 4%;
    width: 68%;
  }

  .solutions .showcase-image-phone {
    width: 24%;
  }

  .solutions .floating-phone {
    left: 5%;
  }
}

.solutions.section {
  min-height: clamp(610px, 86svh, 760px);
  padding-top: clamp(34px, 4vw, 54px);
  padding-bottom: clamp(34px, 4vw, 54px);
}

.solutions .section-heading {
  margin-bottom: clamp(18px, 2vw, 26px);
}

.solutions .section-heading h2 {
  max-width: 1040px;
  font-size: clamp(1.85rem, 3vw, 3.05rem);
  line-height: 1.15;
}

.scene-showcase {
  position: relative;
  width: min(1280px, calc(100vw - 64px));
  max-width: min(1280px, calc(100vw - 64px));
  margin: 0 auto;
  justify-self: center;
}

.scene-stage {
  position: relative;
  min-height: clamp(410px, 48svh, 560px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: #091219;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

.scene-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.012);
  transition:
    opacity 900ms ease,
    transform 1200ms ease;
  pointer-events: none;
}

.scene-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.scene-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.04);
  transition: transform 5200ms ease;
}

.scene-slide.is-active .scene-bg {
  transform: scale(1);
}

.scene-slide::before,
.scene-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.scene-slide::before {
  background:
    linear-gradient(90deg, rgba(7, 16, 22, 0.18), rgba(7, 16, 22, 0.26) 42%, rgba(7, 16, 22, 0.88) 75%),
    linear-gradient(0deg, rgba(7, 16, 22, 0.72), transparent 44%);
}

.scene-slide::after {
  background:
    radial-gradient(circle at 76% 28%, rgba(12, 185, 179, 0.18), transparent 28%),
    linear-gradient(135deg, transparent 0 62%, rgba(238, 165, 24, 0.12) 62% 63%, transparent 63%);
  mix-blend-mode: screen;
  opacity: 0.7;
}

.scene-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
  padding: clamp(24px, 3vw, 44px);
}

.scene-copy {
  position: absolute;
  top: clamp(28px, 5vw, 64px);
  right: clamp(24px, 5vw, 72px);
  max-width: min(430px, 34vw);
  text-align: right;
}

.scene-copy span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border: 1px solid rgba(238, 165, 24, 0.45);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
  background: rgba(8, 17, 23, 0.72);
}

.scene-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 2.2vw, 2.55rem);
  line-height: 1.05;
  color: #ffffff;
}

.scene-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.15vw, 1.22rem);
  line-height: 1.65;
}

.scene-device {
  position: absolute;
  overflow: hidden;
  border: 8px solid rgba(4, 9, 13, 0.92);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.18);
  transition:
    transform 1000ms ease,
    opacity 700ms ease;
}

.scene-device img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene-device-desktop {
  left: clamp(28px, 7vw, 120px);
  bottom: clamp(30px, 5vw, 76px);
  width: min(47vw, 680px);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  transform: translate3d(-24px, 18px, 0) scale(0.96);
}

.scene-device-phone {
  left: clamp(26px, 24vw, 370px);
  bottom: clamp(22px, 4vw, 58px);
  width: clamp(120px, 11vw, 170px);
  aspect-ratio: 9 / 19.5;
  border-radius: 26px;
  transform: translate3d(14px, 26px, 0) scale(0.95);
}

.scene-device-phone.is-large {
  left: clamp(44px, 16vw, 260px);
  bottom: clamp(24px, 4vw, 54px);
  width: clamp(150px, 14vw, 214px);
}

.scene-device-phone.is-secondary {
  left: clamp(178px, 29vw, 455px);
  bottom: clamp(38px, 6vw, 86px);
  width: clamp(118px, 10vw, 160px);
  opacity: 0.82;
}

.scene-slide.is-active .scene-device {
  transform: translate3d(0, 0, 0) scale(1);
}

.scene-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(860px, calc(100% - 44px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
}

.scene-tab {
  min-height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(13, 25, 32, 0.88);
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font: inherit;
  backdrop-filter: blur(18px);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.scene-tab span {
  color: var(--gold);
  font-weight: 900;
}

.scene-tab strong {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.scene-tab.is-active {
  border-color: rgba(10, 166, 166, 0.58);
  background: rgba(8, 46, 52, 0.95);
  transform: translateY(-4px);
}

@media (max-width: 1080px) {
  .solutions.section {
    min-height: auto;
  }

  .scene-showcase {
    max-width: min(100% - 32px, 960px);
  }

  .scene-stage {
    min-height: clamp(440px, 60svh, 620px);
  }

  .scene-copy {
    max-width: min(470px, 58vw);
  }

  .scene-device-desktop {
    width: min(64vw, 620px);
  }

  .scene-device-phone {
    left: clamp(30px, 52vw, 560px);
    width: clamp(110px, 15vw, 150px);
  }
}

@media (max-width: 760px) {
  .solutions.section {
    padding-top: 36px;
    padding-bottom: 42px;
  }

  .solutions .section-heading h2 {
    font-size: clamp(1.34rem, 6.2vw, 1.78rem);
    line-height: 1.14;
  }

  .scene-showcase {
    max-width: calc(100% - 22px);
  }

  .scene-stage {
    min-height: 430px;
    border-radius: 18px;
  }

  .scene-bg {
    object-position: 30% center;
  }

  .scene-slide::before {
    background:
      linear-gradient(180deg, rgba(7, 16, 22, 0.2), rgba(7, 16, 22, 0.54) 42%, rgba(7, 16, 22, 0.95) 74%),
      linear-gradient(90deg, rgba(7, 16, 22, 0.2), rgba(7, 16, 22, 0.72));
  }

  .scene-overlay {
    padding: 22px;
  }

  .scene-copy {
    top: 24px;
    right: 22px;
    left: 22px;
    bottom: auto;
    max-width: none;
  }

  .scene-copy span {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .scene-copy p {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .scene-device-desktop {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    aspect-ratio: 16 / 9;
    border-width: 6px;
  }

  .scene-device-phone,
  .scene-device-phone.is-large,
  .scene-device-phone.is-secondary {
    left: 22px;
    bottom: 24px;
    width: 82px;
    border-width: 5px;
    border-radius: 20px;
  }

  .scene-device-phone.is-secondary {
    left: 112px;
    opacity: 0.76;
  }

  .scene-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: calc(100% - 24px);
    margin-top: 10px;
  }

  .scene-tab {
    min-height: 52px;
    border-radius: 12px;
    flex-direction: column;
    gap: 2px;
    padding: 7px 4px;
    text-align: center;
  }

  .scene-tab strong {
    font-size: 0.78rem;
    line-height: 1.15;
  }

  .scene-tab.is-active {
    transform: none;
  }
}

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

  .hero-media img {
    transform: none;
  }

  .hero-media video {
    transform: none;
  }
}

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

/* The project scenes rotate independently from the solution overview. */
.scene-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  grid-template-areas: "stage copy";
  gap: clamp(18px, 2.4vw, 34px);
  align-items: stretch;
  direction: ltr;
}

.scene-stage {
  grid-area: stage;
  min-height: clamp(390px, 42vw, 510px);
}

.scene-overlay,
.scene-tabs {
  display: none;
}

.scene-slide::before {
  background:
    linear-gradient(90deg, rgba(7, 16, 22, 0.2), transparent 42%, rgba(7, 16, 22, 0.12)),
    linear-gradient(0deg, rgba(7, 16, 22, 0.36), transparent 42%);
}

.scene-slide::after {
  opacity: 0.34;
}

.scene-static-copy {
  grid-area: copy;
  display: grid;
  align-content: center;
  gap: 0;
  direction: rtl;
  text-align: right;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.14);
  padding-inline-start: clamp(20px, 2.2vw, 34px);
}

.scene-static-copy article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: clamp(20px, 2vw, 28px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.scene-static-copy article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.scene-static-copy article > span {
  color: var(--gold);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.25;
}

.scene-static-copy h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(1.22rem, 1.55vw, 1.55rem);
  line-height: 1.15;
}

.scene-static-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.92rem, 1.04vw, 1.04rem);
  line-height: 1.58;
}

@media (max-width: 1080px) {
  .scene-showcase {
    grid-template-columns: 1fr;
    grid-template-areas:
      "stage"
      "copy";
  }

  .scene-static-copy {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    border-inline-start: 0;
    padding-inline-start: 0;
  }

  .scene-static-copy article,
  .scene-static-copy article:last-child {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .scene-stage {
    min-height: 270px;
  }

  .scene-static-copy {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .scene-static-copy article {
    padding: 18px 0;
  }
}
