:root {
  --navy-950: #04111e;
  --navy-900: #061829;
  --navy-800: #0b2941;
  --navy-700: #123b58;
  --ink: #142334;
  --muted: #607184;
  --line: #dfe7ef;
  --surface: #f4f7fb;
  --white: #fff;
  --teal: #35cbb0;
  --teal-dark: #11927e;
  --blue: #4b91f1;
  --violet: #8d78ee;
  --orange: #e6a15d;
  --shadow: 0 28px 80px rgba(2, 17, 30, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font: inherit;
}

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

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

button {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

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

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(4, 17, 30, 0.9);
  box-shadow: 0 10px 30px rgba(2, 10, 18, 0.18);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: Manrope, Inter, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.brand strong {
  color: var(--teal);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.main-nav > a:not(.button) {
  transition: color 0.2s ease;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button):focus-visible {
  color: var(--white);
}

.nav-login {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 99px;
  background: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button-sm {
  min-height: 40px;
  padding: 0 16px;
  background: var(--teal);
  color: var(--navy-950);
  box-shadow: 0 8px 22px rgba(53, 203, 176, 0.22);
}

.button-primary {
  background: var(--teal);
  color: var(--navy-950);
  box-shadow: 0 12px 32px rgba(53, 203, 176, 0.24);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button-light {
  background: var(--white);
  color: var(--navy-900);
}

.play {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 8px;
}

.hero {
  position: relative;
  min-height: 810px;
  padding: 148px 0 92px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 17, 30, 0.99) 0%, rgba(4, 17, 30, 0.9) 48%, rgba(4, 17, 30, 0.38) 100%),
    url("./assets/hero-tech.webp") center/cover,
    var(--navy-950);
}

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

.hero::after {
  position: absolute;
  bottom: -230px;
  left: -170px;
  width: 530px;
  height: 530px;
  border: 1px solid rgba(53, 203, 176, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(53, 203, 176, 0.025), 0 0 0 180px rgba(53, 203, 176, 0.018);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #96e9dc;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--teal);
}

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

.eyebrow.light {
  color: #a7efe4;
}

.hero h1 {
  max-width: 660px;
  margin: 24px 0 22px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  gap: 9px;
  margin: 18px 0 0 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.hero-product {
  position: relative;
  width: min(100%, 650px);
  margin: 0;
  justify-self: end;
  transform: none;
}

.hero-real {
  margin-top: 0;
  margin-bottom: 0;
}

.hero-screen {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: #0a1b2d;
  box-shadow: 0 45px 110px rgba(0, 0, 0, 0.56), 0 0 0 8px rgba(255, 255, 255, 0.03);
}

.hero-screen img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.hero-screen figcaption,
.assistant-screen figcaption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(4, 17, 30, 0.82);
  font-size: 10px;
  backdrop-filter: blur(10px);
}

.phone-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 6px solid #0a1a2b;
  border-radius: 30px;
  background: #0a1a2b;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.phone-notch {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 46%;
  height: 15px;
  border-radius: 0 0 12px 12px;
  background: #0a1a2b;
  transform: translateX(-50%);
}

.hero-phone {
  position: absolute;
  z-index: 5;
  right: -14px;
  bottom: -40px;
  width: clamp(128px, 12vw, 158px);
}

.product-glow {
  position: absolute;
  inset: 14% 6%;
  border-radius: 50%;
  background: rgba(53, 203, 176, 0.2);
  filter: blur(74px);
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(6, 24, 41, 0.88);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.floating-chip small,
.floating-chip b {
  display: block;
}

.floating-chip small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 7px;
}

.floating-chip b {
  font-size: 9px;
}

.chip-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: #06271f;
  background: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.chip-icon.money {
  color: #112740;
  background: #8fc1ff;
  font-size: 8px;
}

.chip-icon.app {
  color: #1d1140;
  background: #b6a7f7;
  font-size: 8px;
}

.chip-one {
  top: -16px;
  left: -2%;
}

.chip-two {
  bottom: 20%;
  left: -2%;
}

.trust-bar {
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}

.trust-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  min-height: 100px;
}

.trust-grid > p {
  margin: 0;
  padding-right: 32px;
  border-right: 1px solid var(--line);
  color: #405265;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding-left: 32px;
}

.trust-items span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #66778a;
  font-size: 10px;
  font-weight: 700;
}

.trust-items i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #d9e6e5;
  border-radius: 9px;
  color: var(--teal-dark);
  background: #edf9f7;
  font-size: 8px;
  font-style: normal;
}

