:root {
  --navy-950: #050b20;
  --navy-900: #07112f;
  --navy-850: #0c1738;
  --navy-800: #111f48;
  --blue-600: #3157e8;
  --blue-500: #4361ee;
  --violet-500: #7157d9;
  --cyan-500: #55d8cf;
  --cyan-200: #b8fff4;
  --green-500: #0c986a;
  --ink: #101528;
  --muted: #657083;
  --line: #dce2ef;
  --surface: #ffffff;
  --surface-soft: #f6f8fd;
  --surface-tinted: #eef2fb;
  --shadow-sm: 0 12px 32px rgb(24 42 98 / 9%);
  --shadow-md: 0 24px 70px rgb(24 42 98 / 14%);
  --shadow-lg: 0 38px 100px rgb(3 9 33 / 32%);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shell: min(1180px, calc(100vw - 40px));
  --header-height: 76px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--navy-900);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
select,
input,
textarea {
  font: inherit;
}

button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.06;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--navy-900);
  background: white;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.ambient {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--navy-900);
}

.ambient__orb {
  position: absolute;
  width: 44rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.34;
  will-change: transform;
}

.ambient__orb--one {
  top: -24rem;
  left: -14rem;
  background: radial-gradient(circle, rgb(49 87 232 / 80%), transparent 68%);
  animation: ambient-one 18s ease-in-out infinite alternate;
}

.ambient__orb--two {
  top: 26rem;
  right: -28rem;
  background: radial-gradient(circle, rgb(113 87 217 / 72%), transparent 68%);
  animation: ambient-two 24s ease-in-out infinite alternate;
}

.ambient__orb--three {
  bottom: -32rem;
  left: 22%;
  background: radial-gradient(circle, rgb(85 216 207 / 42%), transparent 68%);
  animation: ambient-three 22s ease-in-out infinite alternate;
}

.ambient__grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgb(255 255 255 / 18%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 18%) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  color: white;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header:has(.mobile-nav:not([hidden])) {
  border-color: rgb(255 255 255 / 11%);
  background: rgb(5 11 32 / 82%);
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 16px 45px rgb(1 6 25 / 18%);
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  width: 35px;
  height: 39px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  padding: 9px 13px;
  border-radius: 10px;
  color: rgb(242 246 255 / 76%);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.desktop-nav a:hover {
  color: white;
  background: rgb(255 255 255 / 8%);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-control {
  display: flex;
  height: 38px;
  align-items: center;
  gap: 6px;
  padding: 0 8px 0 10px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 11px;
  background: rgb(255 255 255 / 7%);
}

.language-control svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.language-control select {
  max-width: 70px;
  border: 0;
  color: white;
  background: transparent;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.language-control option {
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 11px;
  color: white;
  background: rgb(255 255 255 / 7%);
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] > span:nth-last-child(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] > span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  width: var(--shell);
  margin: 0 auto 14px;
  padding: 8px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 16px;
  background: rgb(7 17 47 / 94%);
  box-shadow: var(--shadow-lg);
}

.mobile-nav a {
  display: block;
  padding: 13px 14px;
  border-radius: 10px;
  color: rgb(255 255 255 / 86%);
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav a:hover {
  background: rgb(255 255 255 / 8%);
}

.hero {
  position: relative;
  min-height: 780px;
  padding: calc(var(--header-height) + 92px) 0 94px;
  isolation: isolate;
  color: white;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8rem;
  bottom: -15rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgb(184 255 244 / 10%);
  border-radius: 50%;
  box-shadow: inset 0 0 90px rgb(85 216 207 / 7%);
  animation: halo 10s ease-in-out infinite alternate;
}

.hero__glow {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgb(113 87 217 / 55%), transparent 27rem),
    radial-gradient(circle at 11% 80%, rgb(8 125 115 / 32%), transparent 24rem),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 48%, #172d78);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 9px;
  padding: 5px 11px;
  border: 1px solid rgb(49 87 232 / 17%);
  border-radius: 999px;
  color: #2944b8;
  background: rgb(49 87 232 / 7%);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--dark {
  border-color: rgb(184 255 244 / 18%);
  color: var(--cyan-200);
  background: rgb(184 255 244 / 7%);
}

.eyebrow__pulse {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 5px rgb(85 216 207 / 12%);
  animation: pulse 2s ease-out infinite;
}

.hero h1 {
  max-width: 700px;
  margin: 24px 0 24px;
  font-size: clamp(3.3rem, 6vw, 5.7rem);
  font-weight: 850;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
}

.text-gradient {
  width: fit-content;
  color: transparent;
  background: linear-gradient(100deg, var(--cyan-200), #71dbf6 45%, #98a7ff 85%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 0;
  color: rgb(241 245 255 / 76%);
  font-size: clamp(1.05rem, 1.65vw, 1.27rem);
  line-height: 1.68;
}

.hero__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button--primary {
  color: var(--navy-900);
  background: white;
  box-shadow: 0 16px 36px rgb(1 6 28 / 27%);
}

.button--primary:hover {
  box-shadow: 0 20px 45px rgb(1 6 28 / 38%);
}

.button--ghost {
  border-color: rgb(255 255 255 / 17%);
  color: white;
  background: rgb(255 255 255 / 7%);
  backdrop-filter: blur(12px);
}

.button--ghost:hover {
  border-color: rgb(255 255 255 / 27%);
  background: rgb(255 255 255 / 11%);
}

.hero__metrics {
  display: flex;
  gap: clamp(20px, 4vw, 45px);
  margin: 42px 0 0;
}

.hero__metrics div {
  position: relative;
}

.hero__metrics div + div::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: calc(clamp(20px, 4vw, 45px) / -2);
  width: 1px;
  background: rgb(255 255 255 / 14%);
}

.hero__metrics dt {
  color: white;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.hero__metrics dd {
  margin: 4px 0 0;
  color: rgb(241 245 255 / 58%);
  font-size: 12px;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  min-height: 580px;
  perspective: 1000px;
}

.orbit {
  position: absolute;
  border: 1px solid rgb(184 255 244 / 16%);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.orbit::after {
  content: "";
  position: absolute;
  top: 12%;
  left: 10%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 22px var(--cyan-500);
}

.orbit--one {
  inset: 8% 0 4%;
  animation: orbit-drift 12s ease-in-out infinite alternate;
}

.orbit--two {
  inset: 18% -8% 13% 8%;
  border-color: rgb(141 121 242 / 17%);
  transform: rotate(20deg);
  animation: orbit-drift-two 15s ease-in-out infinite alternate;
}

.phone {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 7px solid #0d1327;
  border-radius: 38px;
  background: #0d1327;
  box-shadow: var(--shadow-lg);
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 30px;
  pointer-events: none;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone__speaker {
  position: absolute;
  z-index: 7;
  top: 9px;
  left: 50%;
  width: 27%;
  height: 19px;
  border-radius: 999px;
  background: #0d1327;
  transform: translateX(-50%);
}

.phone--hero {
  width: min(310px, 68vw);
  height: 600px;
  margin: 0 auto;
  transform: rotate(2.5deg) translateZ(0);
  animation: phone-float 6s ease-in-out infinite;
}

.scan-line {
  position: absolute;
  z-index: 6;
  top: 18%;
  right: 8%;
  left: 8%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-200) 20%, white 50%, var(--cyan-200) 80%, transparent);
  box-shadow: 0 0 18px var(--cyan-500), 0 0 42px rgb(85 216 207 / 45%);
  opacity: 0;
  animation: scan 5s ease-in-out 1.4s infinite;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  min-width: 205px;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid rgb(255 255 255 / 19%);
  border-radius: 16px;
  color: white;
  background: rgb(10 20 53 / 79%);
  box-shadow: 0 18px 50px rgb(1 6 27 / 35%);
  backdrop-filter: blur(16px) saturate(140%);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 13px;
  line-height: 1.3;
}

.floating-card small {
  margin-top: 2px;
  color: rgb(241 245 255 / 57%);
  font-size: 10px;
}

.floating-card__icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
}

.floating-card__icon--cyan {
  color: var(--cyan-200);
  background: rgb(85 216 207 / 14%);
}

.floating-card__icon--violet {
  color: #c9c1ff;
  background: rgb(141 121 242 / 16%);
}

.floating-card__icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.floating-card--scan {
  top: 9%;
  left: -5%;
  animation: card-float-one 7s ease-in-out infinite;
}

.floating-card--method {
  right: -3%;
  bottom: 27%;
  animation: card-float-two 8s ease-in-out 0.8s infinite;
}

.floating-card--source {
  bottom: 6%;
  left: -7%;
  animation: card-float-one 8.5s ease-in-out 1.5s infinite;
}

.mini-score {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--cyan-500) 0 78%, rgb(255 255 255 / 10%) 78% 100%);
}

.mini-score::before {
  content: "";
  grid-area: 1 / 1;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--navy-850);
}

