:root {
  --ink: #111218;
  --ink-soft: #24252d;
  --paper: #f5f2ed;
  --paper-2: #fffdf9;
  --card: #ffffff;
  --line: rgba(17, 18, 24, 0.11);
  --muted: #66646d;
  --muted-dark: #a9a6b2;
  --coral: #ff5e71;
  --pink: #ec388c;
  --orange: #ff9a5a;
  --blue: #2495ed;
  --green: #21b985;
  --violet: #7f68ff;
  --gradient: linear-gradient(125deg, #ff6a62 0%, #f1458d 48%, #8a5cf6 100%);
  --shadow-sm: 0 12px 35px rgba(31, 25, 37, 0.08);
  --shadow-lg: 0 45px 110px rgba(24, 17, 31, 0.22);
  --radius: 28px;
  --container: min(1200px, calc(100vw - 48px));
}

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button, input {
  font: inherit;
}

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

button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 3px solid rgba(36, 149, 237, 0.55);
  outline-offset: 3px;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

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

.scroll-progress {
  position: fixed;
  z-index: 300;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--gradient);
  contain: strict;
  will-change: transform;
}

.site-nav {
  position: fixed;
  z-index: 200;
  top: 18px;
  left: 50%;
  width: min(1160px, calc(100vw - 36px));
  height: 64px;
  transform: translateX(-50%);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 10px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(19, 18, 24, 0.92);
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.site-nav.scrolled {
  top: 18px;
}

.site-nav.scrolled .nav-shell {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(21, 20, 27, 0.97);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 760;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 5px 16px rgba(240, 63, 121, 0.32);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  list-style: none;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  font-weight: 560;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.nav-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.lang-switcher {
  position: relative;
}

.lang-btn,
.menu-toggle {
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 620;
}

.lang-btn:hover,
.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.lang-symbol {
  font-size: 17px;
  line-height: 1;
}

.lang-chevron {
  display: inline-block;
  opacity: .6;
  transition: transform .2s ease;
}

.lang-btn[aria-expanded="true"] .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 224px;
  max-height: min(430px, calc(100vh - 120px));
  overflow: hidden;
  visibility: hidden;
  padding: 8px;
  transform: translateY(-8px) scale(.98);
  transform-origin: top right;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(25, 24, 31, 0.97);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .34);
  opacity: 0;
  transition: .2s ease;
}

.lang-dropdown.show {
  visibility: visible;
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lang-search-wrapper {
  padding-bottom: 7px;
}

.lang-search {
  width: 100%;
  height: 38px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  font-size: 13px;
}

.lang-search::placeholder {
  color: rgba(255, 255, 255, .4);
}

#langOptions {
  max-height: 350px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .2) transparent;
}

.lang-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: rgba(255, 255, 255, .75);
  cursor: pointer;
  font-size: 13px;
  text-align: left;
}

.lang-option:hover,
.lang-option.active {
  background: rgba(255, 255, 255, .09);
  color: #fff;
}

.lang-code {
  font-size: 10px;
  opacity: .45;
  text-transform: uppercase;
}

.nav-cta,
.button-primary,
.button-secondary,
.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.nav-cta {
  height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
}

.nav-cta:hover,
.button-primary:hover,
.button-light:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  width: 42px;
  display: none;
  place-items: center;
  padding: 0;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 18px;
  height: 1.5px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle span {
  margin: 4px 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(5.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-5.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 1080px;
  overflow: hidden;
  padding: 148px 24px 105px;
  background:
    radial-gradient(circle at 8% 16%, rgba(237, 57, 140, .28), transparent 29%),
    radial-gradient(circle at 90% 25%, rgba(118, 89, 255, .25), transparent 31%),
    radial-gradient(circle at 52% 85%, rgba(255, 126, 84, .20), transparent 38%),
    #121116;
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.4), transparent 72%);
}

.hero-orb {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  opacity: .24;
  pointer-events: none;
}

.hero-orb.one {
  top: 120px;
  left: -260px;
  background: radial-gradient(circle, rgba(255, 55, 125, .78), rgba(255, 55, 125, 0) 70%);
}