.section {
  padding: 112px 0;
}

.section-heading h2,
.implementation h2,
.final-cta h2 {
  margin: 17px 0 16px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.section-heading.centered {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.section-heading.split p {
  margin: 0 0 10px;
}

.pain-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 203, 176, 0.08), transparent 28%),
    var(--white);
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
}

.transformation-card {
  position: relative;
  min-height: 360px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.transformation-card.before {
  background: #f8fafc;
}

.transformation-card.after {
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(53, 203, 176, 0.23), transparent 30%),
    var(--navy-900);
  box-shadow: var(--shadow);
}

.card-tag {
  display: inline-block;
  padding: 7px 9px;
  border-radius: 7px;
  color: #7e8d9d;
  background: #e9eef3;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.after .card-tag {
  color: #8ee9da;
  background: rgba(53, 203, 176, 0.12);
}

.transformation-card h3 {
  margin: 20px 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.transformation-card ul,
.capability-grid p,
.implementation p,
.security-card p {
  color: var(--muted);
}

.transformation-card ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.transformation-card li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.transformation-card.before li span {
  color: #bf6b6b;
}

.transformation-card.after ul {
  color: rgba(255, 255, 255, 0.68);
}

.transformation-card.after li span {
  color: var(--teal);
}

.transform-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  margin: auto;
  place-items: center;
  border: 1px solid #cfe1df;
  border-radius: 50%;
  color: var(--teal-dark);
  background: white;
  box-shadow: 0 8px 24px rgba(17, 146, 126, 0.12);
}

.chaos-lines {
  position: absolute;
  right: -40px;
  bottom: -25px;
  width: 220px;
  height: 130px;
  opacity: 0.28;
}

.chaos-lines i {
  position: absolute;
  width: 160px;
  height: 1px;
  background: #aab6c2;
  transform: rotate(var(--r, 12deg));
}

.chaos-lines i:nth-child(2) { --r: -18deg; top: 38px; }
.chaos-lines i:nth-child(3) { --r: 30deg; top: 75px; }
.chaos-lines i:nth-child(4) { --r: -8deg; top: 105px; }

.flow-mini {
  display: flex;
  align-items: center;
  margin-top: 38px;
}

.flow-mini i {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #a7efe4;
  background: rgba(255, 255, 255, 0.05);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.flow-mini b {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(53, 203, 176, 0.2), var(--teal));
}

.flow-section {
  background: var(--surface);
}

.journey {
  overflow: hidden;
  border: 1px solid #dce5ed;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.journey-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}

.journey-tabs button {
  position: relative;
  display: grid;
  min-height: 116px;
  padding: 22px;
  border: 0;
  border-right: 1px solid var(--line);
  background: white;
  text-align: left;
  cursor: pointer;
}

.journey-tabs button:last-child {
  border-right: 0;
}

.journey-tabs button::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 3px;
  border-radius: 99px 99px 0 0;
  background: transparent;
  content: "";
}

.journey-tabs button[aria-selected="true"] {
  background: #f5fbfa;
}

.journey-tabs button[aria-selected="true"]::after {
  background: var(--teal);
}

.journey-tabs button span {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 9px;
  font-weight: 800;
}

.journey-tabs button b {
  margin-bottom: 5px;
  color: #1b2f42;
  font-size: 12px;
}