.mini-score span {
  z-index: 1;
  grid-area: 1 / 1;
  color: var(--cyan-200);
  font-size: 11px;
  font-weight: 850;
}

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

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

.trust-strip article {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 15px;
  padding: 24px 30px;
}

.trust-strip article + article {
  border-left: 1px solid var(--line);
}

.trust-strip svg {
  width: 29px;
  flex: 0 0 auto;
  color: var(--blue-600);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.trust-strip h2 {
  margin-bottom: 3px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.trust-strip p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.section {
  position: relative;
  padding: clamp(88px, 10vw, 138px) 0;
}

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

.section--tinted {
  background:
    radial-gradient(circle at 8% 15%, rgb(85 216 207 / 8%), transparent 28rem),
    radial-gradient(circle at 95% 60%, rgb(113 87 217 / 8%), transparent 30rem),
    var(--surface-soft);
}

.section-heading {
  max-width: 790px;
  margin: 0 auto clamp(44px, 6vw, 70px);
  text-align: center;
}

.section-heading--wide {
  max-width: 900px;
}

.section-heading h2,
.app-showcase h2,
.transparency h2,
.final-cta h2 {
  margin: 19px 0 18px;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  font-weight: 850;
  letter-spacing: -0.055em;
}

.section-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}

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

.steps::before {
  content: "";
  position: absolute;
  top: 72px;
  right: 16.66%;
  left: 16.66%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #bdc8e4 15% 85%, transparent);
}

.step-card {
  position: relative;
  z-index: 1;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 88%);
  box-shadow: var(--shadow-sm);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.step-card:hover {
  border-color: rgb(49 87 232 / 26%);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.step-card__number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: #b6bfd1;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.step-card__icon,
.bento-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 42px;
  place-items: center;
  border: 1px solid rgb(49 87 232 / 12%);
  border-radius: 19px;
  color: var(--blue-600);
  background: linear-gradient(145deg, white, #ecf0ff);
  box-shadow: 0 12px 28px rgb(49 87 232 / 12%);
}

.step-card__icon--violet {
  color: var(--violet-500);
  background: linear-gradient(145deg, white, #f1edff);
}

.step-card__icon--green {
  color: var(--green-500);
  background: linear-gradient(145deg, white, #e5f9f3);
}

.step-card__icon svg,
.bento-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.step-card h3,
.bento-card h3,
.category-card h3,
.principle-card h3 {
  margin-bottom: 13px;
  font-size: 1.45rem;
  font-weight: 820;
}

.step-card p,
.bento-card p,
.category-card p,
.principle-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.bento {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgb(202 212 233 / 85%);
  border-radius: var(--radius-lg);
  background: rgb(255 255 255 / 90%);
  box-shadow: var(--shadow-sm);
}

.bento-card--score {
  min-height: 430px;
  color: white;
  border-color: rgb(255 255 255 / 10%);
  background:
    radial-gradient(circle at 80% 20%, rgb(113 87 217 / 60%), transparent 20rem),
    linear-gradient(145deg, var(--navy-950), #152961);
  box-shadow: 0 30px 80px rgb(10 22 61 / 23%);
}

.bento-card--score::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgb(184 255 244 / 13%);
  border-radius: 50%;
}

.bento-card--score h3 {
  max-width: 480px;
  margin-top: 26px;
  color: white;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.05em;
}

.bento-card--score p {
  max-width: 460px;
  color: rgb(241 245 255 / 65%);
}

.bento-card__topline {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan-200);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 5px rgb(85 216 207 / 11%);
}

.score-demo {
  position: absolute;
  right: clamp(26px, 4vw, 48px);
  bottom: clamp(26px, 4vw, 42px);
  display: flex;
  align-items: center;
  gap: 22px;
}

.score-demo__orb {
  display: grid;
  width: 106px;
  height: 106px;
  place-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--navy-850) 61%, transparent 62%), conic-gradient(var(--cyan-500) 0 78%, rgb(255 255 255 / 9%) 78%);
  box-shadow: 0 0 38px rgb(85 216 207 / 12%);
  text-align: center;
}

.score-demo__orb span {
  font-size: 26px;
  font-weight: 850;
  line-height: 1;
}

.score-demo__orb small {
  color: rgb(255 255 255 / 48%);
  font-size: 10px;
}

.score-demo__bars {
  display: grid;
  width: 120px;
  gap: 9px;
}

.score-demo__bars span {
  height: 5px;
  overflow: hidden;
  border-radius: 5px;
  background: rgb(255 255 255 / 9%);
}

.score-demo__bars i {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan-500), #8d79f2);
}

