:root {
  --ink: #10191f;
  --ink-soft: #1d2a30;
  --paper: #f4f5f1;
  --white: #ffffff;
  --line: #cad3d0;
  --muted: #5d696f;
  --blue: #3489ff;
  --green: #1e9660;
  --lime: #c7f15b;
  --coral: #ff6e4a;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

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

.inner {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 8px max(20px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--white);
  background: rgba(16, 25, 31, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: var(--white);
  line-height: 1.15;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
}

.brand span {
  display: grid;
}

.brand strong {
  font-size: 0.95rem;
}

.brand small {
  margin-top: 4px;
  color: #aebdc2;
  font-size: 0.7rem;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.site-header nav a {
  color: #dce4e5;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--lime);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
}

.language-switcher,
.deck-language {
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

.language-button,
.deck-language button {
  min-width: 40px;
  min-height: 30px;
  padding: 4px 7px;
  border: 0;
  border-radius: 4px;
  color: #bac7ca;
  background: transparent;
  font-size: 0.7rem;
  font-weight: 900;
  cursor: pointer;
}

.language-button.is-active,
.deck-language button.is-active {
  color: var(--ink);
  background: var(--lime);
}

.header-cta {
  min-height: 37px;
  padding: 7px 13px;
  border: 1px solid var(--lime);
  border-radius: 5px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, calc(100svh - 112px));
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 64% center;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(16, 25, 31, 0.98) 0%, rgba(16, 25, 31, 0.91) 43%, rgba(16, 25, 31, 0.34) 74%, rgba(16, 25, 31, 0.12) 100%);
}

[dir="rtl"] .hero-overlay {
  background: linear-gradient(-90deg, rgba(16, 25, 31, 0.98) 0%, rgba(16, 25, 31, 0.91) 43%, rgba(16, 25, 31, 0.34) 74%, rgba(16, 25, 31, 0.12) 100%);
}

.hero-inner {
  display: flex;
  min-height: min(760px, calc(100svh - 112px));
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 76px;
  padding-bottom: 48px;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green);
}

.hero h1 {
  width: min(800px, 70%);
  margin: 0;
  font-size: clamp(3rem, 6.3vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-lead {
  width: min(720px, 64%);
  margin: 26px 0 0;
  color: #dbe4e6;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.hero-actions,
.deck-downloads,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 170ms ease, background-color 170ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ddff86;
}

.button-ghost,
.button-outline {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
  background: rgba(16, 25, 31, 0.3);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  width: min(720px, 64%);
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-facts span {
  display: grid;
  align-content: center;
  min-height: 92px;
  padding: 13px 18px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.28);
}

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

.hero-facts strong {
  color: var(--lime);
  font-size: 1.55rem;
  line-height: 1;
}

.hero-facts small {
  margin-top: 7px;
  color: #d5dddf;
  font-size: 0.74rem;
  font-weight: 700;
}

.signal-strip {
  color: var(--ink);
  background: var(--lime);
}

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

.signal-grid p {
  display: flex;
  min-height: 76px;
  align-items: center;
  margin: 0;
  padding: 14px 20px;
  border-inline-end: 1px solid rgba(16, 25, 31, 0.22);
  font-size: 0.85rem;
  font-weight: 900;
}

.signal-grid p:last-child {
  border-inline-end: 0;
}

.section {
  padding: 104px 0;
  scroll-margin-top: 72px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 76px;
  margin-bottom: 54px;
}

.section-head h2,
.virtual-layout h2,
.pricing-copy h2,
.contact-layout h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-head > p {
  margin: 0;
  color: var(--muted);
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-inline-start: 1px solid var(--line);
}

.outcome-list article {
  min-height: 270px;
  padding: 25px;
  border-inline-end: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcome-list article > span,
.pilot-steps span {
  display: block;
  margin-bottom: 54px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 950;
}

.outcome-list h3,
.pilot-steps strong {
  margin: 0;
  font-size: 1.2rem;
}

.outcome-list p,
.pilot-steps p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.virtual-section {
  color: var(--white);
  background: var(--green);
}

.virtual-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  align-items: center;
  gap: 80px;
}

.virtual-layout p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: #d8eee4;
}

.virtual-layout img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.integrations-section {
  background: var(--white);
}

.integration-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.integration-flow div {
  position: relative;
  display: grid;
  min-height: 180px;
  align-content: space-between;
  gap: 20px;
  padding: 23px;
  border-inline-end: 1px solid var(--line);
}

.integration-flow div:last-child {
  border-inline-end: 0;
}

.integration-flow span {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 950;
}

.integration-flow strong {
  font-size: 0.94rem;
  line-height: 1.35;
}

.pricing-section {
  color: var(--white);
  background: var(--ink-soft);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  align-items: end;
  gap: 86px;
}

.price {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: var(--lime);
  line-height: 0.82;
}

.price strong {
  font-size: clamp(7rem, 14vw, 13rem);
}

.price span {
  margin-top: 12px;
  font-size: 2.1rem;
  font-weight: 950;
}

.price-unit {
  margin: 22px 0 0;
  color: #dbe5e7;
  font-weight: 900;
}

.pricing-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.pricing-copy > p {
  margin: 24px 0 0;
  color: #c5d1d4;
}

.pricing-copy .fine-print {
  color: #94a5aa;
  font-size: 0.77rem;
}

.pilot-section {
  background: var(--paper);
}

.pilot-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-inline-start: 1px solid var(--line);
  list-style: none;
}

.pilot-steps li {
  min-height: 250px;
  padding: 25px;
  border-inline-end: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-inline-start: 1px solid var(--line);
}

.faq-list details {
  min-width: 0;
  padding: 24px;
  border-inline-end: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding-inline-end: 28px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  color: var(--green);
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.presentation-section {
  color: var(--white);
  background: #11161a;
}

.section-head-light > p {
  color: #aebdc2;
}

.deck-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.deck-language {
  border-color: rgba(255, 255, 255, 0.24);
}

.deck-language button {
  min-width: 86px;
}

.deck-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.deck-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  color: var(--white);
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
}

.deck-controls button:hover,
.deck-controls button:focus-visible {
  border-color: var(--lime);
  color: var(--lime);
}

.deck-controls span {
  min-width: 66px;
  color: #b8c5c8;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.deck-stage {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--white);
}

.deck-stage img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.deck-thumbnails {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 7px;
  margin-top: 10px;
}

.deck-thumbnails button {
  min-width: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  opacity: 0.6;
}

.deck-thumbnails button:hover,
.deck-thumbnails button:focus-visible,
.deck-thumbnails button.is-active {
  border-color: var(--lime);
  opacity: 1;
}

.deck-thumbnails img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.deck-downloads {
  margin-top: 28px;
}

.button-outline {
  background: transparent;
}

.contact-section {
  padding: 104px 0;
  color: var(--white);
  background: var(--blue);
  scroll-margin-top: 72px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.55fr);
  align-items: center;
  gap: 84px;
}