.hero-orb.two {
  top: 350px;
  right: -260px;
  background: radial-gradient(circle, rgba(106, 88, 255, .75), rgba(106, 88, 255, 0) 70%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
  padding: 8px 13px 8px 9px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 620;
}

.eyebrow-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
}

.hero h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(58px, 8.1vw, 110px);
  font-weight: 790;
  letter-spacing: -.075em;
  line-height: .92;
}

.hero h1 .gradient-text {
  display: inline-block;
  padding-right: .06em;
  background: linear-gradient(112deg, #fff 3%, #ffbfca 33%, #ff7878 58%, #ad94ff 92%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lede {
  max-width: 660px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, .66);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

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

.button-primary,
.button-secondary,
.button-light {
  min-height: 56px;
  padding: 0 23px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 720;
}

.button-primary {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 15px 38px rgba(0, 0, 0, .2);
}

.button-primary:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, .3);
}

.button-secondary {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  color: #fff;
}

.button-secondary:hover {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.11);
}

.button-icon {
  font-size: 18px;
  line-height: 1;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .42);
  font-size: 12px;
}

.hero-note span::before {
  margin-right: 7px;
  color: #6de0ad;
  content: "✓";
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100vw - 36px));
  margin: 74px auto 0;
  perspective: 1800px;
}

.hero-product-shell {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  padding: 12px;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.04));
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.04) inset;
  transition: transform .18s ease-out;
  transform-style: preserve-3d;
  contain: layout paint;
}

.hero-product-shell::before {
  position: absolute;
  z-index: -1;
  inset: 4% 2% -18%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255,73,123,.28), rgba(111,79,255,.18) 45%, transparent 72%);
  content: "";
}

.mac-frame {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 23px;
  background: #09090a;
}

.mac-toolbar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #1c1b20;
}

.traffic {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff605c;
  box-shadow: 18px 0 #ffbd44, 36px 0 #00ca4e;
}

.toolbar-title {
  margin: 0 auto;
  padding-right: 42px;
  color: rgba(255,255,255,.38);
  font-size: 11px;
}

.hero-product-image {
  position: relative;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  background: #030303;
}

.hero-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: opacity .22s ease, transform .45s ease;
}

.hero-product-image.is-changing img {
  transform: scale(1.015);
  opacity: .15;
}

.shortcut-float {
  position: absolute;
  z-index: 3;
  right: 26px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  background: rgba(20,20,23,.94);
  box-shadow: 0 13px 35px rgba(0,0,0,.38);
  color: rgba(255,255,255,.68);
  font-size: 11px;
}

.shortcut-float kbd {
  min-width: 28px;
  padding: 5px 7px;
  border: 1px solid rgba(255,255,255,.13);
  border-bottom-color: rgba(255,255,255,.24);
  border-radius: 7px;
  background: rgba(255,255,255,.09);
  color: #fff;
  font: 650 12px/1 -apple-system, BlinkMacSystemFont, sans-serif;
  text-align: center;
}

.shortcut-float.success {
  animation: shortcut-success .7s ease;
}

@keyframes shortcut-success {
  40% { transform: scale(1.05); background: rgba(33, 185, 133, .34); }
}

.product-switcher {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}

.product-switcher button {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.52);
  cursor: pointer;
  font-size: 12px;
  transition: .2s ease;
}

.product-switcher button:hover,
.product-switcher button.active {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.12);
  color: #fff;
}

.copy-ribbon {
  overflow: hidden;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

.ribbon-track {
  width: max-content;
  display: flex;
  animation: ribbon 24s linear infinite;
  will-change: transform;
}

.ribbon-set {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  color: #77737c;
  font-size: 14px;
  font-weight: 660;
  white-space: nowrap;
}

.ribbon-set span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.ribbon-set span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255,94,113,.11);
  content: "";
}

@keyframes ribbon {
  to { transform: translateX(-50%); }
}