.score-demo__bars span:nth-child(2) i { width: 64%; }
.score-demo__bars span:nth-child(3) i { width: 91%; }

.bento-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 32px;
  border-radius: 15px;
  box-shadow: none;
}

.bento-icon--cyan {
  color: #087e76;
  background: #e7fbf8;
}

.axis-list {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.axis-list span {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid #e6eaf3;
  border-radius: 12px;
  background: #f9faff;
}

.axis-list b {
  font-size: 12px;
}

.axis-list em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 750;
}

.axis-list__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.axis-list__dot--cyan { background: var(--cyan-500); }
.axis-list__dot--violet { background: var(--violet-500); }
.axis-list__dot--green { background: var(--green-500); }

.bento-card--sources,
.bento-card--missing {
  min-height: 320px;
}

.source-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.source-chips li {
  padding: 7px 10px;
  border: 1px solid #dce4f0;
  border-radius: 999px;
  color: #40506a;
  background: #f8fafc;
  font-size: 11px;
  font-weight: 750;
}

.bento-card--missing {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 30px;
}

.missing-state {
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  border: 1px dashed #bac4d8;
  border-radius: 26px;
  color: #8792a7;
  background: linear-gradient(145deg, #f9fafc, #edf1f7);
  font-size: 43px;
  font-weight: 300;
}

.method-notice {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 21px;
  border: 1px solid #d8deec;
  border-radius: 16px;
  color: #4b5870;
  background: rgb(255 255 255 / 68%);
}

.method-notice svg {
  width: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--blue-600);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.method-notice p {
  margin: 0;
  font-size: 13px;
}

.app-showcase {
  min-height: 780px;
  color: white;
  background: var(--navy-900);
  overflow: hidden;
  isolation: isolate;
}

.app-showcase__glow {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgb(67 97 238 / 42%), transparent 31rem),
    radial-gradient(circle at 85% 95%, rgb(85 216 207 / 18%), transparent 24rem),
    linear-gradient(140deg, var(--navy-950), var(--navy-900));
}

.app-showcase__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.app-showcase h2,
.transparency h2,
.final-cta h2 {
  color: white;
}

.app-showcase__copy > p,
.transparency__copy > p,
.final-cta__inner > p {
  color: rgb(241 245 255 / 65%);
  font-size: 1.05rem;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgb(255 255 255 / 79%);
  font-size: 14px;
  font-weight: 650;
}