.journey-tabs button small {
  color: #8190a0;
  font-size: 9px;
  line-height: 1.4;
}

.journey-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  align-items: center;
  gap: clamp(36px, 4vw, 56px);
  min-height: 0;
  padding: clamp(36px, 4.5vw, 56px);
  background:
    radial-gradient(circle at 14% 30%, rgba(53, 203, 176, 0.09), transparent 33%),
    white;
}

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

.panel-visual {
  position: relative;
  width: min(100%, 800px);
  margin: auto;
}

.panel-visual .browser-frame {
  width: 100%;
}

.panel-phone {
  position: absolute;
  z-index: 3;
  right: -12px;
  bottom: -24px;
  width: clamp(104px, 10vw, 132px);
  border-width: 5px;
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.panel-phone img {
  border-radius: 18px;
}

.browser-frame {
  position: relative;
  width: min(100%, 800px);
  height: auto;
  margin: auto;
  overflow: hidden;
  border: 8px solid #0a1a2b;
  border-radius: 25px;
  background: #0a1a2b;
  box-shadow: 0 28px 68px rgba(6, 24, 41, 0.24);
}

.browser-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 11px;
  color: #93a1ae;
  background: #0a1a2b;
  font-size: 7px;
}

.browser-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #526171;
}

.browser-bar span {
  margin-left: 8px;
}

.browser-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  background: #eaf1f6;
}

.assistant-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 35%, rgba(53, 203, 176, 0.13), transparent 27%),
    #eef5f7;
}

.assistant-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 70px;
}

.assistant-copy h2 {
  margin: 18px 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.assistant-copy > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.assistant-copy ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.assistant-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

.assistant-copy li span {
  display: grid;
  flex: 0 0 25px;
  height: 25px;
  place-items: center;
  border-radius: 7px;
  color: var(--teal-dark);
  background: #dff5f1;
  font-size: 10px;
}

.assistant-screen {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 8px solid #0a1a2b;
  border-radius: 25px;
  background: #0a1a2b;
  box-shadow: 0 28px 68px rgba(6, 24, 41, 0.22);
}

.assistant-screen img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.browser-frame > small {
  position: absolute;
  left: 12px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 6px;
  color: white;
  background: rgba(4, 17, 30, 0.74);
  font-size: 10px;
}

[data-zoom] {
  cursor: zoom-in;
}

.zoom-hint {
  position: absolute;
  top: 46px;
  right: 12px;
  padding: 5px 8px;
  border-radius: 6px;
  color: white;
  background: rgba(4, 17, 30, 0.74);
  font-size: 10px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.browser-frame:hover .zoom-hint,
.browser-frame:focus-within .zoom-hint {
  opacity: 1;
}

.lightbox {
  width: min(96vw, 1240px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #0a1a2b;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.lightbox::backdrop {
  background: rgba(2, 10, 18, 0.82);
  backdrop-filter: blur(6px);
}

.lightbox img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  background: rgba(4, 17, 30, 0.8);
  font-size: 14px;
  cursor: pointer;
}

.panel-copy .step-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  color: var(--teal-dark);
  background: #e9f9f6;
  font-size: 10px;
  font-weight: 800;
}

.panel-copy h3 {
  margin: 20px 0 14px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 27px;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.panel-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.panel-copy ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  color: #3e5368;
  font-size: 12px;
  font-weight: 600;
  list-style: none;
}

.panel-copy li::before {
  margin-right: 9px;
  color: var(--teal-dark);
  content: "✓";
}

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

.capability-grid article {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.capability-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(16, 38, 58, 0.09);
}

.cap-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #cee7e3;
  border-radius: 12px;
  color: var(--teal-dark);
  background: #edf9f7;
  font-size: 13px;
  font-weight: 800;
}

.capability-grid h3 {
  margin: 23px 0 10px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.capability-grid p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.mobile-showcase {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(53, 203, 176, 0.16), transparent 32%),
    radial-gradient(circle at 10% 90%, rgba(75, 145, 241, 0.12), transparent 30%),
    var(--navy-950);
}