.section {
  padding: 128px 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-head {
  max-width: 790px;
  margin-bottom: 60px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.kicker::before {
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-title {
  max-width: 820px;
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 780;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.section-head.center .section-title {
  margin-inline: auto;
}

.section-description {
  max-width: 620px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.section-head.center .section-description {
  margin-right: auto;
  margin-left: auto;
}

.experience {
  background: var(--paper);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(270px, .72fr) minmax(520px, 1.28fr);
  gap: 70px;
  align-items: start;
}

.experience-layout > *,
.experience-copy,
.experience-stage,
.feature-tabs {
  min-width: 0;
}

.experience-copy {
  position: sticky;
  top: 112px;
}

.experience-copy .section-title {
  font-size: clamp(40px, 5vw, 66px);
}

.feature-tabs {
  display: grid;
  gap: 7px;
  margin-top: 38px;
}

.feature-tab {
  position: relative;
  width: 100%;
  padding: 18px 18px 18px 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: .25s ease;
}

.feature-tab::before {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 7px;
  width: 3px;
  border-radius: 3px;
  background: var(--gradient);
  content: "";
  opacity: 0;
  transform: scaleY(.2);
  transition: .25s ease;
}

.feature-tab:hover,
.feature-tab.active {
  border-color: var(--line);
  background: rgba(255,255,255,.7);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.feature-tab.active::before {
  opacity: 1;
  transform: scaleY(1);
}

.feature-tab strong {
  display: block;
  margin-bottom: 6px;
  color: inherit;
  font-size: 16px;
}

.feature-tab span {
  display: block;
  font-size: 13px;
  line-height: 1.55;
}

.experience-stage {
  position: sticky;
  top: 112px;
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 48px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 85% 12%, rgba(255,255,255,.14), transparent 32%),
    linear-gradient(145deg, #22212a, #111116 58%);
  box-shadow: 0 38px 80px rgba(28, 22, 32, .18);
  contain: layout paint;
  width: 100%;
  max-width: 100%;
}

.experience-stage::before {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--stage-accent, #f54d8d) 0%, transparent 70%);
  opacity: .25;
  content: "";
  transition: background .4s ease;
}

.stage-window {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: #09090a;
  box-shadow: 0 30px 75px rgba(0,0,0,.46);
}

.stage-window img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .22s ease, transform .5s cubic-bezier(.2,.7,.2,1);
}

.stage-window.is-changing img {
  transform: scale(1.025);
  opacity: .12;
}

.stage-meta {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  pointer-events: none;
}

.stage-number {
  color: rgba(255,255,255,.22);
  font-size: 76px;
  font-weight: 780;
  letter-spacing: -.06em;
  line-height: .8;
}

.stage-caption {
  max-width: 260px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  background: rgba(16,16,19,.94);
  color: rgba(255,255,255,.68);
  font-size: 12px;
  line-height: 1.55;
  text-align: right;
}

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

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

.bento-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  contain: layout paint;
}

.bento-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 65px rgba(27, 22, 32, .11);
}

.bento-card.large { grid-column: span 7; }
.bento-card.medium { grid-column: span 5; }
.bento-card.third { grid-column: span 4; min-height: 300px; }

.bento-card.dark {
  border-color: transparent;
  background: #18171d;
  color: #fff;
}

.bento-card.coral {
  border-color: transparent;
  background: linear-gradient(135deg, #ff6c63, #ed3a86);
  color: #fff;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.dark .card-tag,
.coral .card-tag {
  color: rgba(255,255,255,.58);
}

.card-tag::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--card-accent, var(--coral));
  content: "";
}

.bento-card h3 {
  max-width: 480px;
  margin-top: 19px;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 760;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.bento-card p {
  max-width: 510px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.dark p,
.coral p {
  color: rgba(255,255,255,.63);
}

.search-demo {
  position: absolute;
  right: -20px;
  bottom: -28px;
  width: 66%;
  min-width: 360px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px 22px 0 0;
  background: rgba(9,9,11,.96);
  box-shadow: 0 25px 55px rgba(0,0,0,.33);
  transform: rotate(-2deg);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  color: #fff;
  background: rgba(255,255,255,.07);
  font-size: 13px;
}

.search-field::before {
  width: 12px;
  height: 12px;
  border: 1.5px solid rgba(255,255,255,.48);
  border-radius: 50%;
  content: "";
}

.search-result {
  display: flex;
  gap: 11px;
  margin-top: 11px;
}

.result-card {
  min-width: 0;
  flex: 1;
  padding: 13px;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
}

.result-card span {
  display: block;
  overflow: hidden;
  color: rgba(255,255,255,.68);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-card strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 12px;
}

.ocr-visual {
  position: absolute;
  right: 28px;
  bottom: 24px;
  width: 45%;
  min-width: 180px;
  aspect-ratio: 1.1;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.21), rgba(255,255,255,.07));
  transform: rotate(4deg);
}

.ocr-lines {
  width: 66%;
  display: grid;
  gap: 9px;
}

.ocr-lines i {
  height: 7px;
  display: block;
  border-radius: 10px;
  background: rgba(255,255,255,.72);
}

.ocr-lines i:nth-child(2) { width: 80%; }
.ocr-lines i:nth-child(3) { width: 93%; }
.ocr-lines i:nth-child(4) { width: 54%; }

.ocr-scan {
  position: absolute;
  right: 12%;
  bottom: 45%;
  left: 12%;
  height: 2px;
  background: #fff;
  box-shadow: 0 0 13px #fff;
  animation: scan 2.5s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { transform: translateY(-54px); opacity: .2; }
  50% { transform: translateY(54px); opacity: 1; }
}

.source-orbit {
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 160px;
  height: 160px;
  border: 1px dashed rgba(17,18,24,.16);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}

.source-orbit span {
  position: absolute;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 17px;
}

.source-orbit span:nth-child(1) { top: -18px; left: 58px; }
.source-orbit span:nth-child(2) { right: -16px; bottom: 25px; }
.source-orbit span:nth-child(3) { bottom: 8px; left: -10px; }

@keyframes orbit { to { transform: rotate(360deg); } }

.source-orbit span { animation: orbit-reverse 18s linear infinite; }
@keyframes orbit-reverse { to { transform: rotate(-360deg); } }

.keyboard-visual {
  position: absolute;
  right: 24px;
  bottom: 25px;
  display: flex;
  gap: 7px;
}

.keyboard-visual kbd {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-bottom-width: 3px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font: 680 14px/1 -apple-system, BlinkMacSystemFont, sans-serif;
}

.icloud-visual {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 150px;
  height: 130px;
}

.cloud {
  position: absolute;
  inset: 34px 8px 12px;
  border-radius: 65px;
  background: rgba(255,255,255,.9);
}

.cloud::before,
.cloud::after {
  position: absolute;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.cloud::before { width: 72px; height: 72px; top: -35px; left: 18px; }
.cloud::after { width: 54px; height: 54px; top: -23px; right: 15px; }

.cloud-check {
  position: absolute;
  z-index: 2;
  top: 56px;
  left: 62px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 800;
}

.workflow-section {
  overflow: hidden;
  background: #ef476f;
  color: #fff;
}

.workflow-section .kicker {
  color: rgba(255,255,255,.72);
}

.workflow-section .section-description {
  color: rgba(255,255,255,.7);
}

.workflow-panel {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 34px;
  background: rgba(109, 18, 61, .25);
  box-shadow: 0 35px 90px rgba(104, 10, 50, .25);
  contain: layout paint;
}

.persona-tabs {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 34px;
  border-right: 1px solid rgba(255,255,255,.16);
}

.persona-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: rgba(255,255,255,.58);
  cursor: pointer;
  font-size: 15px;
  font-weight: 660;
  text-align: left;
  transition: .2s ease;
}

.persona-tab:hover,
.persona-tab.active {
  background: rgba(255,255,255,.13);
  color: #fff;
}

.persona-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 11px;
  background: rgba(255,255,255,.08);
}

.persona-stage {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 54px;
}

.persona-stage::before {
  position: absolute;
  width: 400px;
  height: 400px;
  top: -170px;
  right: -130px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  content: "";
}

.persona-content {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.persona-number {
  color: rgba(255,255,255,.25);
  font-size: 80px;
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .9;
}

.persona-content h3 {
  margin-top: 26px;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 770;
  letter-spacing: -.05em;
  line-height: 1.03;
}

.persona-content p {
  max-width: 540px;
  margin-top: 20px;
  color: rgba(255,255,255,.7);
  font-size: 17px;
  line-height: 1.7;
}

.persona-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.persona-chips span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  font-size: 12px;
}

.privacy-section {
  background: #121117;
  color: #fff;
}

.privacy-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.privacy-section .kicker {
  color: #72dfb1;
}

.privacy-section .section-description {
  color: var(--muted-dark);
}

.privacy-points {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.privacy-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
}

.privacy-point::before {
  width: 24px;
  height: 24px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(90, 218, 163, .12);
  color: #72dfb1;
  content: "✓";
  font-size: 12px;
  font-weight: 800;
}

.security-console {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: 0 35px 90px rgba(0,0,0,.33);
}

.console-inner {
  padding: 34px;
  border-radius: 22px;
  background: #1c1b22;
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.shield-mark {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(145deg, #67e2ab, #269f75);
  box-shadow: 0 16px 34px rgba(44, 181, 128, .2);
  color: #0d3b2b;
  font-size: 28px;
  font-weight: 900;
}

.console-status {
  text-align: right;
}

.console-status small {
  display: block;
  color: rgba(255,255,255,.38);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.console-status strong {
  display: block;
  margin-top: 5px;
  color: #72dfb1;
  font-size: 16px;
}

.security-rows {
  display: grid;
  margin-top: 12px;
}

.security-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.security-row:last-child {
  border-bottom: 0;
}

.security-row span {
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

.security-row strong {
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  text-align: right;
}

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

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

.step-card {
  min-height: 350px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--paper);
  color: var(--pink);
  font-size: 16px;
  font-weight: 800;
}

.step-card h3 {
  margin-top: 76px;
  font-size: 24px;
  font-weight: 750;
  letter-spacing: -.035em;
  line-height: 1.15;
}

.step-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

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

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

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

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

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 25px 4px;
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 690;
  list-style: none;
}

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

.faq-item summary::after {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(17,18,24,.06);
  content: "+";
  font-size: 18px;
  font-weight: 400;
  transition: transform .25s ease, background .25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: rgba(236,56,140,.1);
  color: var(--pink);
}

.faq-answer {
  max-width: 650px;
  padding: 0 48px 25px 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.download-section {
  padding: 32px;
  background: var(--paper);
}

.download-card {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 90px 24px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.3), transparent 27%),
    radial-gradient(circle at 85% 80%, rgba(126,86,255,.34), transparent 33%),
    linear-gradient(135deg, #ff755f 0%, #ec3d88 54%, #773ee7 100%);
  color: #fff;
  text-align: center;
}

.download-card::before,
.download-card::after {
  position: absolute;
  width: 360px;
  height: 490px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 70px;
  content: "";
  transform: rotate(26deg);
}

.download-card::before { left: -170px; bottom: -280px; }
.download-card::after { top: -300px; right: -170px; }

.download-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.download-icon {
  width: 104px;
  height: 104px;
  margin: 0 auto 28px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 27px;
  box-shadow: 0 28px 60px rgba(92, 16, 69, .35);
}

.download-card h2 {
  font-size: clamp(46px, 6.2vw, 82px);
  font-weight: 790;
  letter-spacing: -.065em;
  line-height: .98;
}

.download-card p {
  max-width: 580px;
  margin: 24px auto 0;
  color: rgba(255,255,255,.74);
  font-size: 18px;
  line-height: 1.65;
}

.button-light {
  margin-top: 30px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(95, 23, 72, .28);
}

.system-requirement {
  margin-top: 18px;
  color: rgba(255,255,255,.53);
  font-size: 12px;
}

.site-footer {
  padding: 72px 0 20px;
  background: #121117;
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  gap: 60px;
  padding-bottom: 58px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.footer-brand p {
  max-width: 340px;
  margin-top: 18px;
  color: rgba(255,255,255,.46);
  font-size: 14px;
  line-height: 1.7;
}

.footer-column h3 {
  margin-bottom: 16px;
  color: rgba(255,255,255,.36);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  display: block;
  margin-top: 11px;
  color: rgba(255,255,255,.64);
  font-size: 14px;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
}

.product-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.product-link img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0 0;
  color: rgba(255,255,255,.34);
  font-size: 11px;
}

.beian-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.beian-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: inherit;
  text-decoration: none;
}

.beian-links img {
  width: 14px;
  height: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; }

  .nav-links.open {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    min-height: calc(100vh - 76px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,.09);
    background: rgba(18,17,23,.98);
  }

  .nav-links.open a {
    padding: 16px 18px;
    font-size: 18px;
  }

  .experience-layout,
  .privacy-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .experience-copy,
  .experience-stage {
    position: relative;
    top: auto;
  }

  .experience-copy .section-description {
    max-width: 720px;
  }

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

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

  .persona-tabs {
    grid-template-columns: repeat(4, 1fr);
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .persona-tab {
    justify-content: center;
    padding: 12px;
  }

  .persona-tab .persona-label {
    display: none;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 32px, 1200px);
    --radius: 22px;
  }

  .site-nav {
    top: 10px;
    width: calc(100vw - 20px);
    height: 58px;
  }

  .site-nav.scrolled {
    top: 10px;
  }

  .nav-shell {
    border-radius: 17px;
  }

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

  .brand span { display: none; }
  .nav-cta { display: none; }
  .lang-btn .lang-symbol { display: none; }

  .hero {
    min-height: auto;
    padding: 120px 16px 78px;
  }

  .hero h1 {
    font-size: clamp(46px, 12.5vw, 56px);
    line-height: .95;
  }

  .hero-lede {
    font-size: 16px;
  }

  .button-primary,
  .button-secondary {
    min-height: 52px;
    padding: 0 18px;
  }

  .hero-visual {
    margin-top: 55px;
  }

  .hero-product-shell {
    padding: 7px;
    border-radius: 23px;
  }

  .mac-frame { border-radius: 17px; }
  .mac-toolbar { height: 31px; padding-inline: 11px; }
  .traffic { width: 7px; height: 7px; box-shadow: 13px 0 #ffbd44, 26px 0 #00ca4e; }
  .toolbar-title { display: none; }
  .shortcut-float { right: 10px; bottom: 10px; transform: scale(.82); transform-origin: bottom right; }

  .product-switcher {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 2px 0 8px;
    scrollbar-width: none;
  }

  .product-switcher::-webkit-scrollbar { display: none; }
  .product-switcher button { flex: 0 0 auto; }

  .section { padding: 90px 0; }
  .section-head { margin-bottom: 42px; }
  .section-title { font-size: clamp(39px, 12vw, 56px); }
  .section-description { font-size: 16px; }

  .feature-tabs {
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding: 0 0 8px;
    scrollbar-width: none;
  }

  .feature-tab {
    min-width: 238px;
    flex: 0 0 76vw;
  }

  .experience-stage {
    min-height: 410px;
    padding: 18px;
    border-radius: 25px;
  }

  .stage-window { border-radius: 15px; }
  .stage-number { font-size: 48px; }
  .stage-caption { display: none; }

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

  .bento-card.large,
  .bento-card.medium,
  .bento-card.third {
    grid-column: auto;
    min-height: 330px;
  }

  .bento-card { padding: 27px; }
  .search-demo { right: -50px; width: 92%; }
  .ocr-visual { right: 18px; bottom: 18px; width: 52%; }

  .persona-stage {
    min-height: 500px;
    padding: 34px 26px;
  }

  .persona-content h3 { font-size: 40px; }

  .console-inner { padding: 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 280px; }
  .step-card h3 { margin-top: 54px; }

  .download-section { padding: 12px; }
  .download-card { min-height: 570px; border-radius: 28px; }
  .download-card h2 { font-size: 48px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 42px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .beian-links { flex-direction: column; align-items: flex-start; gap: 9px; }
}

@media (max-width: 1040px), (hover: none) {
  .bento-card:hover {
    transform: none;
    box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
  }

  .hero-product-shell {
    transform: none !important;
  }
}

@media (max-width: 470px) {
  .hero-actions {
    display: grid;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .persona-tabs {
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    padding: 10px;
  }

  .persona-tab { padding: 9px 5px; }
  .persona-icon { width: 34px; height: 34px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