.check-list svg {
  width: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 4px;
  border-radius: 50%;
  color: var(--cyan-200);
  background: rgb(85 216 207 / 13%);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.phone-gallery {
  position: relative;
  min-height: 580px;
}

.phone--gallery {
  position: absolute;
  top: 50%;
  width: 235px;
  height: 500px;
}

.phone--gallery-main {
  z-index: 4;
  left: 50%;
  transform: translate(-50%, -50%);
}

.phone--gallery-left {
  z-index: 2;
  left: 7%;
  transform: translateY(-50%) rotate(-8deg) scale(0.91);
  opacity: 0.76;
}

.phone--gallery-right {
  z-index: 3;
  right: 6%;
  transform: translateY(-50%) rotate(8deg) scale(0.91);
  opacity: 0.8;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.category-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.category-card__visual {
  display: grid;
  height: 185px;
  margin: -6px -6px 24px;
  place-items: center;
  border-radius: 18px;
}

.category-card__visual::after {
  content: "";
  position: absolute;
  top: 37px;
  width: 130px;
  height: 130px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.1;
  animation: halo 6s ease-in-out infinite alternate;
}

.category-card__visual svg {
  z-index: 1;
  width: 82px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.category-card--food .category-card__visual {
  color: #087e76;
  background: linear-gradient(145deg, #e3fbf6, #f6fffc);
}

.category-card--cosmetics .category-card__visual {
  color: #654bc7;
  background: linear-gradient(145deg, #eeeaff, #faf8ff);
}

.category-card--cleaning .category-card__visual {
  color: #2f55da;
  background: linear-gradient(145deg, #e9efff, #f8faff);
}

.category-card__badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  border: 1px solid #dce3ef;
  border-radius: 999px;
  color: #58657b;
  background: #f8fafc;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.category-card--food .category-card__badge {
  border-color: #bce9dd;
  color: #087258;
  background: #eefbf7;
}

.coverage-note {
  max-width: 680px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.transparency {
  color: white;
  background:
    radial-gradient(circle at 12% 20%, rgb(85 216 207 / 19%), transparent 25rem),
    radial-gradient(circle at 91% 77%, rgb(113 87 217 / 31%), transparent 32rem),
    linear-gradient(145deg, #07112f, #12265e);
}

.transparency__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.principles {
  display: grid;
  gap: 12px;
}

.principle-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 25px;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 19px;
  background: rgb(255 255 255 / 6%);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.principle-card:hover {
  border-color: rgb(184 255 244 / 20%);
  background: rgb(255 255 255 / 8%);
  transform: translateX(4px);
}

.principle-card > span {
  color: var(--cyan-200);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.principle-card h3 {
  margin-bottom: 6px;
  color: white;
  font-size: 1.12rem;
}

.principle-card p {
  color: rgb(241 245 255 / 58%);
  font-size: 13px;
}

.roadmap {
  overflow: hidden;
}

.route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 38px;
}

.route__line {
  position: absolute;
  top: 54px;
  right: 16.66%;
  left: 16.66%;
  height: 2px;
  overflow: hidden;
  background: #d8dfed;
}

.route__line i {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--blue-500), var(--cyan-500), transparent);
  animation: route-progress 5s ease-in-out infinite;
}

.route-stop {
  position: relative;
  padding: 55px 22px 28px;
  text-align: center;
}

.route-stop__marker {
  position: absolute;
  z-index: 2;
  top: 4px;
  left: 50%;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 2px solid #cbd4e6;
  border-radius: 50%;
  background: white;
  transform: translateX(-50%);
}

.route-stop__marker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a5b0c5;
}

.route-stop--active .route-stop__marker {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 7px rgb(85 216 207 / 12%);
}

.route-stop--active .route-stop__marker i {
  background: var(--blue-600);
}

.route-stop small {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.route-stop h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.route-stop p {
  max-width: 290px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
}

.about {
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 10%, rgb(85 216 207 / 10%), transparent 27rem),
    radial-gradient(circle at 95% 80%, rgb(113 87 217 / 10%), transparent 30rem),
    var(--surface-soft);
}

.about__glow {
  position: absolute;
  top: 22%;
  left: 50%;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgb(67 97 238 / 7%);
  border-radius: 50%;
  pointer-events: none;
  transform: translateX(-50%);
}

.about__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.about__intro,
.about__story {
  min-height: 510px;
  padding: clamp(34px, 5vw, 58px);
  border-radius: var(--radius-lg);
}

.about__intro {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 100% 0, rgb(113 87 217 / 65%), transparent 22rem),
    radial-gradient(circle at 5% 100%, rgb(85 216 207 / 24%), transparent 20rem),
    linear-gradient(145deg, var(--navy-950), #132861);
  box-shadow: 0 30px 80px rgb(10 22 61 / 23%);
}

.about__intro::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -9rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgb(184 255 244 / 12%);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgb(255 255 255 / 2%), 0 0 0 84px rgb(255 255 255 / 1.5%);
}

.about h2 {
  position: relative;
  z-index: 1;
  max-width: 590px;
  margin: 20px 0 18px;
  color: white;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 850;
  letter-spacing: -0.055em;
}

.about__lead {
  position: relative;
  z-index: 1;
  max-width: 500px;
  color: rgb(241 245 255 / 67%);
  font-size: 1.05rem;
}

.about__signature {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
}

.about__signature-mark {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(184 255 244 / 20%);
  border-radius: 17px;
  color: var(--cyan-200);
  background: rgb(255 255 255 / 7%);
  backdrop-filter: blur(12px);
  animation: heart-breathe 4.6s ease-in-out infinite;
}

.about__signature-mark svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.about__signature-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, rgb(184 255 244 / 45%), transparent);
}

.about__story {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgb(255 255 255 / 90%);
  box-shadow: var(--shadow-sm);
}

.about__story p {
  color: #3d465b;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.78;
}

.about__story p + p {
  margin-top: 4px;
}

.about__story p:last-child {
  margin-bottom: 0;
  color: var(--blue-600);
  font-size: clamp(1.13rem, 1.8vw, 1.3rem);
  font-weight: 780;
  line-height: 1.48;
}

.about-features {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.about-feature {
  display: grid;
  min-height: 190px;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 88%);
  box-shadow: var(--shadow-sm);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.about-feature:hover {
  border-color: rgb(49 87 232 / 24%);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.about-feature__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 15px;
  color: var(--blue-600);
  background: #edf1ff;
}

.about-feature__icon--cyan {
  color: #087e76;
  background: #e2faf6;
}

.about-feature__icon--violet {
  color: var(--violet-500);
  background: #eeeaff;
}

.about-feature__icon--green {
  color: var(--green-500);
  background: #e7f8f1;
}

.about-feature__icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.about-feature h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
  font-weight: 820;
  letter-spacing: -0.025em;
}

.about-feature p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.contact {
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 6% 10%, rgb(85 216 207 / 22%), transparent 28rem),
    radial-gradient(circle at 95% 92%, rgb(113 87 217 / 35%), transparent 34rem),
    linear-gradient(145deg, var(--navy-950), #102255);
  isolation: isolate;
}

.contact__orb {
  position: absolute;
  z-index: -1;
  border: 1px solid rgb(184 255 244 / 9%);
  border-radius: 50%;
  pointer-events: none;
}

.contact__orb--one {
  top: -17rem;
  right: -11rem;
  width: 38rem;
  height: 38rem;
  animation: contact-orbit 16s ease-in-out infinite alternate;
}

.contact__orb--two {
  bottom: -16rem;
  left: -13rem;
  width: 31rem;
  height: 31rem;
  animation: contact-orbit 20s ease-in-out infinite alternate-reverse;
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(42px, 7vw, 94px);
}

.contact h2 {
  margin: 20px 0 20px;
  color: white;
  font-size: clamp(2.45rem, 5vw, 4.25rem);
  font-weight: 850;
  letter-spacing: -0.055em;
}

.contact__copy > p {
  max-width: 510px;
  color: rgb(241 245 255 / 64%);
  font-size: 1.05rem;
}

.contact__email {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 13px;
  margin-top: 31px;
  color: white;
  text-decoration: none;
}

.contact__email-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgb(184 255 244 / 17%);
  border-radius: 15px;
  color: var(--cyan-200);
  background: rgb(255 255 255 / 6%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.contact__email:hover .contact__email-icon {
  background: rgb(255 255 255 / 11%);
  transform: translateY(-2px);
}

.contact__email svg,
.contact__privacy svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact__email small,
.contact__email strong {
  display: block;
}

.contact__email small {
  color: rgb(255 255 255 / 46%);
  font-size: 11px;
}

.contact__email strong {
  color: var(--cyan-200);
  font-size: 14px;
}

.contact__privacy {
  display: grid;
  max-width: 470px;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 31px;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 9%);
  color: rgb(255 255 255 / 48%);
}

.contact__privacy svg {
  width: 20px;
  margin-top: 2px;
  color: var(--cyan-500);
}

.contact__privacy p {
  margin: 0;
  font-size: 12px;
  line-height: 1.62;
}

.contact-form {
  position: relative;
  width: min(100%, 700px);
  justify-self: end;
  overflow: visible;
  padding: clamp(24px, 3.2vw, 38px);
  border: 0;
  border-radius: 0;
  color: white;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  isolation: isolate;
}

.contact-form__content {
  position: relative;
  z-index: 1;
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

.contact-form.is-sent .contact-form__content {
  visibility: hidden;
  opacity: 0;
  filter: blur(7px);
  pointer-events: none;
  transform: translateY(-14px) scale(0.965);
  transition: opacity 360ms ease, transform 460ms ease, filter 360ms ease, visibility 0s linear 460ms;
}

.contact-form::before {
  content: none;
}

.contact-form::after {
  content: none;
}

.contact-form__heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin: 0 5px 24px;
  padding: 2px 2px 22px;
  border-bottom: 1px solid rgb(255 255 255 / 9%);
}

.contact-form__heading-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgb(184 255 244 / 17%);
  border-radius: 18px;
  color: var(--cyan-200);
  background: linear-gradient(145deg, rgb(85 216 207 / 14%), rgb(67 97 238 / 12%));
  box-shadow: inset 0 1px rgb(255 255 255 / 7%);
}