.contact-layout > div:first-child > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: #e2edff;
}

.contact-actions {
  flex-direction: column;
  align-items: stretch;
}

.contact-line {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

footer {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px max(20px, calc((100vw - var(--content)) / 2));
  color: #99a9ad;
  background: var(--ink);
  font-size: 0.75rem;
}

footer a {
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .package-grid,
  .outcome-list,
  .pilot-steps,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .integration-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-inline-start: 1px solid var(--line);
  }

  .integration-flow div {
    border-bottom: 1px solid var(--line);
  }

  .deck-thumbnails {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .inner {
    width: min(100% - 28px, var(--content));
  }

  .site-header {
    min-height: 66px;
    padding: 8px 14px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .language-button {
    min-width: 34px;
    padding-inline: 5px;
  }

  .hero,
  .hero-inner {
    min-height: min(720px, calc(100svh - 96px));
  }

  .hero-image {
    object-position: 70% center;
  }

  .hero-overlay,
  [dir="rtl"] .hero-overlay {
    background: rgba(16, 25, 31, 0.78);
  }

  .hero-inner {
    justify-content: flex-end;
    padding-top: 92px;
    padding-bottom: 34px;
  }

  .hero h1,
  .hero-lead,
  .hero-facts {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.5rem);
  }

  .hero-lead {
    font-size: 0.97rem;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-facts {
    margin-top: 28px;
  }

  .hero-facts span {
    min-height: 82px;
    padding: 11px 8px;
  }

  .hero-facts strong {
    font-size: 1.25rem;
  }

  .hero-facts small {
    font-size: 0.66rem;
    line-height: 1.3;
  }

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

  .signal-grid p {
    min-height: 58px;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(16, 25, 31, 0.2);
  }

  .signal-grid p:last-child {
    border-bottom: 0;
  }

  .section,
  .contact-section {
    padding: 76px 0;
  }

  .section-head,
  .virtual-layout,
  .pricing-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .section-head h2,
  .virtual-layout h2,
  .pricing-copy h2,
  .contact-layout h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .outcome-list,
  .pilot-steps,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .outcome-list article,
  .pilot-steps li {
    min-height: 210px;
  }

  .virtual-layout img {
    min-height: 260px;
  }

  .integration-flow {
    grid-template-columns: 1fr;
  }

  .integration-flow div {
    min-height: 118px;
  }

  .price strong {
    font-size: 8rem;
  }

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

  .deck-controls {
    width: 100%;
    justify-content: space-between;
  }

  .deck-stage {
    width: calc(100% + 28px);
    margin-inline: -14px;
    border-inline: 0;
  }

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

  .deck-downloads .button {
    flex: 1 1 100%;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