.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(48px, 6vw, 90px);
}

.mobile-copy h2 {
  margin: 18px 0 16px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.mobile-copy > p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.75;
}

.mobile-copy ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.mobile-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.mobile-copy li span {
  display: grid;
  flex: 0 0 25px;
  height: 25px;
  place-items: center;
  border-radius: 7px;
  color: #8fe8da;
  background: rgba(53, 203, 176, 0.14);
  font-size: 10px;
}

.mobile-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.mobile-actions small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.mobile-devices {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(18px, 3vw, 34px);
  padding: 12px 0;
}

.mobile-devices .phone-frame {
  width: clamp(180px, 19vw, 236px);
}

.mobile-devices .phone-a {
  transform: rotate(-3deg) translateY(14px);
}

.mobile-devices .phone-b {
  transform: rotate(2.5deg) translateY(-6px);
}

.implementation {
  color: white;
  background:
    radial-gradient(circle at 85% 30%, rgba(53, 203, 176, 0.14), transparent 27%),
    var(--navy-900);
}

.implementation-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: 90px;
}

.implementation-copy > p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.75;
}

.implementation-points {
  display: grid;
  gap: 17px;
  margin: 34px 0;
}

.implementation-points div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
}

.implementation-points span {
  grid-row: 1 / 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(53, 203, 176, 0.32);
  border-radius: 10px;
  color: #8fe8da;
  background: rgba(53, 203, 176, 0.08);
  font-size: 9px;
  font-weight: 800;
}

.implementation-points b {
  font-size: 13px;
}

.implementation-points small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #96eadd;
  font-size: 13px;
  font-weight: 800;
}

.security-card {
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.shield {
  display: grid;
  width: 58px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(53, 203, 176, 0.45);
  border-radius: 24px 24px 30px 30px;
  color: var(--navy-950);
  background: var(--teal);
  font-size: 18px;
  font-weight: 800;
}

.security-card h3 {
  margin: 26px 0 12px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.security-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.7;
}

.security-card ul {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  list-style: none;
}

.security-card li span {
  margin-right: 9px;
  color: var(--teal);
}

.faq-section {
  background: #fbfcfe;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 90px;
}

.faq-grid .section-heading {
  position: sticky;
  top: 120px;
}

.dark-link {
  color: var(--teal-dark);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 42px 25px 0;
  color: #203448;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 31px;
  right: 4px;
  width: 14px;
  height: 2px;
  border-radius: 99px;
  background: var(--teal-dark);
  content: "";
}

.faq-list summary span::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 650px;
  margin: -6px 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  padding: 74px 0;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 84% 50%, rgba(255, 255, 255, 0.14), transparent 25%),
    linear-gradient(112deg, #0d8f7b, #25b99f);
}

.final-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(white 1px, transparent 1px),
    linear-gradient(90deg, white 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to left, black, transparent 70%);
}

.final-content {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 25px;
}

.final-content > img {
  border-radius: 18px;
}

.final-content > div > span {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.72;
}

.final-cta h2 {
  max-width: 650px;
  margin: 7px 0 0;
  font-size: 36px;
}

.final-actions {
  display: grid;
  gap: 9px;
  justify-items: center;
}

.final-actions small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.site-footer {
  padding: 66px 0 24px;
  color: rgba(255, 255, 255, 0.6);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.7fr);
  gap: 48px;
}

.footer-brand {
  margin-bottom: 15px;
}

.footer-grid > div p {
  max-width: 320px;
  font-size: 12px;
  line-height: 1.7;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 11px;
}

.footer-grid nav strong {
  margin-bottom: 4px;
  color: white;
  font-size: 11px;
}