.contact-form__heading-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-form__heading small,
.contact-form__heading h3 {
  margin: 0;
}

.contact-form__heading small {
  display: block;
  margin-bottom: 3px;
  color: var(--cyan-200);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form__heading h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: 820;
  letter-spacing: -0.035em;
}

.contact-form__availability {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 999px;
  color: rgb(255 255 255 / 56%);
  background: rgb(255 255 255 / 4%);
  font-size: 9px;
  font-weight: 720;
  white-space: nowrap;
}

.contact-form__availability i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 4px rgb(85 216 207 / 10%);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form__fields {
  margin-bottom: 16px;
  padding: clamp(18px, 2.1vw, 24px);
  border: 1px solid rgb(184 255 244 / 10%);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 3.8%), transparent 55%),
    rgb(2 9 31 / 32%);
  box-shadow: inset 0 1px rgb(255 255 255 / 4%), 0 18px 44px rgb(1 6 28 / 10%);
}

.contact-form__fields > .field:last-child {
  margin-bottom: 0;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field > span {
  color: rgb(255 255 255 / 78%);
  font-size: 12px;
  font-weight: 760;
}

.field > span small {
  margin-left: 4px;
  color: rgb(255 255 255 / 38%);
  font-size: 10px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 20px;
  outline: none;
  color: white;
  background: rgb(3 10 35 / 52%);
  box-shadow: inset 0 1px rgb(255 255 255 / 3%), 0 8px 24px rgb(1 6 28 / 8%);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.field select {
  color-scheme: dark;
}

.field select option {
  color: white;
  background: var(--navy-900);
}

.field input,
.field select {
  min-height: 54px;
  padding: 0 17px;
}

.field textarea {
  min-height: 156px;
  padding: 16px 17px;
  line-height: 1.55;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgb(241 245 255 / 48%);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgb(184 255 244 / 22%);
  background: rgb(3 10 35 / 66%);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan-500);
  background: rgb(3 10 35 / 82%);
  box-shadow: 0 0 0 4px rgb(85 216 207 / 9%), 0 14px 34px rgb(1 6 28 / 13%);
}

.contact-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin: 0 3px;
  padding: 15px 16px;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 20px;
  color: rgb(255 255 255 / 52%);
  background: rgb(255 255 255 / 3%);
  font-size: 12px;
  line-height: 1.55;
}

.contact-form__consent input {
  width: 19px;
  height: 19px;
  margin: 1px 0 0;
  accent-color: var(--cyan-500);
}

