:root {
  color-scheme: light;
  --ink: #11182e;
  --muted: #5d657c;
  --paper: #f8faff;
  --white: #ffffff;
  --line: #dfe5f2;
  --navy: #071333;
  --blue: #1769ff;
  --cyan: #36d5ff;
  --violet: #7b4dff;
  --mint: #35d2ab;
  --shadow: 0 24px 70px rgba(20, 39, 91, 0.13);
  --radius: 24px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-160%);
}

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

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(223, 229, 242, 0.82);
  background: rgba(248, 250, 255, 0.91);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.03em;
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue);
}

.nav-links a[aria-current="page"] {
  color: var(--blue);
}

.language {
  padding-left: 20px;
  border-left: 1px solid var(--line);
  color: var(--blue);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(53, 85, 220, 0.24);
  font-weight: 750;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(53, 85, 220, 0.31);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.button.light {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 86px;
  background:
    radial-gradient(circle at 78% 20%, rgba(54, 213, 255, 0.24), transparent 26%),
    radial-gradient(circle at 92% 84%, rgba(123, 77, 255, 0.3), transparent 35%),
    linear-gradient(145deg, #06102d 0%, #102a69 58%, #22206c 100%);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent, black 48%);
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-grid > div {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cyan);
  font-size: 1rem;
  letter-spacing: 0.14em;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 830px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.hero-copy {
  max-width: 720px;
  margin: 0 0 32px;
  color: #dce7ff;
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}

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

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: 0.94rem;
  font-weight: 750;
  white-space: nowrap;
}

.proof-item:last-child {
  border-right: 0;
}

.section {
  padding: 94px 0;
}

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

.section.dark {
  background: var(--navy);
  color: var(--white);
}

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

.section-heading p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.dark .section-heading p,
.dark .lead {
  color: #bac8e8;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 34px rgba(23, 47, 104, 0.06);
}

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

.map-showcase {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(circle at 88% 16%, rgba(54, 213, 255, 0.18), transparent 28%),
    radial-gradient(circle at 12% 90%, rgba(123, 77, 255, 0.2), transparent 34%),
    var(--navy);
}

.map-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: 76px;
}

.map-showcase-copy h2 {
  max-width: 760px;
  color: var(--white);
}

.map-showcase-copy > .lead {
  max-width: 740px;
  margin-bottom: 32px;
  color: #c8d5f0;
}

.map-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.map-feature-list li {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.map-feature-list strong,
.map-feature-list span {
  display: block;
}

.map-feature-list strong {
  color: var(--white);
  font-size: 0.95rem;
}

.map-feature-list span {
  margin-top: 4px;
  color: #b8c7e7;
  font-size: 0.84rem;
}

.product-shot-card {
  width: min(100%, 450px);
  margin: 0;
  justify-self: center;
  padding: 10px;
  border: 1px solid rgba(23, 105, 255, 0.22);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(123, 77, 255, 0.18));
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.34);
  transform: rotate(1deg);
}

.product-shot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 925 / 1800;
  border-radius: 20px;
  object-fit: contain;
}

.product-shot-card figcaption {
  padding: 12px 10px 6px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 1px 3px rgba(7, 19, 51, 0.72);
}

.ai-assistant-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(circle at 90% 12%, rgba(54, 213, 255, 0.2), transparent 30%),
    linear-gradient(145deg, #eef5ff, #f8f7ff 60%, #eeeaff);
}

.ai-assistant-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: 48px;
}

.ai-assistant-copy h2 {
  max-width: 720px;
}

.ai-assistant-copy > .lead {
  max-width: 720px;
  margin-bottom: 28px;
}

.voice-example {
  margin: 0 0 26px;
  padding: 24px 26px;
  border: 1px solid rgba(23, 105, 255, 0.18);
  border-left: 4px solid var(--blue);
  border-radius: 4px 18px 18px 4px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 35px rgba(23, 47, 104, 0.08);
}

.voice-example span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.voice-example strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
}

.voice-example p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.ai-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.ai-flow li {
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.ai-flow strong,
.ai-flow span {
  display: block;
}

.ai-flow strong {
  color: var(--navy);
  font-size: 0.93rem;
}

.ai-flow span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.ai-assistant-accent {
  width: min(100%, 360px);
  justify-self: center;
  filter: drop-shadow(0 22px 28px rgba(30, 48, 116, 0.2));
}

.ai-assistant-accent img {
  display: block;
  width: 100%;
}

.icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(23, 105, 255, 0.12), rgba(123, 77, 255, 0.16));
  color: var(--blue);
  font-size: 1.55rem;
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 68px 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  counter-increment: steps;
}

