@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  color-scheme: light;
  --bg: #f6efe4;
  --bg-soft: #eef4ff;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #16253f;
  --surface-border: rgba(21, 39, 69, 0.08);
  --text: #15253f;
  --muted: #5e6e86;
  --accent: #ffb039;
  --accent-strong: #ff8d1a;
  --accent-cool: #2d7df4;
  --shadow: 0 22px 60px rgba(18, 41, 73, 0.12);
  font-family: "IBM Plex Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 176, 57, 0.2), transparent 25%),
    radial-gradient(circle at 78% 10%, rgba(45, 125, 244, 0.14), transparent 22%),
    linear-gradient(180deg, #f8f2e8 0%, #f4f7fb 45%, #eef4ff 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

.bg-grid,
.bg-orb {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.bg-grid {
  background-image:
    linear-gradient(rgba(43, 75, 124, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 75, 124, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
  opacity: 0.55;
}

.bg-orb {
  filter: blur(80px);
}

.bg-orb--amber {
  left: -12rem;
  top: -8rem;
  width: 28rem;
  height: 28rem;
  position: fixed;
  background: rgba(255, 164, 56, 0.2);
}

.bg-orb--blue {
  right: -8rem;
  top: 8rem;
  width: 24rem;
  height: 24rem;
  position: fixed;
  background: rgba(66, 132, 255, 0.16);
}

.site-header,
.page,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header,
.site-footer,
.section,
.hero {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0.85rem;
  z-index: 20;
  padding: 0.85rem 0 0;
}

.site-header__shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(21, 39, 69, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.92)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 56px rgba(18, 41, 73, 0.14);
  backdrop-filter: blur(18px);
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 96px;
  height: 96px;
  border-radius: 18px;
  background: rgba(255, 248, 235, 0.96);
  padding: 0.45rem;
  box-shadow: 0 14px 30px rgba(21, 39, 69, 0.16);
}

.site-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  color: var(--muted);
}

.site-nav a {
  border: 1px solid transparent;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.96rem;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.brand span {
  font-size: 1.1rem;
}

.site-nav a:hover {
  background: rgba(45, 125, 244, 0.08);
  color: var(--text);
}

.site-nav a.is-active {
  background: rgba(255, 176, 57, 0.16);
  border-color: rgba(255, 176, 57, 0.24);
  color: var(--text);
  transform: translateY(-1px);
}

.site-tools {
  display: flex;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(21, 39, 69, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(21, 39, 69, 0.12);
}

.nav-toggle__text {
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-toggle__icon {
  display: grid;
  gap: 0.2rem;
}

.nav-toggle__icon span {
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle.is-open .nav-toggle__icon span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle__icon span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid rgba(21, 39, 69, 0.08);
  border-radius: 999px;
  background: rgba(246, 249, 255, 0.9);
}

.lang-button {
  min-width: 3.2rem;
  padding: 0.55rem 0.7rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.lang-button:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.lang-button.is-active {
  color: #13233a;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 14px 32px rgba(255, 160, 32, 0.22);
}

.page {
  padding: 1rem 0 4rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: center;
  padding: 3.2rem 0 2.2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(21, 39, 69, 0.1);
  border-radius: 999px;
  color: #60718b;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.gallery-copy h3,
.cta h2,
.timeline-card h3,
.info-card h3 {
  font-family: "Space Grotesk", sans-serif;
}

.hero h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  line-height: 0.95;
  max-width: 13ch;
}

.hero__lede,
.section-heading p,
.product-strip__copy p,
.gallery-copy p,
.cta p,
.info-card p,
.timeline-card p,
.pricing-card p {
  color: var(--muted);
  font-size: 1.03rem;
}

.hero__actions,
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.button,
.gallery-switch {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  margin: 0;
  font: inherit;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

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

.button--primary {
  color: #13233a;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 18px 40px rgba(255, 160, 32, 0.24);
}

.button--ghost,
.gallery-switch {
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(21, 39, 69, 0.1);
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  list-style: none;
  margin: 0;
  padding: 1.5rem 0 0;
}

.signal-list li,
.pill {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(21, 39, 69, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
}

.hero__visual {
  position: relative;
  min-height: 620px;
}

.frame {
  border: 1px solid var(--surface-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 249, 255, 0.8)),
    var(--surface);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.frame img {
  display: block;
  width: 100%;
  height: auto;
}

.frame--hero {
  transform: rotate(3deg);
  margin-left: 2rem;
}

.floating-note {
  position: absolute;
  max-width: 16rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(18, 41, 73, 0.08);
  border-radius: 20px;
  background: var(--surface-strong);
  color: #eef4ff;
  box-shadow: var(--shadow);
}

.floating-note--top {
  left: 0;
  top: 1.5rem;
}

.floating-note--bottom {
  right: 0;
  bottom: 1.25rem;
}

.section {
  padding: 1.5rem 0 3.5rem;
  scroll-margin-top: 8rem;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 1.4rem;
}

.section-heading h2,
.cta h2 {
  margin: 0.9rem 0 0.75rem;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 0.98;
}

.card-grid,
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.info-card,
.timeline-card,
.product-strip,
.screen-showcase,
.cta {
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.info-card,
.timeline-card {
  padding: 1.25rem;
}

.info-card h3,
.timeline-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
}

.product-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  padding: 1.6rem;
}

.language-panel {
  padding: 1.6rem;
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.language-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.language-chip {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #deebff;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-content: start;
}

.pill {
  background: rgba(244, 248, 255, 0.96);
}

.screens .section-heading {
  margin-bottom: 1.8rem;
}

.screen-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  gap: 1rem;
  padding: 1rem;
}

.screen-showcase__panel {
  min-height: 100%;
}

.screen-showcase__meta {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.gallery-switches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gallery-switch.is-active {
  background: linear-gradient(135deg, rgba(255, 176, 57, 0.18), rgba(45, 125, 244, 0.12));
  border-color: rgba(255, 176, 57, 0.3);
}

.gallery-copy {
  padding: 1.15rem;
  border-radius: 22px;
  background: rgba(244, 248, 255, 0.86);
  border: 1px solid rgba(21, 39, 69, 0.08);
}

.gallery-copy h3 {
  margin: 0 0 0.7rem;
  font-size: 1.45rem;
}

.timeline-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 176, 57, 0.16);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-card {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.pricing-card--corporate {
  background:
    linear-gradient(180deg, rgba(45, 125, 244, 0.1), rgba(255, 255, 255, 0.9)),
    var(--surface);
}

.pricing-card__header {
  display: grid;
  gap: 0.75rem;
}

.pricing-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(242, 246, 255, 0.95);
  color: #5d6d87;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
}

.pricing-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.02;
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
}

.pricing-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding: 0.95rem 0.95rem 0.95rem 3rem;
  border: 1px solid rgba(21, 39, 69, 0.08);
  border-radius: 20px;
  background: rgba(248, 251, 255, 0.9);
  color: var(--text);
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.02rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 8px 18px rgba(255, 160, 32, 0.28);
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 1.6rem;
  background:
    linear-gradient(135deg, rgba(19, 35, 58, 0.98), rgba(31, 60, 101, 0.96)),
    #13233a;
  border-color: rgba(255, 255, 255, 0.08);
}

.cta .eyebrow,
.cta h2,
.cta p {
  color: #f3f7ff;
}

.cta .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  padding: 0 0 2rem;
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border: 1px solid rgba(21, 39, 69, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: 0 18px 38px rgba(21, 39, 69, 0.18);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
  z-index: 25;
}

.back-to-top:hover {
  background: rgba(255, 176, 57, 0.16);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: floatArrow 2.6s ease-in-out infinite;
}

@keyframes floatArrow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 1080px) {
  .hero,
  .product-strip,
  .screen-showcase,
  .cta,
  .card-grid,
  .timeline,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .frame--hero {
    margin-left: 0;
    transform: none;
  }

  .hero__visual {
    min-height: auto;
  }

  .floating-note {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }
}

@media (max-width: 760px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    top: 0.5rem;
    padding-top: 0.5rem;
  }

  .site-header__shell {
    grid-template-columns: auto auto;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem;
  }

  .brand {
    justify-content: flex-start;
  }

  .brand img {
    width: 68px;
    height: 68px;
    padding: 0.34rem;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    gap: 0.55rem;
    margin-top: 0.3rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(21, 39, 69, 0.08);
  }

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

  .site-nav a {
    width: 100%;
    padding: 0.8rem 0.95rem;
    background: rgba(255, 255, 255, 0.82);
  }

  .site-tools {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .language-switcher {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding: 0.28rem;
  }

  .lang-button {
    min-width: 3rem;
    flex: 1 0 auto;
  }

  .signal-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .hero {
    padding-top: 1.2rem;
    gap: 1.25rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.15rem);
    max-width: none;
    line-height: 0.93;
  }

  .hero__lede {
    font-size: 0.98rem;
  }

  .hero__visual {
    order: 2;
  }

  .floating-note {
    display: none;
  }

  .section {
    padding: 1rem 0 2.4rem;
  }

  .section-heading h2,
  .cta h2,
  .pricing-card h3 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .button,
  .gallery-switch {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero__actions,
  .cta__actions {
    flex-direction: column;
  }

  .gallery-switches {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .gallery-switch {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .info-card,
  .timeline-card,
  .pricing-card,
  .product-strip,
  .screen-showcase,
  .language-panel,
  .cta {
    padding: 1.1rem;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 4rem;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
  }
}

[dir="rtl"] .pricing-list li {
  padding: 0.95rem 3rem 0.95rem 0.95rem;
}

[dir="rtl"] .pricing-list li::before {
  left: auto;
  right: 1rem;
}