.contact-form__consent a {
  color: var(--cyan-200);
  font-weight: 700;
}

.contact-form__footer {
  display: grid;
  min-height: 64px;
  place-items: center;
  gap: 12px;
  margin: 18px 4px 0;
}

.contact-form__status {
  max-width: 340px;
  margin: 0;
  color: var(--cyan-200);
  font-size: 12px;
  font-weight: 680;
  line-height: 1.45;
  text-align: center;
}

.contact-form__status.is-error {
  color: #ffaaa2;
}

.contact-form__submit {
  flex: 0 0 auto;
  border: 0;
  border-radius: 19px;
  color: white;
  background: linear-gradient(115deg, var(--blue-600), #5869ee 52%, #2faea5);
  box-shadow: 0 17px 38px rgb(25 52 169 / 30%), inset 0 1px rgb(255 255 255 / 20%);
  cursor: pointer;
}

.contact-form__submit:hover {
  box-shadow: 0 21px 46px rgb(25 52 169 / 40%), inset 0 1px rgb(255 255 255 / 22%);
}

.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.66;
}

.contact-success {
  position: absolute;
  z-index: 3;
  inset: clamp(26px, 4vw, 48px);
  display: grid;
  place-content: center;
  border: 1px solid rgb(184 255 244 / 10%);
  border-radius: 30px;
  outline: 2px solid transparent;
  opacity: 0;
  visibility: hidden;
  color: white;
  background:
    radial-gradient(circle at 50% 34%, rgb(85 216 207 / 13%), transparent 13rem),
    rgb(3 11 37 / 34%);
  box-shadow: inset 0 1px rgb(255 255 255 / 4%);
  pointer-events: none;
  text-align: center;
  transform: translateY(18px) scale(0.97);
  transition: opacity 420ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 620ms;
}

.contact-success:focus-visible {
  outline-color: rgb(184 255 244 / 72%);
  outline-offset: 4px;
}

.contact-success[hidden] {
  display: none;
}

.contact-form.is-sent .contact-success {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition-delay: 230ms, 230ms, 0s;
}

.contact-success__flight {
  --contact-flight-distance: clamp(150px, 52vw, 220px);
  --contact-flight-distance-near: clamp(120px, 42vw, 174px);

  position: relative;
  width: min(300px, 70vw);
  height: 126px;
  margin: 0 auto 18px;
}

.contact-success__trail {
  position: absolute;
  top: 61px;
  right: 49px;
  left: 39px;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgb(85 216 207 / 20%) 18%, rgb(184 255 244 / 74%));
  transform: scaleX(0);
  transform-origin: left;
}

.contact-success__trail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, white, transparent);
  transform: translateX(-100%);
}

.contact-success__envelope {
  position: absolute;
  top: 35px;
  left: 9px;
  display: grid;
  width: 72px;
  height: 56px;
  place-items: center;
  border: 1px solid rgb(184 255 244 / 20%);
  border-radius: 20px;
  color: var(--cyan-200);
  background: linear-gradient(145deg, rgb(85 216 207 / 18%), rgb(67 97 238 / 20%));
  box-shadow: 0 18px 38px rgb(1 6 28 / 28%), inset 0 1px rgb(255 255 255 / 12%);
  opacity: 0;
}

.contact-success__envelope svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.contact-success__destination {
  position: absolute;
  top: 40px;
  right: 4px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgb(184 255 244 / 20%);
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--cyan-200);
  box-shadow: 0 0 0 0 rgb(85 216 207 / 0%), 0 18px 40px rgb(1 6 28 / 25%);
  opacity: 0;
  transform: scale(0.55);
}

.contact-success__destination svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.contact-success__copy {
  opacity: 0;
  transform: translateY(14px);
}

.contact-success__copy small {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan-200);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-success__copy h3 {
  margin: 0;
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.045em;
}

.contact-success__copy p {
  max-width: 410px;
  margin: 12px auto 0;
  color: rgb(255 255 255 / 62%);
  font-size: 14px;
  line-height: 1.65;
}