.step::before {
  content: "0" counter(steps);
  position: absolute;
  top: 22px;
  left: 26px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.step p {
  margin-bottom: 0;
  color: #bac8e8;
  font-size: 0.95rem;
}

.integrations-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(54, 213, 255, 0.14), transparent 28%),
    linear-gradient(145deg, #ffffff, #f2f6ff 62%, #f5f0ff);
}

.integrations-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 44px;
}

.integrations-heading h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.integrations-intro > .lead {
  margin: 14px 0 0;
}

.scope-pill {
  display: inline-flex;
  padding: 6px 11px;
  border: 1px solid rgba(23, 105, 255, 0.2);
  border-radius: 99px;
  background: rgba(23, 105, 255, 0.08);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.integration-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 34px rgba(23, 47, 104, 0.06);
}

.integration-symbol {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(23, 105, 255, 0.12), rgba(123, 77, 255, 0.18));
  color: var(--blue);
  font-size: 1.28rem;
  font-weight: 900;
}

.integration-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.integration-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  padding: 24px 26px;
  border: 1px solid rgba(23, 105, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.integration-callout p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.integration-callout strong {
  color: var(--navy);
}

.integration-callout .button {
  flex: 0 0 auto;
}

.edition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.edition {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.edition.featured {
  border-color: rgba(23, 105, 255, 0.5);
  box-shadow: var(--shadow);
}

.edition-label {
  width: fit-content;
  margin-bottom: 24px;
  padding: 5px 10px;
  border-radius: 99px;
  background: #eaf1ff;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.plan-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(23, 105, 255, 0.12), rgba(123, 77, 255, 0.18));
  color: var(--blue);
}

.plan-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.edition p {
  color: var(--muted);
}

.edition a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 750;
  text-decoration: none;
}

.edition a:hover,
.edition a:focus-visible {
  text-decoration: underline;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 70px;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 20px 22px 20px 58px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 18px;
  left: 22px;
  color: var(--mint);
  font-weight: 900;
}

.cta {
  padding: 88px 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(54, 213, 255, 0.2), transparent 25%),
    linear-gradient(135deg, #0c245d, #44208e);
  color: var(--white);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.cta h2 {
  max-width: 740px;
  margin-bottom: 12px;
}

.cta p {
  max-width: 680px;
  margin: 0;
  color: #d8e3ff;
}

.site-footer {
  padding: 48px 0 34px;
  background: #050b1e;
  color: #b8c3dc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 42px;
}

.footer-brand {
  max-width: 410px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.1rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: var(--white);
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cyan);
}

.copyright {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
}

.page-hero {
  padding: 78px 0 68px;
  background:
    radial-gradient(circle at 86% 12%, rgba(54, 213, 255, 0.2), transparent 28%),
    linear-gradient(145deg, #071333, #1f276f);
  color: var(--white);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #d8e3ff;
  font-size: 1.15rem;
}

.content {
  max-width: 860px;
  padding-top: 76px;
  padding-bottom: 90px;
}

.content h2 {
  margin-top: 56px;
  margin-bottom: 16px;
  font-size: 2rem;
}

.content h3 {
  margin-top: 34px;
}

.content p,
.content li {
  color: #414a62;
}

.content a {
  color: var(--blue);
}

.content-note {
  padding: 24px;
  border-left: 4px solid var(--blue);
  border-radius: 0 16px 16px 0;
  background: #eaf1ff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.contact-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.contact-card a {
  color: var(--blue);
  font-weight: 750;
}

.legal-details {
  margin-top: 48px;
  padding: 30px;
  border-radius: 22px;
  background: #edf2fb;
}

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

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.not-found img {
  width: 150px;
}

.not-found h1 {
  margin: 12px 0;
  font-size: 3rem;
}

.not-found p {
  color: #c8d5f0;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .nav-links a:not(.language):not(.nav-cta) {
    display: none;
  }

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

  .ai-assistant-grid {
    grid-template-columns: 1fr;
  }

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

  .product-shot-card {
    width: min(100%, 500px);
  }

  .ai-assistant-accent {
    width: min(74vw, 310px);
    margin-inline: auto;
  }

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

  .integrations-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

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

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    min-height: 68px;
  }

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

  .nav-links {
    gap: 12px;
  }

  .language {
    padding-left: 12px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 70px 0 60px;
  }

  .proof-grid,
  .cards,
  .steps,
  .edition-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .proof-item {
    padding: 20px 6px;
    font-size: 0.75rem;
  }

  .section,
  .cta,
  .map-showcase,
  .integrations-section,
  .ai-assistant-section {
    padding: 68px 0;
  }

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

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

  .map-feature-list {
    grid-template-columns: 1fr;
  }

  .product-shot-card {
    border-radius: 24px;
  }

  .product-shot-card img {
    border-radius: 17px;
  }

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

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

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