.footer-grid nav a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-ready .reveal.visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid rgba(53, 203, 176, 0.48);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

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

  .hero {
    padding-bottom: 60px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-product {
    width: min(760px, 96%);
    margin: 35px auto 0;
    transform: none;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }

  .trust-grid > p {
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-items {
    padding: 18px 0 0;
  }

  .journey-panel {
    gap: 38px;
    padding: 46px;
  }

  .journey-tabs button {
    padding-inline: 16px;
  }

  .assistant-grid {
    gap: 42px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, 700px);
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(4, 17, 30, 0.97);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(16px);
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
  }

  .nav-login {
    padding: 14px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  .hero h1 {
    font-size: clamp(40px, 10vw, 60px);
  }

  .hero-product {
    width: 100%;
    margin: 34px 0 0;
    transform: none;
  }

  .trust-items {
    grid-template-columns: repeat(3, 1fr);
  }

  .section {
    padding: 84px 0;
  }

  .section-heading.split,
  .implementation-grid,
  .faq-grid,
  .mobile-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .transformation-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .transform-arrow {
    transform: rotate(90deg);
  }

  .journey-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .journey-tabs button:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .journey-tabs button:nth-child(3) {
    border-right: 0;
  }

  .journey-panel {
    grid-template-columns: 1fr;
  }

  .browser-frame {
    width: 100%;
  }

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

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

  .assistant-copy {
    max-width: 650px;
  }

  .faq-grid .section-heading {
    position: static;
  }

  .final-content {
    grid-template-columns: 60px 1fr;
  }

  .final-actions {
    grid-column: 1 / 3;
    justify-items: stretch;
    margin-top: 12px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid > nav:last-child {
    grid-column: 2;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 24px, 520px);
  }

  .nav-shell {
    min-height: 68px;
  }

  .hero {
    padding: 112px 0 40px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: 39px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    flex-wrap: wrap;
  }

  .hero-product {
    width: 100%;
    margin: 32px 0 0;
    transform: none;
  }

  .hero-screen {
    border-radius: 16px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
  }

  .hero-screen figcaption {
    position: static;
    display: block;
    padding: 8px 10px;
    border: 0;
    border-radius: 0;
    text-align: center;
  }

  .floating-chip {
    display: none;
  }

  .hero-phone {
    right: -4px;
    bottom: -16px;
    width: 108px;
  }

  .panel-phone {
    right: -4px;
    bottom: -14px;
    width: 96px;
  }

  .mobile-devices .phone-frame {
    width: clamp(150px, 42vw, 200px);
  }

  .mobile-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    text-align: center;
  }













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

  .trust-items span {
    font-size: 9px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading h2,
  .implementation h2 {
    font-size: 34px;
  }

  .section-heading.centered {
    margin-bottom: 38px;
    text-align: left;
  }

  .transformation-card {
    min-height: auto;
    padding: 26px;
  }

  .journey-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .journey-tabs button {
    flex: 0 0 76%;
    min-height: 108px;
    border-bottom: 0 !important;
    scroll-snap-align: start;
  }

  .journey-panel {
    min-height: 0;
    padding: 20px;
  }

  .browser-frame {
    height: auto;
    min-height: 0;
  }

  .browser-frame img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .browser-frame > small {
    right: 8px;
    bottom: 8px;
  }

  .panel-copy {
    padding: 8px 4px 20px;
  }

  .panel-copy h3 {
    font-size: 28px;
  }

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

  .capability-grid article {
    min-height: 0;
  }

  .security-card {
    padding: 28px;
  }

  .assistant-screen {
    border-width: 5px;
    border-radius: 17px;
  }

  .assistant-screen figcaption {
    position: static;
    display: block;
    border: 0;
    border-radius: 0;
    text-align: center;
  }

  .final-cta {
    padding: 60px 0;
  }

  .final-content {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .final-content > img {
    width: 48px;
    height: 48px;
  }

  .final-cta h2 {
    font-size: 29px;
  }

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

  .footer-grid > div {
    grid-column: 1 / 3;
  }

  .footer-grid > nav:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