.contact-success__reset {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 27px;
  padding: 11px 17px;
  border: 1px solid rgb(184 255 244 / 16%);
  border-radius: 17px;
  color: white;
  background: rgb(255 255 255 / 5%);
  box-shadow: inset 0 1px rgb(255 255 255 / 5%);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.contact-success__reset:hover {
  border-color: rgb(184 255 244 / 30%);
  background: rgb(255 255 255 / 8%);
  transform: translateY(-2px);
}

.contact-success__reset svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-form.is-sent .contact-success__trail {
  animation: contact-trail 960ms ease-out 340ms both;
}

.contact-form.is-sent .contact-success__trail::after {
  animation: contact-trail-shine 780ms ease-out 430ms both;
}

.contact-form.is-sent .contact-success__envelope {
  animation: contact-envelope-send 1.18s cubic-bezier(0.3, 0.8, 0.3, 1) 300ms both;
}

.contact-form.is-sent .contact-success__destination {
  animation: contact-destination 620ms cubic-bezier(0.22, 1.4, 0.36, 1) 1.23s both;
}

.contact-form.is-sent .contact-success__copy {
  animation: contact-copy-arrive 620ms cubic-bezier(0.22, 1, 0.36, 1) 1.34s both;
}

@keyframes contact-envelope-send {
  0% { opacity: 0; transform: translate3d(-18px, 14px, 0) rotate(-9deg) scale(0.82); }
  16% { opacity: 1; transform: translate3d(0, 0, 0) rotate(-3deg) scale(1); }
  72% { opacity: 1; transform: translate3d(var(--contact-flight-distance-near), -8px, 0) rotate(5deg) scale(0.92); }
  100% { opacity: 0; transform: translate3d(var(--contact-flight-distance), 2px, 0) rotate(2deg) scale(0.58); }
}

@keyframes contact-trail {
  0% { opacity: 0; transform: scaleX(0); }
  24%, 74% { opacity: 0.85; }
  100% { opacity: 0; transform: scaleX(1); }
}

@keyframes contact-trail-shine {
  to { transform: translateX(100%); }
}

@keyframes contact-destination {
  0% { opacity: 0; box-shadow: 0 0 0 0 rgb(85 216 207 / 0%); transform: scale(0.55); }
  70% { opacity: 1; box-shadow: 0 0 0 18px rgb(85 216 207 / 0%); transform: scale(1.08); }
  100% { opacity: 1; box-shadow: 0 0 0 10px rgb(85 216 207 / 5%), 0 18px 40px rgb(1 6 28 / 25%); transform: scale(1); }
}

@keyframes contact-copy-arrive {
  to { opacity: 1; transform: none; }
}

.site-footer__signatures {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 28px;
  text-align: center;
}

.swiss-made {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 999px;
  color: rgb(255 255 255 / 68%);
  background: rgb(255 255 255 / 4%);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.035em;
}

.swiss-made__flag {
  font-size: 14px;
  line-height: 1;
}

.made-for-us {
  margin: 0;
  color: rgb(255 255 255 / 42%);
  font-size: 10px;
  letter-spacing: 0.02em;
}

.made-for-us__heart {
  display: inline-block;
  color: #ff6b7a;
  animation: heart-breathe 3.2s ease-in-out infinite;
}

.final-cta {
  position: relative;
  padding: clamp(90px, 12vw, 150px) 0;
  color: white;
  background:
    radial-gradient(circle at 50% 110%, rgb(85 216 207 / 24%), transparent 30rem),
    linear-gradient(145deg, var(--navy-950), #12265e);
  overflow: hidden;
}

.final-cta__orb {
  position: absolute;
  top: -15rem;
  left: 50%;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgb(184 255 244 / 10%);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: inset 0 0 100px rgb(113 87 217 / 9%);
}

.final-cta__inner {
  position: relative;
  max-width: 850px;
  text-align: center;
}

.final-cta__inner > img {
  width: 82px;
  height: 91px;
  margin: 0 auto 24px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgb(0 0 0 / 28%));
  animation: logo-float 6s ease-in-out infinite;
}

.final-cta__inner > p {
  max-width: 650px;
  margin: 0 auto;
}

.final-cta__actions {
  justify-content: center;
}

.coming-soon {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  color: rgb(255 255 255 / 62%);
  font-size: 13px;
  font-weight: 700;
}

.coming-soon__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 5px rgb(85 216 207 / 10%);
}

.site-footer {
  padding: 58px 0 24px;
  color: white;
  background: var(--navy-950);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  align-items: start;
  gap: 40px;
  padding-bottom: 44px;
}

.brand--footer img {
  width: 31px;
  height: 35px;
}

.site-footer__top > p {
  max-width: 330px;
  margin: 0;
  color: rgb(255 255 255 / 51%);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
}

.site-footer nav a {
  color: rgb(255 255 255 / 68%);
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--cyan-200);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 8%);
  color: rgb(255 255 255 / 37%);
  font-size: 11px;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms cubic-bezier(.22, 1, .36, 1), transform 650ms cubic-bezier(.22, 1, .36, 1);
}

.reveal--delay-short { transition-delay: 80ms; }
.reveal--delay { transition-delay: 150ms; }

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

@keyframes ambient-one {
  to { transform: translate3d(8rem, 4rem, 0) scale(1.12); }
}

@keyframes ambient-two {
  to { transform: translate3d(-9rem, 7rem, 0) scale(.88); }
}

@keyframes ambient-three {
  to { transform: translate3d(7rem, -6rem, 0) scale(1.1); }
}

@keyframes halo {
  from { transform: scale(.92); opacity: .55; }
  to { transform: scale(1.08); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgb(85 216 207 / 13%); }
  50% { box-shadow: 0 0 0 8px rgb(85 216 207 / 0%); }
}

@keyframes phone-float {
  0%, 100% { transform: rotate(2.5deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-9px); }
}

@keyframes scan {
  0%, 12% { top: 18%; opacity: 0; }
  18% { opacity: 1; }
  70% { top: 76%; opacity: 1; }
  82%, 100% { top: 76%; opacity: 0; }
}

@keyframes card-float-one {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

@keyframes card-float-two {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(5px, -9px, 0); }
}

@keyframes orbit-drift {
  to { transform: rotate(-6deg) scale(1.04); }
}

@keyframes orbit-drift-two {
  to { transform: rotate(27deg) scale(.95); }
}

@keyframes route-progress {
  0% { transform: translateX(-100%); }
  70%, 100% { transform: translateX(335%); }
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-6px) rotate(-1deg); }
}

@keyframes heart-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

@keyframes contact-orbit {
  from { transform: translate3d(0, 0, 0) rotate(0); }
  to { transform: translate3d(28px, -18px, 0) rotate(8deg); }
}

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }

  .hero__grid {
    grid-template-columns: 1fr 0.78fr;
    gap: 45px;
  }

  .floating-card--scan { left: -15%; }
  .floating-card--method { right: -15%; }
  .floating-card--source { left: -18%; }

  .app-showcase__grid,
  .transparency__grid,
  .contact__grid {
    gap: 55px;
  }

  .phone--gallery {
    width: 210px;
    height: 460px;
  }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 32px, 720px); }

  .hero {
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero__grid,
  .app-showcase__grid,
  .transparency__grid,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    text-align: center;
  }

  .hero h1,
  .hero__lead {
    margin-inline: auto;
  }

  .text-gradient {
    margin-inline: auto;
  }

  .hero__actions,
  .hero__metrics {
    justify-content: center;
  }

  .hero-visual {
    min-height: 590px;
  }

  .floating-card--scan { left: 5%; }
  .floating-card--method { right: 4%; }
  .floating-card--source { left: 7%; }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    min-height: 90px;
    padding: 20px 0;
  }

  .trust-strip article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .steps,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .steps::before { display: none; }

  .step-card {
    min-height: 280px;
  }

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

  .method-notice {
    grid-column: auto;
  }

  .app-showcase__copy,
  .transparency__copy {
    max-width: 680px;
    text-align: center;
  }

  .check-list {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .phone-gallery {
    min-height: 570px;
  }

  .category-card {
    display: grid;
    min-height: auto;
    grid-template-columns: 190px 1fr;
    column-gap: 28px;
    align-items: center;
  }

  .about__intro,
  .about__story {
    min-height: 460px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-feature {
    min-height: auto;
  }

  .contact__copy {
    max-width: 690px;
    text-align: center;
  }

  .contact__copy > p,
  .contact__privacy {
    margin-inline: auto;
  }

  .contact__email {
    margin-inline: auto;
  }

  .contact-form {
    justify-self: center;
  }

  .category-card__visual {
    grid-row: 1 / 5;
    height: 210px;
    margin: 0;
  }

  .category-card__visual::after {
    top: 64px;
  }

  .category-card__badge {
    width: fit-content;
    margin-top: 10px;
  }

  .route {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 0 35px;
  }

  .route__line {
    top: 14%;
    right: auto;
    bottom: 14%;
    left: 12px;
    width: 2px;
    height: auto;
  }

  .route__line i {
    width: 100%;
    height: 42%;
    background: linear-gradient(180deg, transparent, var(--blue-500), var(--cyan-500), transparent);
    animation-name: route-progress-vertical;
  }

  .route-stop {
    padding: 20px 10px 28px 25px;
    text-align: left;
  }

  .route-stop__marker {
    top: 24px;
    left: -23px;
  }

  .route-stop p {
    margin: 0;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

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

@keyframes route-progress-vertical {
  0% { transform: translateY(-100%); }
  70%, 100% { transform: translateY(335%); }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 28px);
    --header-height: 68px;
  }

  .brand span { font-size: 18px; }
  .brand img { width: 31px; height: 35px; }

  .language-control {
    height: 38px;
    padding-inline: 8px;
  }

  .language-control svg { display: none; }

  .hero {
    min-height: auto;
    padding-bottom: 70px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__metrics {
    gap: 22px;
  }

  .hero__metrics div + div::before { display: none; }
  .hero__metrics dt { font-size: 1.35rem; }
  .hero__metrics dd { max-width: 80px; }

  .hero-visual {
    min-height: 530px;
  }

  .phone--hero {
    width: 250px;
    height: 500px;
  }

  .floating-card {
    min-width: 0;
    max-width: 175px;
    padding: 10px;
  }

  .floating-card__icon,
  .mini-score {
    width: 31px;
    height: 31px;
  }

  .floating-card--scan { top: 11%; left: -1%; }
  .floating-card--method { right: -2%; bottom: 22%; }
  .floating-card--source { bottom: 2%; left: 0; }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .app-showcase h2,
  .transparency h2,
  .about h2,
  .contact h2,
  .final-cta h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .step-card {
    min-height: 260px;
    padding: 25px;
  }

  .step-card__icon {
    margin-bottom: 32px;
  }

  .bento-card {
    min-height: auto;
    padding: 25px;
    border-radius: 24px;
  }

  .bento-card--score {
    min-height: 500px;
  }

  .score-demo {
    right: auto;
    bottom: 35px;
    left: 25px;
  }

  .bento-card--missing {
    grid-template-columns: 1fr;
  }

  .missing-state {
    width: 76px;
    height: 76px;
  }

  .app-showcase {
    padding-bottom: 50px;
  }

  .phone-gallery {
    min-height: 500px;
  }

  .phone--gallery {
    width: 190px;
    height: 420px;
  }

  .phone--gallery-left { left: -9%; }
  .phone--gallery-right { right: -9%; }

  .category-card {
    display: block;
    padding: 22px;
  }

  .category-card__visual {
    height: 170px;
    margin-bottom: 24px;
  }

  .category-card__visual::after { top: 37px; }

  .principle-card {
    gap: 13px;
    padding: 20px;
  }

  .about__intro,
  .about__story {
    min-height: auto;
    padding: 28px;
    border-radius: 24px;
  }

  .about__intro {
    padding-bottom: 132px;
  }

  .about__signature { margin-top: 28px; }

  .about-feature {
    grid-template-columns: 1fr;
    padding: 23px;
  }

  .contact-form {
    padding: 18px;
    border-radius: 0;
  }

  .contact-form__heading {
    grid-template-columns: auto 1fr;
    margin-inline: 2px;
    padding-inline: 2px;
  }

  .contact-form__availability {
    width: fit-content;
    grid-column: 1 / -1;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form__fields {
    padding: 16px;
    border-radius: 23px;
  }

  .field input,
  .field select,
  .field textarea {
    border-radius: 17px;
  }

  .contact-form__consent {
    margin-inline: 0;
    padding: 14px;
    border-radius: 18px;
  }

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

  .contact-form__submit {
    width: 100%;
  }

  .contact-success {
    inset: 18px;
    padding: 22px 15px;
    border-radius: 23px;
  }

  .contact-success__flight {
    width: min(260px, 70vw);
  }

  .contact-success__copy h3 {
    font-size: clamp(1.75rem, 9vw, 2.3rem);
  }

  .final-cta__actions {
    display: grid;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .site-footer nav {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 7px;
  }

  .site-footer__signatures {
    align-items: center;
    flex-direction: column;
    gap: 9px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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