:root {
  color-scheme: dark;
  --page-width: 90%;
  --page-max: 1600px;
  --hero-max: 1130px;
  --black: #000;
  --surface: #242424;
  --surface-deep: #111;
  --border: #3e3e3e;
  --border-soft: #242424;
  --white: #fff;
  --text-70: rgba(255, 255, 255, .7);
  --text-50: rgba(255, 255, 255, .5);
  --muted: #888;
  --muted-dark: #5c5c5c;
  --radius-xl: 50px;
  --radius-lg: 32px;
  --transition: 240ms cubic-bezier(.2, .8, .2, 1);
  --text-gradient: linear-gradient(0deg, #fff 6%, #4d4d4d 87%);
  --surface-gradient: linear-gradient(92deg, #242424 7%, #000 24%, #000 77%, #242424 95%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--black);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  border: 0;
}

::selection {
  background: #fff;
  color: #000;
}

.page-width,
.header-inner {
  width: var(--page-width);
  max-width: var(--page-max);
  margin-inline: auto;
}

#signal-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, #000 0 70%, transparent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 69px;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, .68);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: border-color var(--transition), background-color var(--transition);
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .82);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 69px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -.035em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  overflow: hidden;
  place-items: center;
  border-radius: 11px;
  background: #050505;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.nav {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 32px;
  transform: translateX(-50%);
}

.nav a {
  color: var(--text-70);
  font-size: 16px;
  font-weight: 440;
  white-space: nowrap;
  transition: color var(--transition), opacity var(--transition);
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
}

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

.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid #3c3c3c;
  border-radius: 999px;
  background: linear-gradient(180deg, #292929, #1e1e1e);
  color: #fff;
  font-size: 16px;
  font-weight: 480;
  white-space: nowrap;
  transition: opacity var(--transition), transform var(--transition), background-color var(--transition);
}

.header-button-primary {
  border-color: #fff;
  background: #fff;
  color: #111;
}

.header-button:hover,
.header-button:focus-visible {
  opacity: .8;
}

.header-button:active,
.button:active,
.device-button:active,
.device-tab:active,
.tariff-action:active {
  opacity: .62;
  transform: scale(.975);
  filter: blur(1px) grayscale(1);
}

.mobile-link,
.menu-close,
.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 811px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .045), transparent 32%),
    linear-gradient(#000, #000);
  content: "";
}

.hero-texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  opacity: .44;
}

.hero-texture::before,
.hero-texture::after,
.hero-texture i {
  position: absolute;
  width: 128%;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 50%;
  content: "";
  filter: blur(.2px);
  transform: rotate(-8deg);
}

.hero-texture::before {
  top: 12%;
  left: -14%;
}

.hero-texture::after {
  top: 18%;
  left: -10%;
  height: 350px;
  opacity: .7;
}

.hero-texture i:nth-child(1) {
  top: 25%;
  left: -8%;
  height: 430px;
}

.hero-texture i:nth-child(2) {
  top: 31%;
  left: -5%;
  height: 500px;
  opacity: .55;
}

.hero-texture i:nth-child(3) {
  top: 37%;
  left: -2%;
  height: 550px;
  opacity: .35;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(90%, var(--hero-max));
  min-height: 742px;
  margin-inline: auto;
  padding: 70px 0 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 52px;
  text-align: center;
}

.trust-pill {
  display: inline-flex;
  min-height: 58px;
  padding: 8px 20px 8px 8px;
  align-items: center;
  gap: 14px;
  border: 1px solid #484848;
  border-radius: 999px;
  background: linear-gradient(180deg, #242424, #171717);
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
}

.trust-icon {
  display: grid;
  width: 40px;
  height: 40px;
  overflow: visible;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.trust-icon svg {
  width: 30px;
  height: 30px;
  color: rgba(255, 255, 255, .82);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-copy {
  display: grid;
  max-width: 1100px;
  gap: 22px;
  justify-items: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(72px, 7vw, 96px);
  font-weight: 610;
  letter-spacing: -.065em;
  line-height: .98;
}

.hero h1 span,
.section-heading h2 span,
.devices-copy h2 span,
.pricing-heading h2 span {
  background: var(--text-gradient);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero h1 strong {
  display: block;
  color: #fff;
  font-weight: inherit;
}

.hero-copy > p {
  max-width: 790px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 18px;
  font-weight: 390;
  line-height: 1.45;
}

.hero-actions,
.final-panel > div {
  display: flex;
  margin-top: 2px;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 14px 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid #363636;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 510;
  white-space: nowrap;
  transition: transform var(--transition), opacity var(--transition), color var(--transition), background-color var(--transition);
}

.button:hover,
.button:focus-visible {
  opacity: .8;
}

.button-dark {
  background: linear-gradient(180deg, #242424, #171717);
  color: #fff;
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: #111;
}

.button-black {
  border-color: #000;
  background: #000;
  color: #fff;
}

.platforms {
  display: grid;
  margin-top: 10px;
  gap: 22px;
  justify-items: center;
}

.platforms > span {
  color: var(--muted);
  font-size: 16px;
}

.platform-icons {
  display: flex;
  align-items: center;
  gap: 48px;
}

.platform-icons span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  opacity: .58;
  filter: grayscale(1) brightness(3);
  transition: transform var(--transition), opacity var(--transition), filter var(--transition);
}

.platform-icons span:hover {
  opacity: 1;
  filter: grayscale(1) brightness(5);
  transform: scale(1.05);
}

.iphone-client-pill {
  display: inline-flex;
  min-height: 58px;
  max-width: min(100%, 460px);
  padding: 9px 20px 9px 12px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(27, 27, 29, .66);
  color: #fff;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .34),
    inset 0 1px rgba(255, 255, 255, .09);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
}

.iphone-client-pill > img {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  object-fit: contain;
  filter: invert(1);
}

.iphone-client-pill span {
  display: grid;
  min-width: 0;
  gap: 3px;
  text-align: left;
}

.iphone-client-pill strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 560;
  letter-spacing: -.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.iphone-client-pill small {
  color: rgba(255, 255, 255, .48);
  font-size: 11px;
  font-weight: 520;
  letter-spacing: .02em;
}

.section {
  position: relative;
  z-index: 1;
  padding-block: 96px;
}

.section-heading {
  display: grid;
  gap: 24px;
}

.section-heading-center,
.light-heading {
  max-width: 1080px;
  margin-inline: auto;
  justify-items: center;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid #484848;
  border-radius: 999px;
  background: linear-gradient(180deg, #262626, #181818);
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  font-weight: 430;
}

.section-heading h2,
.devices-copy h2,
.pricing-heading h2,
.light-heading h2,
.final-panel h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 570;
  letter-spacing: -.055em;
  line-height: 1.06;
}

.section-heading > p,
.light-heading > p {
  max-width: 680px;
  margin: 0;
  color: var(--text-50);
  font-size: 18px;
  line-height: 1.52;
}

.advantages-section {
  margin-top: -96px;
  padding-top: 0;
}

.advantages-section .section-heading {
  margin-bottom: 64px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.advantage-item {
  position: relative;
  display: grid;
  min-height: 318px;
  padding: 34px 24px;
  align-content: start;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.advantage-item:nth-child(4n) {
  border-right: 0;
}

.advantage-item:nth-child(-n+4) {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.advantage-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid #444;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #333, #111 65%);
  color: #fff;
  font-size: 18px;
  font-variant-numeric: tabular-nums;
  transition: transform var(--transition), filter var(--transition);
}

.advantage-item:hover .advantage-icon {
  filter: brightness(1.7);
  transform: scale(1.05);
}

.advantage-item h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 460;
  letter-spacing: -.025em;
}

.advantage-item p {
  margin: 0;
  color: var(--text-50);
  font-size: 18px;
  font-weight: 330;
  line-height: 1.5;
}

.product-section {
  padding-top: 128px;
}

.product-section .section-heading {
  margin-bottom: 64px;
}

.product-layout,
.devices-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 64px;
}

.product-visual,
.device-visual {
  display: grid;
  min-height: 600px;
  overflow: hidden;
  place-items: center;
  border: 2px solid #3e3e3e;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 24% 17%, rgba(255, 255, 255, .12), transparent 28%),
    var(--surface-gradient);
}

.account-preview {
  width: 74%;
  overflow: hidden;
  border: 1px solid #4c4c4c;
  border-radius: 34px;
  background: rgba(8, 8, 8, .94);
  box-shadow: 0 36px 80px rgba(0, 0, 0, .65);
  animation: gliding 6s ease-in-out infinite;
}

.account-preview-top {
  display: flex;
  min-height: 80px;
  padding: 18px 22px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #282828;
}

.account-preview-top > span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 620;
}

.account-preview-top img {
  border-radius: 10px;
}

.account-preview-top i {
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  font-style: normal;
}

.account-preview-body {
  display: grid;
  padding: 28px;
  gap: 14px;
}

.account-preview-body > small {
  color: #777;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.account-preview-body h3 {
  max-width: 430px;
  margin: 0 0 16px;
  font-size: 30px;
  font-weight: 520;
  letter-spacing: -.04em;
}

.access-line {
  display: flex;
  min-width: 0;
  padding: 15px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #3a3a3a;
  border-radius: 16px;
  background: #161616;
  color: #777;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
}

.access-line b {
  flex: none;
  color: #fff;
  font-family: inherit;
  font-weight: 500;
}

.access-line span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-devices {
  display: grid;
  margin-top: 12px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.preview-devices span {
  display: flex;
  min-width: 0;
  padding: 13px;
  align-items: center;
  gap: 8px;
  border: 1px solid #2e2e2e;
  border-radius: 14px;
  color: #aaa;
  font-size: 13px;
}

.preview-devices img {
  filter: grayscale(1) brightness(2.5);
}

.product-steps {
  display: grid;
  gap: 40px;
}

.product-step {
  position: relative;
  display: grid;
  width: 100%;
  padding: 22px 0;
  grid-template-columns: 54px 1fr;
  align-items: start;
  gap: 18px;
  background: transparent;
  color: #5c5c5c;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition), transform 500ms cubic-bezier(.2, .8, .2, 1);
}

.product-step::before {
  position: absolute;
  top: 5%;
  bottom: 5%;
  left: -34px;
  width: 2px;
  background: linear-gradient(transparent, #fff, transparent);
  content: "";
  opacity: 0;
  transform: scaleY(.5);
  transition: opacity var(--transition), transform var(--transition);
}

.product-step > span:first-child {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
}

.product-step > span:last-child {
  display: grid;
  gap: 10px;
}

.product-step strong {
  font-size: 24px;
  font-weight: 460;
}

.product-step small {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.5;
}

.product-step.is-active {
  color: #fff;
  transform: translateX(32px) scale(1.03);
}

.product-step.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.product-step.is-active small {
  color: rgba(255, 255, 255, .54);
}

.text-action {
  display: inline-flex;
  width: max-content;
  margin-top: 4px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #555;
  color: #fff;
  font-size: 17px;
}

.devices-section {
  overflow: hidden;
  padding-top: 128px;
}

.device-lines {
  position: absolute;
  inset: 0;
  opacity: .27;
  pointer-events: none;
  background:
    repeating-radial-gradient(ellipse at 55% 45%, transparent 0 18px, rgba(255, 255, 255, .09) 19px 20px, transparent 21px 35px);
  mask-image: linear-gradient(90deg, transparent, #000 25% 80%, transparent);
}

.devices-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.devices-copy .eyebrow {
  width: max-content;
}

.devices-copy > p {
  max-width: 660px;
  margin: 0;
  color: var(--text-50);
  font-size: 18px;
  line-height: 1.55;
}

.devices-copy > small {
  color: #aaa;
  font-size: 17px;
}

.device-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.device-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.device-downloads .button {
  min-width: 180px;
}

.device-button {
  display: flex;
  min-width: 0;
  min-height: 58px;
  padding: 12px 18px;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border: 1px solid #3e3e3e;
  border-radius: 999px;
  background: linear-gradient(180deg, #242424, #181818);
  color: #ccc;
  cursor: pointer;
  transition: transform var(--transition), opacity var(--transition), color var(--transition), background-color var(--transition);
}

.device-button img {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  object-fit: contain;
  filter: none;
}

.device-button.is-active {
  border-color: #fff;
  background: #fff;
  color: #111;
}

.device-button.is-active img {
  filter: none;
}

.device-frame {
  display: grid;
  width: 82%;
  min-height: 480px;
  padding: 56px;
  place-items: center;
  align-content: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 40px;
  background: #050505;
  box-shadow: 0 36px 80px rgba(0, 0, 0, .65);
  text-align: center;
  animation: gliding 6s ease-in-out infinite 1s;
}

.device-frame [hidden] {
  display: none !important;
}

.device-frame-logo {
  display: grid;
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  overflow: hidden;
  place-items: center;
  border-radius: 25px;
}

.device-frame-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.device-frame strong {
  font-size: 36px;
  font-weight: 560;
  letter-spacing: -.04em;
}

.device-frame small {
  margin-bottom: 22px;
  color: #777;
  font-size: 16px;
}

.pricing-section {
  padding: 160px 0 144px;
}

.pricing-heading {
  display: grid;
  margin-bottom: 64px;
  grid-template-columns: 1.45fr .55fr;
  align-items: end;
  gap: 64px;
}

.pricing-heading p {
  margin: 0;
  color: var(--text-50);
  font-size: 18px;
  line-height: 1.5;
}

.tariff-picker {
  display: grid;
  gap: 32px;
}

.device-tabs {
  display: grid;
  width: min(100%, 720px);
  margin-inline: auto;
  padding: 4px;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #3e3e3e;
  border-radius: 999px;
  background: #111;
}

.device-tab {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 999px;
  background: transparent;
  color: #777;
  cursor: pointer;
  transition: transform var(--transition), color var(--transition), background-color var(--transition);
}

.device-tab span {
  color: inherit;
  font-size: 19px;
  font-weight: 650;
}

.device-tab.is-active {
  background: #fff;
  color: #111;
}

.tariff-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

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

.tariff-card {
  position: relative;
  display: grid;
  min-height: 330px;
  padding: 28px;
  align-content: start;
  gap: 18px;
  overflow: hidden;
  border: 1px solid #3e3e3e;
  border-radius: 38px;
  background:
    radial-gradient(circle at 75% 15%, rgba(255, 255, 255, .08), transparent 35%),
    linear-gradient(150deg, #171717, #070707 70%);
}

.tariff-card.is-recommended {
  border-color: #777;
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 255, 255, .18), transparent 35%),
    linear-gradient(150deg, #282828, #090909 70%);
}

.tariff-card > div {
  display: flex;
  min-height: 60px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.tariff-badge {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid #555;
  border-radius: 999px;
  color: #aaa;
  font-size: 11px;
  text-transform: uppercase;
}

.tariff-period {
  color: #fff;
  font-size: 19px;
  font-weight: 480;
}

.tariff-card > strong {
  margin-top: 10px;
  font-size: 32px;
  font-weight: 580;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.tariff-card > small {
  color: #777;
  font-size: 14px;
}

.tariff-action {
  display: inline-flex;
  min-height: 48px;
  margin-top: auto;
  padding: 12px 16px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 550;
  white-space: nowrap;
  transition: transform var(--transition), opacity var(--transition);
}

.tariff-card-empty {
  grid-column: 1 / -1;
}

.pricing-note {
  margin: 0;
  color: #666;
  font-size: 14px;
  text-align: center;
}

.light-section {
  position: relative;
  z-index: 2;
  padding: 96px 0 88px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #fff;
  color: #111;
}

.scenarios-section {
  display: grid;
  gap: 64px;
}

.light-heading {
  display: grid;
  gap: 24px;
}

.light-heading .eyebrow {
  border-color: #d3d3d3;
  background: linear-gradient(#fff, #eee);
  color: #222;
}

.light-heading h2 {
  color: #111;
}

.light-heading > p {
  color: #777;
}

.reviews-link {
  display: inline-flex;
  width: max-content;
  min-height: 44px;
  padding: 10px 16px;
  align-items: center;
  gap: 10px;
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  background: rgba(255, 255, 255, .8);
  color: #202020;
  font-size: 14px;
  font-weight: 590;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, .06),
    inset 0 1px #fff;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.reviews-link:hover {
  border-color: #bdbdbd;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, .09),
    inset 0 1px #fff;
  transform: translateY(-2px);
}

.reviews-link span {
  font-size: 17px;
  line-height: 1;
}

.reviews {
  display: grid;
  width: 100%;
  gap: 20px;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 0;
  will-change: transform;
}

.reviews-track:first-child {
  opacity: .7;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.reviews-group {
  display: flex;
  flex: none;
}

.review-card {
  display: grid;
  width: 450px;
  min-height: 286px;
  margin-right: 24px;
  padding: 24px;
  align-content: start;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;
  border: 1px solid #dadada;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .86);
  color: #111;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.review-index {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #777;
  font-size: 13px;
}

.review-tag {
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid #dfdfdf;
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: #666;
  font-size: 12px;
  font-weight: 560;
  letter-spacing: .01em;
  white-space: nowrap;
}

.review-card h3 {
  margin: 0;
  color: #111;
  font-size: 22px;
  font-weight: 570;
  letter-spacing: -.02em;
}

.review-card p {
  margin: 0;
  color: #666;
  font-size: 17px;
  line-height: 1.48;
}

.review-card-result {
  display: flex;
  min-height: 42px;
  padding-top: 14px;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, .09);
  color: #3d3d3d;
  font-size: 13px;
  font-weight: 560;
  line-height: 1.35;
}

.review-card-result i {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-style: normal;
}

.forum-section {
  padding: 104px 0 72px;
}

.forum-panel {
  display: grid;
  padding: 56px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  border: 1px solid #ddd;
  border-radius: var(--radius-xl);
  background: #f7f7f7;
}

.forum-panel > div {
  display: grid;
  gap: 16px;
}

.forum-panel .eyebrow {
  width: max-content;
  min-height: 38px;
  padding: 8px 14px;
  border-color: #ddd;
  background: #fff;
  color: #333;
  font-size: 14px;
}

.forum-panel h2 {
  margin: 0;
  color: #111;
  font-size: 42px;
  font-weight: 580;
  letter-spacing: -.045em;
}

.forum-panel p {
  max-width: 760px;
  margin: 0;
  color: #777;
  font-size: 17px;
  line-height: 1.5;
}

.faq-section {
  padding: 64px 0 12px;
}

.faq-section .light-heading {
  margin-bottom: 64px;
}

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

.faq-list {
  border-top: 1px solid rgba(0, 0, 0, .4);
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, .4);
}

.faq-item h3 {
  margin: 0;
}

.faq-button {
  display: flex;
  width: 100%;
  min-height: 82px;
  padding: 24px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  color: #222;
  font-size: 23px;
  font-weight: 470;
  text-align: left;
  cursor: pointer;
}

.faq-button i {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 16px;
  transition: transform var(--transition);
}

.faq-button i::before,
.faq-button i::after {
  position: absolute;
  top: 7px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #222;
  content: "";
}

.faq-button i::before {
  left: 0;
  transform: rotate(35deg);
}

.faq-button i::after {
  right: 0;
  transform: rotate(-35deg);
}

.faq-button[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  color: #444;
  transition: grid-template-rows 360ms cubic-bezier(.2, .8, .2, 1);
}

.faq-item.is-open .faq-content {
  grid-template-rows: 1fr;
}

.faq-content-inner {
  min-height: 0;
  overflow: hidden;
  padding-right: 44px;
  font-size: 17px;
  line-height: 1.55;
}

.faq-item.is-open .faq-content-inner {
  padding-bottom: 24px;
}

.faq-cta {
  display: flex;
  margin-top: 72px;
  padding: 28px 34px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid #ddd;
  border-radius: var(--radius-lg);
  background: #f7f7f7;
}

.faq-cta > span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111;
  font-size: 19px;
  font-weight: 620;
}

.faq-cta > span img {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
  border-radius: 0;
  transform: scale(.88);
}

.faq-cta p {
  margin: 0 auto 0 0;
  color: #666;
  font-size: 16px;
}

.final-section {
  position: relative;
  padding: 144px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, .08), transparent 32%),
    #000;
}

.final-section::before {
  position: absolute;
  inset: 0;
  opacity: .35;
  background:
    repeating-radial-gradient(ellipse at 50% 20%, transparent 0 22px, rgba(255, 255, 255, .06) 23px 24px, transparent 25px 40px);
  content: "";
  mask-image: linear-gradient(transparent, #000 30% 70%, transparent);
}

.final-panel {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.final-panel h2 {
  font-size: 72px;
}

.final-panel h2 em {
  background: linear-gradient(90deg, #d7d7d7, #fff, #777);
  background-clip: text;
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  -webkit-background-clip: text;
}

.final-panel > p {
  margin: 0;
  color: var(--text-50);
  font-size: 18px;
}

.footer {
  border: 1px solid var(--border-soft);
  border-bottom: 0;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: linear-gradient(130deg, #202020, #050505 42% 68%, #202020);
}

.footer-top {
  display: grid;
  padding: 64px 0 48px;
  grid-template-columns: minmax(300px, 1.8fr) repeat(3, minmax(130px, .6fr));
  gap: 72px;
}

.footer-company {
  display: grid;
  align-content: start;
  gap: 22px;
}

.footer-company p {
  max-width: 360px;
  margin: 0;
  color: var(--text-50);
  font-size: 15px;
  line-height: 1.5;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 15px;
}

.footer-column strong {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 560;
}

.footer-column a {
  color: var(--text-50);
  font-size: 16px;
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  padding: 24px 0;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #777;
  font-size: 14px;
}

.platform-credits {
  max-width: 980px;
  margin: 0;
  padding: 0 0 26px;
  color: rgba(255, 255, 255, .28);
  font-size: 10px;
  line-height: 1.5;
}

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

.has-js .reveal {
  opacity: 0;
  filter: blur(12px) grayscale(1);
  transform: translateY(10px);
  transition:
    opacity 1s ease,
    filter 1s ease,
    transform 1s cubic-bezier(.2, .8, .2, 1);
}

.has-js .reveal.is-visible {
  opacity: 1;
  filter: none;
  transform: none;
}

.has-js .reveal-delay-1 {
  transition-delay: 80ms;
}

.has-js .reveal-delay-2 {
  transition-delay: 160ms;
}

.has-js .reveal-delay-3 {
  transition-delay: 240ms;
}

@keyframes gliding {
  0%,
  100% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes page-fade {
  0%,
  10% {
    opacity: 0;
    filter: blur(12px) grayscale(1);
  }
  100% {
    opacity: 1;
    filter: none;
  }
}

.vone-site-shell {
  animation: page-fade 1s ease-out both;
}

.vone-site-shell .section:not(.hero) {
  content-visibility: visible;
  contain-intrinsic-size: none;
}

@media (max-width: 1280px) {
  .nav {
    position: static;
    gap: 20px;
    transform: none;
  }

  .nav a {
    font-size: 14px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-button {
    padding-inline: 13px;
    font-size: 14px;
  }

  .hero {
    min-height: 670px;
  }

  .hero-inner {
    min-height: 601px;
    padding-top: 42px;
    gap: 38px;
  }

  .hero h1 {
    font-size: 80px;
  }

  .advantages-section {
    margin-top: -64px;
  }

  .section-heading h2,
  .devices-copy h2,
  .pricing-heading h2 {
    font-size: 54px;
  }

  .product-layout,
  .devices-layout {
    gap: 32px;
  }

  .product-visual,
  .device-visual {
    min-height: 500px;
  }

  .tariff-panel {
    gap: 12px;
  }

  .tariff-card {
    min-height: 310px;
    padding: 22px;
    border-radius: 32px;
  }

  .footer-top {
    gap: 44px;
  }
}

@media (max-width: 1199px) {
  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav {
    display: none;
  }

  .header-actions {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    visibility: hidden;
    overflow-y: auto;
    padding:
      calc(88px + env(safe-area-inset-top))
      calc(32px + env(safe-area-inset-right))
      calc(32px + env(safe-area-inset-bottom))
      calc(32px + env(safe-area-inset-left));
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    background: rgba(0, 0, 0, .92);
    opacity: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .header-actions.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .header-button,
  .mobile-link {
    display: flex;
    width: min(100%, 560px);
    min-height: 54px;
    margin-inline: auto;
    padding: 14px 18px;
    flex: none;
    align-items: center;
    justify-content: center;
    border: 1px solid #383838;
    border-radius: 999px;
    background: #171717;
    color: #fff;
    font-size: 18px;
  }

  .header-button-primary {
    border-color: #fff;
    background: #fff;
    color: #111;
  }

  .menu-close {
    position: absolute;
    top: calc(20px + env(safe-area-inset-top));
    right: calc(24px + env(safe-area-inset-right));
    display: block;
    width: 36px;
    height: 36px;
    border: 1px solid #3b3b3b;
    border-radius: 50%;
    background: #151515;
  }

  .menu-close span {
    position: absolute;
    top: 17px;
    left: 9px;
    width: 18px;
    height: 1.5px;
    background: #fff;
  }

  .menu-close span:first-child {
    transform: rotate(45deg);
  }

  .menu-close span:last-child {
    transform: rotate(-45deg);
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: #191919;
    color: #fff;
  }

  .menu-toggle-lines {
    position: relative;
    display: block;
    width: 18px;
    height: 16px;
  }

  .menu-toggle-lines > span {
    position: absolute;
    left: 0;
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
  }

  .menu-toggle-lines > span:nth-child(1) {
    top: 1px;
  }

  .menu-toggle-lines > span:nth-child(2) {
    top: 7px;
  }

  .menu-toggle-lines > span:nth-child(3) {
    top: 13px;
  }

  .hero {
    min-height: 635px;
  }

  .hero-inner {
    min-height: 566px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .advantages-section {
    margin-top: 0;
  }

  .advantage-item {
    min-height: 260px;
    padding: 24px 18px;
  }

  .advantage-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
  }

  .advantage-item h3 {
    font-size: 19px;
  }

  .advantage-item p {
    font-size: 14px;
  }

  .product-layout,
  .devices-layout {
    grid-template-columns: 1fr;
  }

  .product-visual,
  .device-visual {
    width: min(100%, 560px);
    min-height: 520px;
    margin-inline: auto;
  }

  .product-steps {
    max-width: 680px;
    margin-inline: auto;
  }

  .devices-layout .device-visual {
    grid-row: 1;
  }

  .devices-copy {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
  }

  .devices-copy .eyebrow {
    margin-inline: auto;
  }

  .pricing-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .pricing-heading p {
    max-width: 680px;
    margin-inline: auto;
  }

  .tariff-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tariff-card:nth-child(n+4) {
    grid-column: auto;
  }

  .footer-top {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 780px) {
  :root {
    --page-width: calc(100% - 40px);
    --radius-xl: 32px;
    --radius-lg: 24px;
  }

  #signal-field {
    height: 680px;
  }

  .site-header {
    height: 72px;
    padding-top: 8px;
    background: rgba(0, 0, 0, .74);
  }

  .header-inner {
    height: 56px;
  }

  .brand {
    gap: 10px;
    font-size: 20px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .header-actions {
    padding:
      calc(88px + env(safe-area-inset-top))
      calc(20px + env(safe-area-inset-right))
      calc(28px + env(safe-area-inset-bottom))
      calc(20px + env(safe-area-inset-left));
  }

  .hero {
    min-height: 610px;
  }

  .hero-inner {
    width: calc(100% - 40px);
    min-height: 538px;
    padding: 44px 0 28px;
    gap: 28px;
  }

  .trust-pill {
    min-height: 48px;
    padding: 6px 14px 6px 6px;
    gap: 10px;
    font-size: 13px;
  }

  .trust-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .hero-copy {
    gap: 18px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 13vw, 58px);
    letter-spacing: -.06em;
  }

  .hero-copy > p {
    max-width: 560px;
    color: #686868;
    font-size: 15px;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .button {
    min-height: 48px;
    padding: 13px 19px;
    font-size: 15px;
  }

  .platforms {
    gap: 15px;
  }

  .platforms > span {
    font-size: 13px;
  }

  .platform-icons {
    gap: 18px;
  }

  .platform-icons span {
    width: 34px;
    height: 34px;
  }

  .section {
    padding-block: 64px;
  }

  .section-heading,
  .light-heading {
    gap: 18px;
  }

  .eyebrow {
    min-height: 40px;
    padding: 9px 15px;
    font-size: 13px;
  }

  .section-heading h2,
  .devices-copy h2,
  .pricing-heading h2,
  .light-heading h2,
  .final-panel h2 {
    font-size: 39px;
  }

  .section-heading > p,
  .light-heading > p {
    font-size: 15px;
  }

  .advantages-section .section-heading {
    margin-bottom: 42px;
  }

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

  .advantage-item {
    min-height: auto;
    padding: 28px 0;
    grid-template-columns: 52px 1fr;
    column-gap: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .advantage-item:nth-child(-n+4) {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .advantage-item:last-child {
    border-bottom: 0;
  }

  .advantage-icon {
    width: 48px;
    height: 48px;
    margin: 0;
    grid-row: 1 / span 2;
  }

  .advantage-item h3 {
    font-size: 20px;
  }

  .advantage-item p {
    font-size: 15px;
  }

  .product-section,
  .devices-section {
    padding-top: 78px;
  }

  .product-section .section-heading {
    margin-bottom: 42px;
  }

  .product-layout,
  .devices-layout {
    gap: 42px;
  }

  .product-visual,
  .device-visual {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1;
    border-radius: 32px;
  }

  .account-preview {
    width: 86%;
    border-radius: 24px;
  }

  .account-preview-top {
    min-height: 62px;
    padding: 13px 15px;
  }

  .account-preview-top > span {
    font-size: 14px;
  }

  .account-preview-body {
    padding: 20px;
    gap: 10px;
  }

  .account-preview-body h3 {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .access-line {
    padding: 12px;
    font-size: 10px;
  }

  .preview-devices {
    margin-top: 5px;
  }

  .preview-devices span {
    padding: 9px;
    font-size: 10px;
  }

  .product-steps {
    gap: 18px;
  }

  .product-step {
    padding: 18px 0;
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .product-step > span:first-child {
    width: 42px;
    height: 42px;
  }

  .product-step strong {
    font-size: 20px;
  }

  .product-step small {
    font-size: 14px;
  }

  .product-step.is-active {
    width: calc(100% - 16px);
    transform: translateX(16px);
  }

  .product-step::before {
    left: -16px;
  }

  .devices-copy {
    gap: 22px;
  }

  .devices-copy > p {
    font-size: 15px;
  }

  .device-buttons {
    grid-template-columns: 1fr;
  }

  .device-frame {
    width: 86%;
    min-height: 0;
    aspect-ratio: .82;
    padding: 32px 20px;
    border-radius: 28px;
  }

  .device-frame-logo {
    width: 72px;
    height: 72px;
    margin-bottom: 8px;
    border-radius: 20px;
  }

  .device-frame strong {
    font-size: 28px;
  }

  .pricing-section {
    padding: 90px 0 80px;
  }

  .pricing-heading {
    margin-bottom: 42px;
  }

  .device-tabs {
    width: 100%;
  }

  .device-tab {
    min-height: 46px;
    gap: 4px;
    font-size: 11px;
  }

  .device-tab span {
    font-size: 16px;
  }

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

  .tariff-card {
    min-height: 260px;
    padding: 24px;
  }

  .light-section {
    padding: 64px 0 54px;
    border-radius: 32px;
  }

  .scenarios-section {
    gap: 42px;
  }

  .reviews {
    gap: 14px;
  }

  .review-card {
    width: 252px;
    min-height: 262px;
    margin-right: 12px;
    padding: 16px;
    gap: 10px;
    border-radius: 24px;
  }

  .review-index {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  .review-tag {
    min-height: 28px;
    padding: 6px 9px;
    font-size: 10px;
  }

  .review-card h3 {
    font-size: 18px;
  }

  .review-card p {
    font-size: 14px;
  }

  .review-card-result {
    min-height: 38px;
    padding-top: 10px;
    gap: 8px;
    font-size: 11px;
  }

  .review-card-result i {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
  }

  .forum-section {
    padding: 70px 0 48px;
  }

  .forum-panel {
    padding: 28px;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 26px;
    border-radius: 28px;
  }

  .forum-panel h2 {
    font-size: 32px;
  }

  .forum-panel p {
    font-size: 15px;
  }

  .faq-section {
    padding-top: 48px;
  }

  .faq-section .light-heading {
    margin-bottom: 42px;
  }

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

  .faq-list + .faq-list {
    border-top: 0;
  }

  .faq-button {
    min-height: 70px;
    padding: 20px 0;
    font-size: 18px;
  }

  .faq-content-inner {
    padding-right: 32px;
    font-size: 15px;
  }

  .faq-cta {
    display: grid;
    margin-top: 48px;
    padding: 24px;
    justify-items: center;
    gap: 18px;
    text-align: center;
  }

  .faq-cta p {
    margin: 0;
  }

  .final-section {
    padding: 90px 0;
  }

  .final-panel {
    gap: 20px;
  }

  .final-panel > p {
    font-size: 15px;
  }

  .final-panel > div {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer {
    border-radius: 32px 32px 0 0;
  }

  .footer-top {
    padding: 48px 0 36px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
  }

  .footer-company {
    grid-column: 1 / -1;
    justify-items: center;
    text-align: center;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    justify-items: center;
    gap: 12px;
  }
}

/* 2026-08-04 v5: coherent contour field and square mobile laptop. */
#signal-field {
  display: block;
  opacity: .64;
  filter: contrast(1.08);
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 10%, #000 76%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 10%, #000 76%, transparent 100%);
}

.hero-wave-field {
  opacity: .1;
  filter: none;
}

.hero-wave-field g,
.hero-wave-field path {
  animation: none !important;
}

@media (max-width: 780px) {
  #signal-field {
    display: block;
    height: 100%;
    opacity: .72;
  }

  .hero-wave-field {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: none;
  }

  .devices-layout .device-visual {
    width: 100%;
    max-width: 351px;
    min-height: 0;
    aspect-ratio: 1;
    margin: 0 auto 70px;
    overflow: visible;
    border-radius: 40px;
    background:
      radial-gradient(circle at 50% 36%, rgba(255, 255, 255, .085), transparent 36%),
      #020202;
  }

  .device-visual,
  .device-stage {
    min-height: 0;
  }

  .device-stage {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: inherit;
  }

  [data-device-visual][data-platform] .device-hardware {
    top: 22px;
    z-index: 2;
    width: 91%;
    max-width: 320px;
    transform: translateX(-50%) perspective(900px) rotateX(2deg) rotateY(-5deg) rotateZ(3.5deg);
  }

  .device-hardware-screen {
    aspect-ratio: 1.6;
    border-radius: 24px 24px 8px 8px;
  }

  .device-hardware-screen .device-frame-logo {
    width: 88px;
    height: 88px;
  }

  .device-hardware-screen .device-frame-logo img {
    transform: none;
  }

  .device-hardware-base {
    position: relative;
    display: block;
    width: 110%;
    height: 74px;
    margin: -2px 0 0 -5%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 0 0 26px 26px;
    background:
      linear-gradient(90deg, transparent 7%, rgba(255, 255, 255, .08) 50%, transparent 93%),
      linear-gradient(180deg, #59595c 0, #262628 26%, #0a0a0b 100%);
    clip-path: polygon(4% 0, 96% 0, 100% 82%, 94% 100%, 6% 100%, 0 82%);
    box-shadow: 0 18px 26px rgba(0, 0, 0, .5);
  }

  .device-hardware-base::before {
    position: absolute;
    inset: 8px 9% 29px;
    border-radius: 5px;
    background:
      repeating-linear-gradient(90deg, transparent 0 12px, rgba(255, 255, 255, .12) 12px 13px),
      repeating-linear-gradient(0deg, #111 0 7px, #303033 7px 9px);
    content: "";
    opacity: .82;
  }

  .device-hardware-base::after {
    position: absolute;
    right: 35%;
    bottom: 7px;
    left: 35%;
    height: 21px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 5px;
    background: rgba(0, 0, 0, .12);
    content: "";
  }

  .device-stage > .device-frame {
    top: auto;
    right: auto;
    bottom: 48px;
    left: 50%;
    z-index: 4;
    width: min(66%, 232px);
    transform: translateX(-50%);
  }

  .device-stage > .device-frame .button {
    min-height: 68px;
    padding: 17px 20px;
    gap: 12px;
    font-size: 20px;
    white-space: nowrap;
  }

  .device-platform-note {
    top: calc(100% + 13px);
    right: 5%;
    bottom: auto;
    left: 5%;
    min-height: 48px;
    padding: 10px 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: rgba(255, 255, 255, .055);
    box-shadow:
      inset 0 1px rgba(255, 255, 255, .1),
      0 12px 28px rgba(0, 0, 0, .1);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
    backdrop-filter: blur(24px) saturate(170%);
  }
}

@media (max-width: 340px) {
  .account-preview-body {
    padding: 16px;
  }

  .access-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .access-line span {
    width: 100%;
  }
}

@media (max-width: 340px) {
  :root {
    --page-width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .platform-icons {
    gap: 13px;
  }

  .review-card {
    width: 224px;
  }
}

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

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

  #signal-field {
    display: none;
  }

  .has-js .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* Reference-fidelity pass: native vectors, iOS glass and kinetic signal field. */
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.icon-sprite symbol,
.advantage-icon svg,
.platform-icon svg,
.device-button svg,
.device-screen-platform svg {
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

#icon-windows path {
  fill: currentColor;
  stroke: none;
}

.site-header {
  height: 76px;
  border-bottom-color: rgba(255, 255, 255, .12);
  background: rgba(9, 9, 10, .74);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, .42),
    inset 0 -1px rgba(255, 255, 255, .035);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
}

.site-header.is-scrolled {
  background: rgba(9, 9, 10, .82);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, .52),
    inset 0 -1px rgba(255, 255, 255, .055);
}

.header-inner {
  height: 76px;
}

.brand-mark,
.trust-icon,
.device-frame-logo {
  box-shadow:
    0 10px 28px rgba(0, 0, 0, .55),
    inset 0 0 0 1px rgba(255, 255, 255, .09);
}

.menu-toggle,
.header-button,
.button,
.eyebrow,
.trust-pill {
  box-shadow:
    0 12px 30px rgba(0, 0, 0, .26),
    inset 0 1px rgba(255, 255, 255, .08);
}

.button-light,
.header-button-primary {
  box-shadow:
    0 18px 42px rgba(255, 255, 255, .12),
    0 8px 24px rgba(0, 0, 0, .34),
    inset 0 -1px rgba(0, 0, 0, .1);
}

#signal-field {
  height: 100%;
  opacity: 1;
  mask-image: linear-gradient(to bottom, #000 0 77%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0 77%, transparent 100%);
}

.hero {
  min-height: 850px;
}

.hero-texture {
  opacity: .14;
}

.hero::before {
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 255, 255, .08), transparent 34%),
    radial-gradient(circle at 50% 45%, transparent 15%, rgba(0, 0, 0, .22) 68%),
    #000;
}

.hero-inner {
  min-height: 774px;
}

.hero h1 {
  text-shadow: 0 18px 46px rgba(0, 0, 0, .5);
}

.hero h1 span,
.section-heading h2 span,
.devices-copy h2 span,
.pricing-heading h2 span {
  background-image: linear-gradient(180deg, #4f4f50 5%, #fff 82%);
}

.hero h1 strong,
.section-heading h2,
.devices-copy h2,
.pricing-heading h2 {
  text-shadow: 0 18px 46px rgba(0, 0, 0, .42);
}

.platforms {
  gap: 18px;
}

.platform-icons {
  gap: 12px;
}

.platform-icons .platform-icon {
  display: grid;
  width: 132px;
  height: auto;
  min-height: 74px;
  padding: 10px 14px;
  grid-template-columns: 32px 1fr;
  grid-template-rows: 1fr 1fr;
  place-items: center start;
  gap: 0 10px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  background: rgba(22, 22, 24, .64);
  color: rgba(255, 255, 255, .82);
  filter: none;
  opacity: 1;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, .34),
    inset 0 1px rgba(255, 255, 255, .07);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
}

.platform-icons .platform-icon:hover {
  filter: none;
}

.platform-icon svg,
.platform-brand-icon {
  width: 32px;
  height: 32px;
  grid-row: 1 / -1;
}

.platform-brand-icon {
  object-fit: contain;
}

.platform-brand-icon-finder {
  border-radius: 7px;
}

.platform-icon small {
  align-self: end;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 560;
}

.platform-icon i,
.device-button i,
.device-beta {
  align-self: start;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  font-style: normal;
  font-weight: 580;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.advantage-icon {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .68);
}

.advantage-icon svg {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 8px 18px rgba(255, 255, 255, .08));
}

.advantage-item:hover .advantage-icon {
  color: #fff;
  filter: none;
  transform: translateY(-3px);
}

.product-visual {
  position: relative;
  isolation: isolate;
}

.product-visual::before,
.product-visual::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.product-visual::before {
  width: min(74%, 460px);
  aspect-ratio: 1;
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(255, 255, 255, .55) 0 1.4deg,
      rgba(255, 255, 255, .035) 1.8deg 5.8deg
    );
  opacity: .22;
  filter: blur(.2px) drop-shadow(0 24px 36px rgba(255, 255, 255, .06));
  -webkit-mask: radial-gradient(circle, transparent 0 49%, #000 50% 65%, transparent 66%);
  mask: radial-gradient(circle, transparent 0 49%, #000 50% 65%, transparent 66%);
  animation: signal-orbit 24s linear infinite;
}

.product-visual::after {
  width: 68%;
  height: 28%;
  border: 1px solid rgba(255, 255, 255, .12);
  opacity: .7;
  transform: rotate(-18deg);
  animation: signal-tilt 8s ease-in-out infinite;
}

.account-preview {
  position: relative;
  z-index: 2;
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
}

.devices-section {
  min-height: 870px;
  padding-block: 150px;
}

.device-lines {
  opacity: .62;
  background:
    repeating-radial-gradient(
      ellipse at 67% 48%,
      transparent 0 18px,
      rgba(255, 255, 255, .08) 19px 20px,
      transparent 21px 38px
    );
  -webkit-mask-image: linear-gradient(90deg, transparent 8%, #000 37% 96%, transparent);
  mask-image: linear-gradient(90deg, transparent 8%, #000 37% 96%, transparent);
}

.devices-layout {
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: 86px;
}

.devices-copy {
  gap: 24px;
}

.devices-copy > p {
  color: rgba(255, 255, 255, .42);
}

.device-buttons {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.device-button {
  min-height: 66px;
  padding: 12px 14px;
  gap: 9px;
  border-color: rgba(255, 255, 255, .15);
  background: rgba(25, 25, 27, .68);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, .3),
    inset 0 1px rgba(255, 255, 255, .07);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
}

.device-button svg {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  color: rgba(255, 255, 255, .62);
}

.device-button img {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
}

.device-button span {
  min-width: 0;
  overflow: hidden;
  font-size: 14px;
  font-weight: 540;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.device-button i {
  margin-left: auto;
  color: rgba(255, 255, 255, .42);
}

.device-button.is-active {
  border-color: rgba(255, 255, 255, .88);
  background: #fff;
  box-shadow:
    0 20px 50px rgba(255, 255, 255, .12),
    0 12px 28px rgba(0, 0, 0, .38);
}

.device-button.is-active svg,
.device-button.is-active i {
  color: #111;
}

.device-visual {
  position: relative;
  min-height: 650px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .17);
  background:
    radial-gradient(circle at 56% 26%, rgba(255, 255, 255, .15), transparent 26%),
    linear-gradient(120deg, #232323, #050505 48% 72%, #232323);
  box-shadow:
    0 50px 100px rgba(0, 0, 0, .58),
    inset 0 1px rgba(255, 255, 255, .08);
}

.device-stage {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 650px;
  place-items: center;
  isolation: isolate;
}

.device-glow {
  position: absolute;
  inset: 7%;
  z-index: -1;
  overflow: hidden;
  border-radius: 48px;
  opacity: .64;
}

.device-glow i {
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 42%;
  animation: device-float 10s ease-in-out infinite;
}

.device-glow i:nth-child(1) {
  top: 2%;
  left: 3%;
  transform: rotate(15deg);
}

.device-glow i:nth-child(2) {
  right: 0;
  bottom: 6%;
  animation-delay: -3.2s;
  transform: rotate(54deg);
}

.device-glow i:nth-child(3) {
  top: 25%;
  left: 28%;
  width: 44%;
  animation-delay: -6.4s;
  transform: rotate(84deg);
}

.device-hardware {
  position: relative;
  width: min(78%, 510px);
  transform: perspective(900px) rotateX(5deg) rotateY(-8deg) translateY(-32px);
  transition: transform 700ms cubic-bezier(.2, .8, .2, 1);
}

.device-hardware-screen {
  position: relative;
  display: grid;
  aspect-ratio: 1.55;
  overflow: hidden;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .38);
  border-radius: 26px 26px 12px 12px;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, .12), transparent 26%),
    #030303;
  box-shadow:
    inset 0 0 0 8px #111,
    0 36px 60px rgba(0, 0, 0, .66);
}

.device-hardware-screen::before {
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(
      ellipse at 52% 48%,
      transparent 0 12px,
      rgba(255, 255, 255, .055) 13px 14px,
      transparent 15px 26px
    );
  content: "";
}

.device-hardware-screen .device-frame-logo {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  border-radius: 28px;
}

.device-screen-platform {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: rgba(20, 20, 22, .74);
  color: rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
}

.device-screen-platform svg {
  width: 28px;
  height: 28px;
}

.device-screen-platform img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.device-hardware-base {
  width: 112%;
  height: 18px;
  margin-left: -6%;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 3px 3px 32px 32px;
  background: linear-gradient(180deg, #b5b5b5, #3a3a3a 45%, #111);
  box-shadow: 0 18px 32px rgba(0, 0, 0, .54);
}

.device-stage > .device-frame {
  position: absolute;
  right: 8%;
  bottom: 8%;
  display: grid;
  width: auto;
  min-width: 270px;
  min-height: 0;
  padding: 20px 22px;
  grid-template-columns: 1fr auto;
  place-items: start;
  gap: 3px 16px;
  border-color: rgba(255, 255, 255, .18);
  border-radius: 24px;
  background: rgba(18, 18, 20, .72);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, .54),
    inset 0 1px rgba(255, 255, 255, .08);
  text-align: left;
  animation: none;
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  backdrop-filter: blur(24px) saturate(170%);
}

.device-stage > .device-frame strong {
  font-size: 24px;
}

.device-stage > .device-frame small {
  margin: 0;
  grid-column: 1;
  color: rgba(255, 255, 255, .48);
  font-size: 13px;
}

.device-stage > .device-frame .button {
  min-height: 42px;
  padding: 10px 15px;
  grid-column: 2;
  grid-row: 1 / span 3;
  font-size: 13px;
}

.device-beta {
  color: rgba(255, 255, 255, .5);
}

[data-device-visual][data-platform="windows"] .device-hardware {
  transform: perspective(900px) rotateX(4deg) rotateY(8deg) translateY(-32px);
}

[data-device-visual][data-platform="macos"] .device-hardware {
  transform: perspective(900px) rotateX(2deg) rotateY(-3deg) translateY(-32px) scale(.98);
}

.light-section {
  box-shadow:
    0 -30px 70px rgba(255, 255, 255, .035),
    inset 0 1px rgba(255, 255, 255, .9);
}

.review-card {
  border-color: rgba(0, 0, 0, .11);
  background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(244, 244, 244, .9));
  box-shadow:
    0 18px 44px rgba(0, 0, 0, .055),
    inset 0 1px #fff;
}

.review-card h3 {
  text-shadow: 0 1px rgba(255, 255, 255, .8);
}

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

@keyframes signal-tilt {
  0%,
  100% {
    transform: rotate(-18deg) scale(.96);
  }
  50% {
    transform: rotate(10deg) scale(1.04);
  }
}

@keyframes device-float {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }
  50% {
    translate: 7% -5%;
    rotate: 12deg;
  }
}

@media (max-width: 1280px) {
  .devices-layout {
    grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
    gap: 48px;
  }

  .device-button {
    padding-inline: 10px;
  }

  .device-button span {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .site-header,
  .site-header.is-scrolled {
    background: rgba(12, 12, 14, .76);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    backdrop-filter: blur(28px) saturate(180%);
  }

  .devices-layout {
    grid-template-columns: 1fr;
  }

  .devices-layout .device-visual {
    grid-row: auto;
  }

  .devices-copy {
    order: 1;
  }

  .device-visual {
    order: 2;
  }
}

@media (max-width: 780px) {
  .site-header {
    height: 72px;
    padding-top: 0;
  }

  .header-inner {
    height: 72px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    background: rgba(32, 32, 35, .66);
    box-shadow:
      0 12px 30px rgba(0, 0, 0, .38),
      inset 0 1px rgba(255, 255, 255, .1);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    backdrop-filter: blur(18px) saturate(160%);
  }

  #signal-field {
    height: 700px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-inner {
    min-height: 618px;
  }

  .platforms {
    width: 100%;
  }

  .platform-icons {
    width: 100%;
    gap: 8px;
  }

  .platform-icons .platform-icon {
    width: 33.333%;
    min-height: 66px;
    padding: 9px;
    grid-template-columns: 26px 1fr;
    border-radius: 18px;
  }

  .platform-icon svg,
  .platform-brand-icon {
    width: 25px;
    height: 25px;
  }

  .platform-icon small {
    font-size: 11px;
  }

  .platform-icon i {
    font-size: 8px;
  }

  .advantage-icon svg {
    width: 46px;
    height: 46px;
  }

  .product-visual::before {
    width: 82%;
  }

  .devices-section {
    min-height: 0;
    padding-block: 78px;
  }

  .devices-copy {
    order: 1;
  }

  .device-buttons {
    grid-template-columns: 1fr;
  }

  .device-button {
    min-height: 58px;
    padding-inline: 16px;
  }

  .device-button span {
    font-size: 15px;
  }

  .device-visual {
    order: 2;
    min-height: 440px;
    aspect-ratio: auto;
    overflow: hidden;
  }

  .device-stage {
    min-height: 440px;
  }

  .device-hardware {
    width: 78%;
    transform: perspective(800px) rotateX(5deg) rotateY(-7deg) translateY(-38px);
  }

  .device-hardware-screen .device-frame-logo {
    width: 66px;
    height: 66px;
    border-radius: 20px;
  }

  .device-screen-platform {
    right: 15px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .device-screen-platform svg {
    width: 22px;
    height: 22px;
  }

  .device-stage > .device-frame {
    right: 5%;
    bottom: 5%;
    left: 5%;
    min-width: 0;
    padding: 16px;
    border-radius: 20px;
  }

  .device-stage > .device-frame strong {
    font-size: 20px;
  }

  .device-stage > .device-frame .button {
    padding-inline: 12px;
    font-size: 11px;
  }

  [data-device-visual][data-platform="windows"] .device-hardware,
  [data-device-visual][data-platform="macos"] .device-hardware {
    transform: perspective(800px) rotateX(4deg) rotateY(5deg) translateY(-38px);
  }
}

@media (max-width: 390px) {
  .platform-icons .platform-icon {
    grid-template-columns: 1fr;
    grid-template-rows: 28px 16px 12px;
    justify-items: center;
    gap: 0;
  }

  .platform-icon svg,
  .platform-brand-icon {
    grid-row: auto;
  }

  .device-stage > .device-frame {
    grid-template-columns: 1fr;
  }

  .device-stage > .device-frame .button {
    margin-top: 8px;
    grid-column: 1;
    grid-row: auto;
  }
}

/* The supplied VOne mark is transparent artwork: keep it free of app-icon containers. */
.brand-mark,
.trust-icon,
.device-frame-logo,
.device-hardware-screen .device-frame-logo {
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img,
.device-frame-logo img,
.device-hardware-screen .device-frame-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.28);
  transform-origin: center;
}

.device-hardware-screen .device-frame-logo img {
  transform: scale(1.42);
}

@media (prefers-reduced-motion: reduce) {
  .product-visual::before,
  .product-visual::after,
  .device-glow i {
    animation: none !important;
  }
}

/* VOne landing polish: flowing threads, monochrome platform art and quiet glass. */
#signal-field {
  height: 100%;
  opacity: .96;
  filter: contrast(1.08);
  mask-image: linear-gradient(to bottom, #000 0 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0 88%, transparent 100%);
}

.hero-texture {
  display: none;
}

.hero::before {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .045), transparent 38%),
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .54)),
    #000;
}

.hero,
.hero-inner {
  min-height: 820px;
}

.advantages-section {
  margin-top: 0;
  padding-top: 112px;
}

.platform-brand-icon,
.device-button img,
.device-screen-platform img {
  filter: grayscale(1) brightness(2.35) contrast(1.18);
}

.platform-brand-icon-finder {
  border-radius: 8px;
}

.device-button.is-active img {
  filter: grayscale(1) brightness(.2) contrast(1.4);
}

.trust-pill,
.platform-icons .platform-icon,
.device-button,
.iphone-client-pill,
.eyebrow,
.device-stage > .device-frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow:
    0 20px 48px rgba(0, 0, 0, .38),
    inset 0 1px rgba(255, 255, 255, .13),
    inset 0 -1px rgba(0, 0, 0, .28);
}

.trust-pill::before,
.platform-icons .platform-icon::before,
.device-button::before,
.iphone-client-pill::before,
.eyebrow::before,
.device-stage > .device-frame::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(255, 255, 255, .16), transparent 38%),
    linear-gradient(118deg, rgba(255, 255, 255, .07), transparent 26% 74%, rgba(255, 255, 255, .035));
  content: "";
  pointer-events: none;
}

.platform-icons .platform-icon,
.device-button,
.iphone-client-pill {
  border-color: rgba(255, 255, 255, .18);
  background:
    linear-gradient(145deg, rgba(32, 32, 35, .84), rgba(10, 10, 11, .82));
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
}

.device-button.is-active {
  border-color: rgba(255, 255, 255, .96);
  background: linear-gradient(145deg, #fff, #e9e9e9);
  box-shadow:
    0 22px 50px rgba(255, 255, 255, .1),
    0 16px 34px rgba(0, 0, 0, .4),
    inset 0 1px #fff;
}

.device-button.is-active::before {
  background: radial-gradient(ellipse at 18% 0%, rgba(255, 255, 255, .9), transparent 42%);
}

.devices-section {
  overflow: hidden;
  padding-block: 132px;
}

.device-lines {
  display: none;
}

.devices-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 255, 255, .055), transparent 31%),
    linear-gradient(125deg, transparent 16%, rgba(255, 255, 255, .022) 48%, transparent 78%);
  content: "";
  pointer-events: none;
}

.devices-copy .iphone-client-pill {
  width: 100%;
  max-width: none;
  min-height: 68px;
  margin-top: 2px;
  border-radius: 24px;
}

.devices-copy .iphone-client-pill strong {
  white-space: normal;
}

.device-visual {
  min-height: 610px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, .17);
  border-radius: 48px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, .09), transparent 34%),
    linear-gradient(145deg, #1d1d1f, #050505 48% 74%, #171719);
  box-shadow:
    0 56px 110px rgba(0, 0, 0, .62),
    inset 0 1px rgba(255, 255, 255, .12);
}

.device-stage {
  min-height: 610px;
}

.device-brand-stage {
  position: relative;
  display: grid;
  width: min(72%, 430px);
  aspect-ratio: 1;
  margin-top: -56px;
  place-items: center;
  isolation: isolate;
}

.device-brand-halo {
  position: absolute;
  inset: 13%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(121, 239, 224, .11), rgba(69, 145, 255, .055) 44%, transparent 72%);
  filter: blur(28px);
  animation: vone-halo-breathe 6s ease-in-out infinite;
}

.device-brand-mark {
  width: 76%;
  height: 76%;
  object-fit: contain;
  filter:
    drop-shadow(0 34px 48px rgba(0, 0, 0, .66))
    drop-shadow(0 0 24px rgba(116, 232, 223, .09));
  animation: vone-mark-float 7s ease-in-out infinite;
}

.device-screen-platform {
  right: 8%;
  bottom: 13%;
  width: 58px;
  height: 58px;
  border-color: rgba(255, 255, 255, .2);
  border-radius: 19px;
  background: rgba(12, 12, 14, .76);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, .52),
    inset 0 1px rgba(255, 255, 255, .12);
}

.device-stage > .device-frame {
  right: 7%;
  bottom: 7%;
  min-width: 300px;
  border-color: rgba(255, 255, 255, .2);
  background: rgba(17, 17, 19, .72);
}

.review-card {
  position: relative;
  display: grid;
  width: 430px;
  min-height: 214px;
  padding: 27px 28px 24px;
  align-content: stretch;
  grid-template-rows: 1fr auto;
  gap: 24px;
  overflow: hidden;
  border-color: rgba(0, 0, 0, .1);
  border-radius: 30px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, .98), rgba(241, 241, 241, .92));
  box-shadow:
    0 22px 55px rgba(0, 0, 0, .075),
    inset 0 1px #fff,
    inset 0 -1px rgba(0, 0, 0, .035);
}

.review-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 14% 0%, rgba(255, 255, 255, .96), transparent 42%),
    linear-gradient(115deg, rgba(255, 255, 255, .46), transparent 34% 74%, rgba(255, 255, 255, .22));
  content: "";
  pointer-events: none;
}

.reviews-track:first-child {
  opacity: 1;
}

.review-card > * {
  position: relative;
}

.review-card p {
  color: #626262;
  font-size: 17px;
  line-height: 1.46;
}

.review-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card-meta > span:last-child {
  display: grid;
  gap: 2px;
}

.review-card-meta strong {
  color: #2c2c2c;
  font-size: 15px;
  font-weight: 580;
  letter-spacing: -.01em;
}

.review-card-meta small {
  color: #a0a0a0;
  font-size: 12px;
  font-weight: 470;
}

.review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, .09);
  border-radius: 50%;
  background: linear-gradient(145deg, #eeeeee, #d9d9d9);
  color: #4a4a4a;
  box-shadow:
    0 9px 20px rgba(0, 0, 0, .08),
    inset 0 1px #fff;
}

.review-avatar svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes vone-mark-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.018);
  }
}

@keyframes vone-halo-breathe {
  0%,
  100% {
    opacity: .65;
    transform: scale(.94);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@media (max-width: 1024px) {
  .advantages-section {
    padding-top: 92px;
  }

  .device-visual,
  .device-stage {
    min-height: 560px;
  }
}

@media (max-width: 780px) {
  #signal-field {
    height: 100%;
    opacity: .9;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .advantages-section {
    padding-top: 84px;
  }

  .devices-section {
    padding-block: 88px;
  }

  .devices-copy .iphone-client-pill {
    min-height: 64px;
    border-radius: 21px;
  }

  .device-visual,
  .device-stage {
    min-height: 480px;
  }

  .device-brand-stage {
    width: min(86%, 360px);
    margin-top: -62px;
  }

  .device-stage > .device-frame {
    right: 5%;
    bottom: 5%;
    left: 5%;
    min-width: 0;
  }

  .review-card {
    width: 310px;
    min-height: 205px;
    margin-right: 14px;
    padding: 22px;
    border-radius: 24px;
  }

  .review-card p {
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .hero,
  .hero-inner {
    min-height: 748px;
  }

  .devices-copy .iphone-client-pill strong {
    font-size: 12px;
  }

  .device-brand-stage {
    width: 92%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .device-brand-mark,
  .device-brand-halo {
    animation: none !important;
  }
}

/* 2026-07-31: final landing alignment, continuous threads and restored laptop. */
html {
  scroll-padding-top: 96px;
}

#signal-field {
  top: 0;
  bottom: auto;
  height: 1100px;
  opacity: 1;
  filter: contrast(1.12) brightness(1.08);
  mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 83%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 83%, transparent 100%);
}

.hero {
  overflow: visible;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -300px;
  left: 0;
  z-index: 0;
  height: 380px;
  background: linear-gradient(180deg, transparent, #000 92%);
  content: "";
  pointer-events: none;
}

.hero-inner {
  padding-bottom: 82px;
}

.hero-iphone-pill {
  width: min(100%, 650px);
  min-height: 64px;
  margin-top: -28px;
  padding: 10px 24px;
  border-radius: 999px;
}

.hero-iphone-pill > span {
  display: grid;
  gap: 2px;
  text-align: left;
}

.hero-iphone-pill strong {
  font-size: 15px;
  white-space: normal;
}

.hero-iphone-pill small {
  font-size: 11px;
}

.platform-brand-icon-finder,
.device-button img[src*="finder-monochrome"],
.device-screen-platform img[src*="finder-monochrome"] {
  border-radius: 0;
  filter: none;
}

.device-button.is-active img[src*="finder-monochrome"] {
  filter: invert(1);
}

.device-visual {
  overflow: hidden;
}

.device-stage {
  align-items: center;
  padding-bottom: 118px;
}

.device-hardware {
  width: min(78%, 520px);
  transform: perspective(1000px) rotateX(4deg) rotateY(-6deg) translateY(-24px);
}

.device-hardware-screen {
  border-radius: 28px 28px 12px 12px;
  background:
    radial-gradient(circle at 50% 47%, rgba(119, 236, 223, .09), transparent 28%),
    #030303;
}

.device-screen-waves {
  position: absolute;
  inset: -25%;
  background:
    repeating-radial-gradient(
      ellipse at 50% 50%,
      transparent 0 18px,
      rgba(255, 255, 255, .07) 19px 20px,
      transparent 21px 40px
    );
  opacity: .7;
  transform: rotate(-6deg) scale(1.08);
  animation: device-screen-drift 9s ease-in-out infinite alternate;
}

.device-hardware-screen .device-frame-logo {
  width: 132px;
  height: 132px;
}

.device-hardware-screen .device-frame-logo img {
  transform: scale(1.54);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, .66));
}

.device-hardware-base {
  height: 20px;
}

.device-stage > .device-frame {
  right: auto;
  bottom: 6%;
  left: 50%;
  width: min(78%, 520px);
  min-width: 0;
  padding: 18px 22px 20px;
  grid-template-columns: 1fr;
  place-items: center;
  transform: translateX(-50%);
  text-align: center;
}

.device-stage > .device-frame small {
  grid-column: 1;
}

.device-stage > .device-frame .button {
  width: min(100%, 220px);
  margin-top: 10px;
  grid-column: 1;
  grid-row: auto;
  justify-self: center;
}

.reviews-heading {
  max-width: 1280px;
}

.reviews-heading .eyebrow {
  min-height: 46px;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, .08),
    inset 0 1px #fff;
}

.reviews-title-row {
  display: grid;
  width: 100%;
  grid-template-columns: 120px minmax(0, 1fr) 120px;
  align-items: center;
  gap: 24px;
}

.reviews-title-row h2 {
  text-align: center;
}

.reviews-laurel {
  display: block;
  color: #727272;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 106px;
  font-weight: 400;
  line-height: .7;
  opacity: .76;
  transform: rotate(-40deg);
}

.reviews-laurel-right {
  transform: scaleX(-1) rotate(-40deg);
}

.reviews-link {
  box-shadow:
    0 18px 44px rgba(0, 0, 0, .08),
    inset 0 1px #fff,
    inset 0 -1px rgba(0, 0, 0, .05);
}

.review-card {
  width: 470px;
  min-height: 188px;
  padding: 25px 28px 22px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 22% 0%, rgba(255, 255, 255, .98), transparent 48%),
    linear-gradient(138deg, #fdfdfd, #ededed);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, .08),
    inset 0 1px #fff,
    inset 0 -1px rgba(0, 0, 0, .06);
}

.review-card p {
  color: #666;
  font-size: 16px;
}

.review-avatar {
  background: linear-gradient(145deg, #f7f7f7, #dedede);
}

@keyframes device-screen-drift {
  0% {
    transform: translate3d(-1.5%, -1%, 0) rotate(-7deg) scale(1.08);
  }
  100% {
    transform: translate3d(1.5%, 1%, 0) rotate(-4deg) scale(1.12);
  }
}

@media (max-width: 1024px) {
  .reviews-title-row {
    grid-template-columns: 72px minmax(0, 1fr) 72px;
  }

  .reviews-laurel {
    font-size: 76px;
  }
}

@media (max-width: 780px) {
  #signal-field {
    height: 980px;
  }

  .hero::after {
    bottom: -220px;
    height: 300px;
  }

  .hero-inner {
    gap: 34px;
    padding-bottom: 72px;
  }

  .hero-iphone-pill {
    min-height: 60px;
    margin-top: -10px;
    padding-inline: 18px;
  }

  .hero-iphone-pill strong {
    font-size: 12px;
  }

  .device-stage {
    padding-bottom: 128px;
  }

  .device-hardware {
    width: 82%;
    transform: perspective(800px) rotateX(4deg) rotateY(-5deg) translateY(-32px);
  }

  .device-hardware-screen .device-frame-logo {
    width: 88px;
    height: 88px;
  }

  .device-stage > .device-frame {
    right: auto;
    bottom: 5%;
    left: 50%;
    width: calc(100% - 36px);
    transform: translateX(-50%);
  }

  .reviews-title-row {
    display: block;
  }

  .reviews-laurel {
    display: none;
  }

  .review-card {
    width: 310px;
    min-height: 188px;
  }
}

@media (max-width: 390px) {
  .hero-iphone-pill {
    align-items: center;
  }

  .hero-iphone-pill img {
    width: 25px;
    height: 25px;
  }

  .device-stage > .device-frame {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .device-stage > .device-frame .button {
    width: 100%;
    margin-top: 10px;
    grid-column: 1;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .device-screen-waves {
    animation: none !important;
  }
}

/* 2026-08-04: keep the public landing in the VOne black/silver system. */
.light-section {
  border: 1px solid rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .07), transparent 28%),
    linear-gradient(180deg, #111 0%, #050505 42%, #0c0c0c 100%);
  color: #f7f7f7;
  box-shadow:
    0 -30px 70px rgba(0, 0, 0, .48),
    inset 0 1px rgba(255, 255, 255, .1);
}

.light-heading .eyebrow,
.forum-panel .eyebrow {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .065);
  color: rgba(255, 255, 255, .86);
  box-shadow: inset 0 1px rgba(255, 255, 255, .08);
}

.light-heading h2,
.forum-panel h2 {
  color: #f7f7f7;
}

.light-heading > p,
.forum-panel p,
.faq-content {
  color: rgba(255, 255, 255, .58);
}

.reviews-link,
.faq-cta,
.forum-panel {
  border-color: rgba(255, 255, 255, .13);
  background: rgba(18, 18, 18, .86);
  color: #f7f7f7;
  box-shadow:
    0 22px 52px rgba(0, 0, 0, .34),
    inset 0 1px rgba(255, 255, 255, .08);
}

.reviews-link:hover {
  border-color: rgba(255, 255, 255, .28);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, .44),
    inset 0 1px rgba(255, 255, 255, .12);
}

.review-card {
  border-color: rgba(255, 255, 255, .13);
  background:
    radial-gradient(ellipse at 18% 0%, rgba(255, 255, 255, .09), transparent 44%),
    linear-gradient(145deg, rgba(27, 27, 27, .98), rgba(10, 10, 10, .94));
  color: #f7f7f7;
  box-shadow:
    0 24px 58px rgba(0, 0, 0, .38),
    inset 0 1px rgba(255, 255, 255, .09);
}

.review-card p {
  color: rgba(255, 255, 255, .66);
}

.review-card-meta strong,
.faq-cta > span {
  color: #f7f7f7;
}

.review-card-meta small,
.faq-cta p {
  color: rgba(255, 255, 255, .48);
}

.review-avatar {
  border-color: rgba(255, 255, 255, .14);
  background: linear-gradient(145deg, #2a2a2a, #151515);
  color: rgba(255, 255, 255, .72);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, .32),
    inset 0 1px rgba(255, 255, 255, .09);
}

.faq-list,
.faq-item {
  border-color: rgba(255, 255, 255, .18);
}

.faq-button {
  color: #f2f2f2;
}

.faq-button i::before,
.faq-button i::after {
  background: rgba(255, 255, 255, .72);
}

.forum-panel .button-black {
  border-color: #fff;
  background: #fff;
  color: #111;
}

@media (max-width: 1199px) {
  .site-header,
  .site-header.is-scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-actions {
    width: auto;
    height: 100vh;
    min-height: 0;
    max-height: 100vh;
  }
}

/* 2026-08-04: mobile signal waves, device-aware install card and static reviews. */
html,
body,
.vone-site-shell,
.vone-site-shell main,
.hero,
.advantages-section,
.product-section,
.devices-section,
.pricing-section,
.final-section {
  background-color: #000;
}

@keyframes vone-page-appear {
  from { opacity: 0; }
  to { opacity: 1; }
}

.vone-site-shell {
  animation: vone-page-appear .42s ease-out both;
}

.hero {
  overflow: hidden;
}

#signal-field {
  z-index: 0;
  opacity: .24;
  filter: none;
  mix-blend-mode: screen;
}

.hero-wave-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .78;
  transform: scale(1.08);
}

.hero-wave-field g {
  transform-origin: center;
  animation: vone-wave-drift 12s ease-in-out infinite alternate;
}

.hero-texture {
  z-index: 0;
  opacity: .12;
}

.hero::after {
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 220px;
  background: linear-gradient(180deg, transparent, #000 88%);
}

.hero-inner {
  z-index: 2;
}

.advantages-section {
  margin-top: 0;
  border: 0;
  isolation: isolate;
  box-shadow: none;
}

.device-detected {
  display: inline-flex;
  min-height: 34px;
  padding: 7px 13px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 570;
  letter-spacing: .01em;
}

.scenarios-section {
  padding: 96px 0 104px;
  gap: 54px;
  overflow: hidden;
  border-radius: 48px 48px 0 0;
  background: #f7f7f5;
  color: #111;
}

.scenarios-section .light-heading .eyebrow {
  border-color: #d7d7d4;
  background: rgba(255, 255, 255, .74);
  color: #242424;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, .065),
    inset 0 1px #fff;
}

.scenarios-section .light-heading h2 {
  color: #151515;
}

.scenarios-section .light-heading > p {
  color: #686868;
}

.scenarios-section .reviews-laurel {
  color: #5a5a5a;
}

.scenarios-section .reviews-link {
  border-color: #d3d3d0;
  background: rgba(255, 255, 255, .8);
  color: #1e1e1e;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, .07),
    inset 0 1px #fff;
}

.reviews {
  display: grid;
  width: var(--page-width);
  max-width: var(--page-max);
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
}

.reviews-track,
.reviews-group {
  display: contents;
  transform: none !important;
}

.review-card {
  width: auto;
  min-height: 224px;
  margin: 0;
  padding: 26px;
  border-color: #d9d9d6;
  border-radius: 30px;
  background:
    radial-gradient(ellipse at 12% 0%, #fff, transparent 48%),
    linear-gradient(145deg, #fff, #ececea);
  color: #151515;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, .075),
    inset 0 1px #fff;
}

.review-card::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, .52), transparent 44% 78%, rgba(0, 0, 0, .025));
}

.review-card p {
  color: #5f5f5f;
}

.review-card-meta strong {
  color: #272727;
}

.review-card-meta small {
  color: #929292;
}

.review-avatar {
  border-color: rgba(0, 0, 0, .09);
  background: linear-gradient(145deg, #fff, #dededb);
  color: #444;
  box-shadow:
    0 9px 20px rgba(0, 0, 0, .08),
    inset 0 1px #fff;
}

@keyframes vone-wave-drift {
  from { transform: translate3d(-1.4%, -1%, 0) scale(1.01); }
  to { transform: translate3d(1.4%, 1%, 0) scale(1.035); }
}

@media (max-width: 1024px) {
  .reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header,
  .site-header.is-scrolled {
    border-bottom-color: rgba(255, 255, 255, .1);
    background: rgba(0, 0, 0, .94);
  }

  #signal-field {
    display: none;
  }

  .hero-wave-field {
    inset: 52px -58% -28px -58%;
    width: 216%;
    height: calc(100% - 24px);
    opacity: .88;
    transform: rotate(-5deg) scale(1.02);
  }

  .hero-texture {
    display: none;
  }

  .hero::before {
    background:
      radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .045), transparent 35%),
      #000;
  }

  .hero::after {
    bottom: 0;
    height: 170px;
    background: linear-gradient(180deg, transparent, #000 86%);
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .advantages-section {
    padding-top: 78px;
  }

  .devices-layout .device-visual {
    grid-row: auto;
  }

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

  .device-button {
    min-height: 60px;
    padding: 11px 13px;
  }

  .device-button i {
    display: none;
  }

  .device-button:not(.is-active) img[src*="apple"],
  .device-button:not(.is-active) img[src*="finder-monochrome"] {
    filter: invert(1) opacity(.84);
  }

  .device-button.is-active img[src*="apple"],
  .device-button.is-active img[src*="finder-monochrome"] {
    filter: none;
  }

  .device-visual,
  .device-stage {
    min-height: 410px;
  }

  .device-visual {
    width: 100%;
    border-radius: 34px;
    background:
      repeating-radial-gradient(ellipse at 50% 28%, transparent 0 20px, rgba(255, 255, 255, .055) 21px 22px, transparent 23px 42px),
      radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .08), transparent 38%),
      #050505;
  }

  .device-stage {
    display: flex;
    padding: 20px;
    align-items: stretch;
  }

  .device-hardware {
    display: none;
  }

  .device-stage > .device-frame {
    position: relative;
    inset: auto;
    display: grid;
    width: 100%;
    min-width: 0;
    min-height: 368px;
    padding: 34px 22px;
    align-content: center;
    gap: 14px;
    border-radius: 28px;
    background: rgba(10, 10, 10, .84);
    transform: none;
    animation: none;
  }

  .device-stage > .device-frame .button {
    width: min(100%, 284px);
    min-height: 56px;
    margin-top: 12px;
  }

  .device-frame strong {
    font-size: 34px;
  }

  .device-detected {
    margin-bottom: 4px;
    justify-self: center;
  }

  .scenarios-section {
    padding: 70px 0 76px;
    gap: 42px;
    border-radius: 32px 32px 0 0;
  }

  .reviews-heading {
    gap: 20px;
  }

  .reviews {
    display: flex;
    width: 100%;
    max-width: none;
    padding: 0 20px 22px;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .reviews::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    width: auto;
    min-height: 226px;
    flex: 0 0 calc(100vw - 64px);
    padding: 24px;
    border-radius: 26px;
    scroll-snap-align: center;
  }

  .review-card p {
    color: #5c5c5c;
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .device-button {
    padding-inline: 11px;
    gap: 8px;
  }

  .device-button img,
  .device-button svg {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
  }

  .review-card {
    flex-basis: calc(100vw - 54px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vone-site-shell,
  .hero-wave-field g {
    animation: none !important;
  }
}

/* 2026-08-04 v3: flowing hero field, one-action download, review showcase. */
.hero-wave-field {
  opacity: .8;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, .055));
}

.hero-wave-field g {
  animation: vone-wave-field-orbit 17s cubic-bezier(.45, 0, .55, 1) infinite alternate;
  will-change: transform;
}

.hero-wave-field path {
  transform-box: fill-box;
  transform-origin: center;
  animation: vone-wave-flow 8.4s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero-wave-field path:nth-child(2n) { animation-delay: -1.2s; }
.hero-wave-field path:nth-child(3n) { animation-delay: -2.7s; }
.hero-wave-field path:nth-child(4n) { animation-delay: -4.1s; }
.hero-wave-field path:nth-child(5n) { animation-delay: -5.6s; }

@keyframes vone-wave-field-orbit {
  0% { transform: translate3d(-2.2%, -1.6%, 0) rotate(-.8deg) scale(1.03); }
  50% { transform: translate3d(.6%, 1.2%, 0) rotate(.35deg) scale(1.075); }
  100% { transform: translate3d(2.4%, -.4%, 0) rotate(.9deg) scale(1.045); }
}

@keyframes vone-wave-flow {
  0%, 100% { opacity: .32; transform: translate3d(-14px, 7px, 0) scaleY(.94); }
  45% { opacity: .92; transform: translate3d(10px, -9px, 0) scaleY(1.075); }
  70% { opacity: .58; transform: translate3d(18px, 3px, 0) scaleY(1.025); }
}

.device-platform-note {
  display: none;
}

.device-stage > .device-frame .button {
  gap: 11px;
}

.device-stage > .device-frame .button img,
.device-stage > .device-frame .button svg {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
}

.scenarios-section {
  padding-top: 74px;
  gap: 46px;
  border-radius: 58px 58px 0 0;
  background: #fff;
}

.reviews-heading {
  max-width: 980px;
  margin-inline: auto;
  justify-items: center;
  gap: 26px;
  text-align: center;
}

.scenarios-section .reviews-heading .eyebrow {
  min-height: 58px;
  padding: 13px 28px;
  border: 0;
  background: linear-gradient(145deg, #f7f7f7, #e8e8e8);
  color: #343434;
  font-size: 18px;
  font-weight: 520;
  box-shadow:
    0 16px 32px rgba(0, 0, 0, .08),
    inset 0 1px #fff;
}

.reviews-title-row {
  display: grid;
  width: 100%;
  grid-template-columns: 104px minmax(0, 1fr) 104px;
  align-items: center;
  gap: 24px;
}

.reviews-title-row h2 {
  margin: 0;
  font-size: clamp(54px, 6vw, 78px);
  font-weight: 560;
  line-height: .98;
  letter-spacing: -.055em;
}

.reviews-laurel {
  display: grid;
  color: #3d3d3d;
}

.reviews-laurel svg {
  display: block;
  width: 100%;
  height: auto;
}

.reviews-laurel-right {
  transform: scaleX(-1);
}

.scenarios-section .reviews-heading > p {
  max-width: 800px;
  margin: 0;
  color: #606060;
  font-size: 19px;
  line-height: 1.48;
}

.reviews {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  display: flex;
  min-height: 286px;
  padding: 28px;
  flex-direction: column;
  border: 1px solid #dedede;
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 0%, #fff 0, transparent 46%),
    linear-gradient(145deg, #fff, #f0f0f0);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, .08),
    inset 0 1px #fff;
}

.review-card p {
  margin: 0 0 26px;
  color: #7a7a7a;
  font-size: 17px;
  line-height: 1.45;
}

.review-card-meta {
  margin-top: auto;
}

.review-avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border: 0;
  background: linear-gradient(150deg, #88eaff, #159ec8 62%, #08739e);
  color: #fff;
  box-shadow:
    0 12px 24px rgba(0, 148, 195, .22),
    inset 0 1px rgba(255, 255, 255, .78);
}

.review-avatar img,
.review-avatar svg {
  width: 27px;
  height: 27px;
  filter: invert(1);
}

.review-card-meta strong {
  font-size: 18px;
}

.review-card-meta small {
  color: #a0a0a0;
  font-size: 13px;
}

.review-card-foot {
  display: flex;
  margin-top: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #a0a0a0;
  font-size: 14px;
}

.review-rating {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.review-rating b {
  color: #ff7043;
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 780px) {
  .hero-wave-field {
    inset: 52px -70% -22px -70%;
    width: 240%;
    height: calc(100% - 18px);
    opacity: .92;
    transform: rotate(-7deg) scale(1.04);
  }

  .hero-wave-field g {
    animation-duration: 13s;
  }

  .hero-wave-field path {
    animation-duration: 6.8s;
  }

  .devices-layout {
    display: block;
  }

  .devices-copy {
    display: none;
  }

  .devices-layout .device-visual {
    width: 100%;
    min-height: 548px;
    margin: 0 auto;
    border-radius: 46px;
    background:
      radial-gradient(circle at 50% 24%, rgba(255, 255, 255, .1), transparent 34%),
      #020202;
  }

  .device-visual,
  .device-stage {
    min-height: 548px;
  }

  .device-stage {
    display: block;
    padding: 0;
  }

  [data-device-visual][data-platform] .device-hardware {
    position: absolute;
    top: 72px;
    left: 50%;
    display: block;
    width: 108%;
    transform: translateX(-50%) perspective(900px) rotateX(4deg) rotateY(-7deg) rotateZ(3deg);
  }

  .device-hardware-screen {
    border-radius: 28px 28px 12px 12px;
  }

  .device-hardware-screen .device-frame-logo {
    width: 104px;
    height: 104px;
  }

  .device-screen-platform {
    display: none;
  }

  .device-stage > .device-frame {
    position: absolute;
    top: 226px;
    right: auto;
    bottom: auto;
    left: 50%;
    display: block;
    width: min(84%, 330px);
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: translateX(-50%);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .device-stage > .device-frame > :not(.button) {
    display: none;
  }

  .device-stage > .device-frame .button {
    display: flex;
    width: 100%;
    min-height: 70px;
    margin: 0;
    padding: 16px 24px;
    justify-content: center;
    gap: 14px;
    border-radius: 999px;
    color: #111;
    font-size: 21px;
    font-weight: 620;
    box-shadow:
      0 18px 44px rgba(0, 0, 0, .44),
      inset 0 1px #fff;
  }

  .device-stage > .device-frame .button img,
  .device-stage > .device-frame .button svg {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
  }

  .device-platform-note {
    position: absolute;
    right: 22px;
    bottom: 24px;
    left: 22px;
    display: block;
    min-height: 58px;
    margin: 0;
    padding: 12px 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: linear-gradient(145deg, rgba(38, 38, 40, .94), rgba(9, 9, 10, .94));
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    line-height: 32px;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-shadow: inset 0 1px rgba(255, 255, 255, .1);
  }

  .scenarios-section {
    padding: 38px 0 52px;
    gap: 30px;
    border-radius: 30px 30px 0 0;
  }

  .reviews-heading {
    gap: 22px;
  }

  .scenarios-section .reviews-heading .eyebrow {
    min-height: 54px;
    padding: 12px 24px;
    font-size: 17px;
  }

  .reviews-title-row {
    grid-template-columns: 62px minmax(0, 1fr) 62px;
    gap: 5px;
  }

  .reviews-title-row h2 {
    font-size: clamp(38px, 11.4vw, 48px);
    line-height: .98;
  }

  .reviews-laurel {
    color: #424242;
  }

  .scenarios-section .reviews-heading > p {
    max-width: 350px;
    color: #5f5f5f;
    font-size: 16px;
    line-height: 1.42;
  }

  .reviews {
    display: grid;
    width: 100%;
    max-width: none;
    padding: 18px 18px 36px;
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-template-rows: repeat(2, 258px);
    grid-auto-columns: min(76vw, 288px);
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .review-card {
    width: auto;
    min-height: 0;
    height: 258px;
    padding: 22px;
    border-radius: 32px;
    scroll-snap-align: start;
  }

  .review-card p {
    margin-bottom: 18px;
    color: #8a8a8a;
    font-size: 14px;
    line-height: 1.4;
  }

  .review-avatar {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .review-card-meta strong {
    font-size: 16px;
  }

  .review-card-meta small,
  .review-card-foot {
    font-size: 12px;
  }

  .reviews-group .review-card:nth-child(2) {
    transform: translateY(-8px);
  }
}

@media (max-width: 360px) {
  .reviews-title-row {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
  }

  .reviews-title-row h2 {
    font-size: 37px;
  }

  .device-platform-note {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-wave-field g,
  .hero-wave-field path {
    animation: none !important;
  }
}

/* 2026-08-04 v4: clear iOS glass header without a dark scrim. */
.site-header,
.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .035);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, .08),
    inset 0 -1px rgba(255, 255, 255, .08),
    inset 0 1px rgba(255, 255, 255, .06);
  -webkit-backdrop-filter: blur(34px) saturate(180%);
  backdrop-filter: blur(34px) saturate(180%);
}

.site-header .brand-mark {
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 1199px) {
  .site-header,
  .site-header.is-scrolled {
    -webkit-backdrop-filter: blur(34px) saturate(180%);
    backdrop-filter: blur(34px) saturate(180%);
  }
}

@media (max-width: 780px) {
  .site-header,
  .site-header.is-scrolled {
    height: calc(72px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    border-bottom-color: rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .035);
  }

  .menu-toggle {
    border: 1px solid rgba(255, 255, 255, .19);
    background: rgba(255, 255, 255, .065);
    box-shadow:
      0 10px 28px rgba(0, 0, 0, .09),
      inset 0 1px rgba(255, 255, 255, .13),
      inset 0 -1px rgba(255, 255, 255, .045);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    backdrop-filter: blur(24px) saturate(180%);
  }
}

/* 2026-08-04 v6: final mobile contour and laptop cascade lock. */
#signal-field {
  display: block;
  opacity: .82;
  filter: blur(4px) brightness(1.12) contrast(1.03);
  mix-blend-mode: normal;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .8) 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .8) 50%, transparent 100%);
}

.hero-wave-field {
  opacity: 0;
  filter: none;
}

.hero-wave-field g,
.hero-wave-field path {
  animation: none !important;
}

@media (max-width: 780px) {
  #signal-field {
    display: block;
    height: 100%;
  }

  .hero-wave-field {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: none;
  }

  .devices-layout .device-visual {
    width: 100%;
    max-width: 351px;
    min-height: 0;
    aspect-ratio: 1;
    margin: 0 auto 70px;
    overflow: visible;
    border-radius: 40px;
    background:
      radial-gradient(circle at 50% 36%, rgba(255, 255, 255, .085), transparent 36%),
      #020202;
  }

  .device-visual,
  .device-stage {
    min-height: 0;
  }

  .device-stage {
    display: block;
    aspect-ratio: 1;
    padding: 0;
    overflow: hidden;
    border-radius: inherit;
  }

  [data-device-visual][data-platform] .device-hardware {
    position: absolute;
    top: 22px;
    left: 50%;
    z-index: 2;
    display: block;
    width: 91%;
    max-width: 320px;
    transform: translateX(-50%) perspective(900px) rotateX(2deg) rotateY(-5deg) rotateZ(3.5deg);
  }

  .device-hardware-screen {
    aspect-ratio: 1.6;
    border-radius: 24px 24px 8px 8px;
  }

  .device-hardware-screen .device-frame-logo {
    width: 88px;
    height: 88px;
  }

  .device-hardware-screen .device-frame-logo img {
    transform: none;
  }

  .device-screen-platform {
    display: none;
  }

  .device-hardware-base {
    position: relative;
    display: block;
    width: 110%;
    height: 74px;
    margin: -2px 0 0 -5%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 0 0 26px 26px;
    background:
      linear-gradient(90deg, transparent 7%, rgba(255, 255, 255, .08) 50%, transparent 93%),
      linear-gradient(180deg, #59595c 0, #262628 26%, #0a0a0b 100%);
    clip-path: polygon(4% 0, 96% 0, 100% 82%, 94% 100%, 6% 100%, 0 82%);
    box-shadow: 0 18px 26px rgba(0, 0, 0, .5);
  }

  .device-stage > .device-frame {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 48px;
    left: 50%;
    z-index: 4;
    display: block;
    width: min(66%, 232px);
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: translateX(-50%);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .device-stage > .device-frame > :not(.button) {
    display: none;
  }

  .device-stage > .device-frame .button {
    display: flex;
    width: 100%;
    min-height: 68px;
    margin: 0;
    padding: 17px 20px;
    justify-content: center;
    gap: 12px;
    border-radius: 999px;
    color: #111;
    font-size: 20px;
    font-weight: 620;
    white-space: nowrap;
    box-shadow:
      0 18px 44px rgba(0, 0, 0, .44),
      inset 0 1px #fff;
  }

  .device-platform-note {
    position: absolute;
    top: calc(100% + 13px);
    right: 5%;
    bottom: auto;
    left: 5%;
    display: block;
    min-height: 48px;
    margin: 0;
    padding: 10px 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .055);
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    line-height: 28px;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-shadow:
      inset 0 1px rgba(255, 255, 255, .1),
      0 12px 28px rgba(0, 0, 0, .1);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
    backdrop-filter: blur(24px) saturate(170%);
  }

  .devices-section {
    padding-bottom: 20px;
  }

  .pricing-section {
    padding-top: 24px;
  }
}

/* 2026-08-04 v7: single-render laptop and reference review marquees. */
.devices-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 64px;
}

.device-buttons {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.device-visual {
  width: min(100%, 700px);
  min-height: 600px;
  justify-self: end;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 50px;
  background: linear-gradient(90deg, #242424 0%, #050505 18%, #000 50%, #050505 82%, #242424 100%);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, .28),
    inset 0 1px rgba(255, 255, 255, .1);
}

.device-stage {
  display: block;
  height: 600px;
  min-height: 600px;
  overflow: hidden;
  border-radius: inherit;
}

.device-laptop-render {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: auto;
  height: 119%;
  max-width: none;
  object-fit: contain;
  object-position: center top;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.device-stage > .device-frame {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 48px;
  left: 50%;
  z-index: 4;
  display: block;
  width: max-content;
  height: auto;
  aspect-ratio: auto;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.device-stage > .device-frame::before,
.device-stage > .device-frame > :not(.button) {
  display: none;
}

.device-stage > .device-frame .button {
  display: flex;
  width: max-content;
  min-width: 0;
  min-height: 74px;
  margin: 0;
  padding: 20px 25px;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  color: #111;
  font-size: 24px;
  font-weight: 620;
  white-space: nowrap;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, .44),
    inset 0 1px #fff;
}

.device-stage > .device-frame .button img,
.device-stage > .device-frame .button svg {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.scenarios-section {
  padding: 96px 0;
  gap: 64px;
  border-radius: 50px;
  background: #fff;
}

.reviews-heading {
  max-width: 1040px;
  gap: 24px;
}

.scenarios-section .reviews-heading .eyebrow {
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid #e7e7e7;
  border-radius: 50px;
  background: linear-gradient(90deg, #dcdcdc 0%, #fff 20% 80%, #dcdcdc 100%);
  color: #333;
  font-size: 18px;
  font-weight: 400;
  box-shadow: none;
}

.reviews-title-row {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 137px;
  align-items: center;
  justify-content: center;
}

.reviews-title-row h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  background: linear-gradient(180deg, #a0a0a0 13%, #333 94%);
  background-clip: text;
  color: transparent;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.09;
  letter-spacing: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reviews-laurel {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 137px;
  height: 137px;
  color: #555;
  transform: translateY(-50%);
}

.reviews-laurel svg {
  width: 100%;
  height: 100%;
}

.reviews-laurel-right {
  right: 0;
  left: auto;
  transform: translateY(-50%) scaleX(-1);
}

.scenarios-section .reviews-heading > p {
  max-width: 920px;
  color: #5c5c5c;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.reviews {
  display: grid;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  grid-template-columns: 1fr;
  grid-template-rows: none;
  gap: 32px;
  overflow: visible;
}

.reviews-track {
  display: block;
  width: 100%;
  overflow: hidden;
  opacity: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 100px, #000 calc(100% - 100px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 100px, #000 calc(100% - 100px), transparent);
}

.reviews-track-muted {
  opacity: .7;
}

.reviews-marquee {
  display: flex;
  width: max-content;
  transform: translate3d(0, 0, 0);
  animation: vone-reviews-left var(--reviews-duration, 100s) linear infinite;
  will-change: transform;
}

.reviews-track[data-direction="right"] .reviews-marquee {
  animation-name: vone-reviews-right;
}

.reviews-track:hover .reviews-marquee,
.reviews-track:focus-within .reviews-marquee,
.reviews.is-offscreen .reviews-marquee,
.reviews.is-page-hidden .reviews-marquee {
  animation-play-state: paused;
  will-change: auto;
}

.reviews-group {
  display: flex;
  width: max-content;
  padding-right: 24px;
  align-items: stretch;
  gap: 24px;
  transform: none !important;
}

.review-card {
  box-sizing: border-box;
  display: block;
  width: 500px;
  min-height: 0;
  height: auto;
  margin: 0;
  padding: 24px;
  flex: 0 0 500px;
  border: 1px solid #dadada;
  border-radius: 32px;
  background: linear-gradient(284deg, #dedede 0%, #fff 20% 80%, #dedede 100%);
  color: #333;
  box-shadow: none;
}

.review-card::before {
  display: none;
}

.review-card p {
  min-height: 43px;
  margin: 0;
  color: #5c5c5c;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
}

.review-card-meta {
  display: grid;
  margin-top: 20px;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: linear-gradient(150deg, #88eaff, #159ec8 62%, #08739e);
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  box-shadow: none;
}

.review-author {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.review-author strong {
  overflow: hidden;
  color: #333;
  font-size: 18px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-author small {
  color: #9c9c9c;
  font-size: 16px;
  font-weight: 400;
}

.review-author em {
  color: #5fbad3;
  font-style: normal;
}

.review-score {
  display: grid;
  justify-items: end;
  gap: 3px;
  color: #9c9c9c;
  font-size: 16px;
}

.review-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #555;
  font-size: 14px;
  font-weight: 500;
}

.review-rating b {
  color: #f46c36;
  font-size: 21px;
  line-height: 1;
}

@keyframes vone-reviews-left {
  to { transform: translate3d(calc(-1 * var(--reviews-shift, 0px)), 0, 0); }
}

@keyframes vone-reviews-right {
  from { transform: translate3d(calc(-1 * var(--reviews-shift, 0px)), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@media (max-width: 1280px) and (min-width: 1025px) {
  .device-visual,
  .device-stage {
    height: 450px;
    min-height: 450px;
  }

  .device-stage > .device-frame .button {
    min-height: 70px;
    font-size: 20px;
  }
}

@media (max-width: 1024px) and (min-width: 781px) {
  .devices-layout {
    grid-template-columns: 1fr;
  }

  .device-visual {
    width: 400px;
    min-height: 400px;
    justify-self: center;
    grid-row: 1;
  }

  .device-stage {
    height: 400px;
    min-height: 400px;
  }

  .devices-copy {
    grid-row: 2;
  }
}

@media (max-width: 780px) {
  .devices-layout .device-visual {
    width: min(320px, 82vw);
    max-width: none;
    min-height: 0;
    aspect-ratio: 1;
    margin: 0 auto 70px;
    overflow: visible;
    border-width: 2px;
    border-radius: 50px;
  }

  .device-stage {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
    overflow: hidden;
  }

  .device-laptop-render {
    left: 50%;
    width: auto;
    height: 119%;
    transform: translateX(-50%);
  }

  .device-stage > .device-frame {
    bottom: 48px;
  }

  .device-stage > .device-frame .button {
    width: max-content;
    min-height: 72px;
    padding: 20px 25px;
    gap: 12px;
    font-size: 20px;
  }

  .device-stage > .device-frame .button img,
  .device-stage > .device-frame .button svg {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .scenarios-section {
    padding: 48px 0;
    gap: 48px;
    border-radius: 50px;
  }

  .reviews-heading {
    gap: 24px;
  }

  .scenarios-section .reviews-heading .eyebrow {
    min-height: 50px;
    padding: 14px 20px;
    font-size: 16px;
  }

  .reviews-title-row {
    width: 100%;
    min-height: 120px;
  }

  .reviews-title-row h2 {
    width: 250px;
    font-size: 32px;
    line-height: 1.09;
    letter-spacing: normal;
    text-align: center;
  }

  .reviews-laurel {
    top: calc(50% + 6px);
    left: 0;
    width: 100px;
    height: 100px;
  }

  .reviews-laurel-right {
    right: 0;
    left: auto;
  }

  .scenarios-section .reviews-heading > p {
    max-width: 360px;
    font-size: 16px;
  }

  .reviews {
    display: grid;
    width: 100%;
    max-width: none;
    padding: 0;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-columns: auto;
    gap: 18px;
    overflow: visible;
  }

  .reviews-track {
    width: 100%;
    padding: 0;
    overflow: hidden;
    scroll-snap-type: none;
  }

  .reviews-group {
    padding-right: 12px;
    gap: 12px;
  }

  .review-card {
    width: 250px;
    min-height: 0;
    height: auto;
    padding: 12px;
    flex: 0 0 250px;
    border-radius: 32px;
    scroll-snap-align: none;
  }

  .review-card p {
    min-height: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.28;
  }

  .review-card-meta {
    margin-top: 18px;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }

  .review-avatar {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .review-author strong {
    font-size: 16px;
  }

  .review-author small {
    font-size: 14px;
  }

  .review-score {
    grid-column: 2;
    justify-items: start;
    font-size: 14px;
  }

  .reviews-group .review-card:nth-child(2) {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }

  .reviews-track::-webkit-scrollbar {
    display: none;
  }

  .reviews-marquee {
    animation: none !important;
    transform: none !important;
    will-change: auto;
  }

  [data-reviews-clone] {
    display: none;
  }
}

/* 2026-08-07: keep desktop pill alignment without changing the mobile composition. */
.hero-iphone-pill {
  width: min(100%, 420px);
  max-width: 420px;
  box-sizing: border-box;
}

.devices-copy .iphone-client-pill {
  width: 100%;
  max-width: none;
  border-radius: 999px;
}

/* Compact monochrome tariff geometry shared with the account. */
.tariff-panel {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}

.tariff-card,
.tariff-card.is-recommended {
  min-height: 230px;
  padding: 18px;
  grid-template-rows: auto 1fr auto;
  align-content: initial;
  gap: 14px;
  border-color: rgba(255, 255, 255, .2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 5%, rgba(255, 255, 255, .1), transparent 34%),
    linear-gradient(150deg, #171717, #070707 74%);
}

.tariff-card.is-recommended {
  border-color: rgba(255, 255, 255, .38);
  background:
    radial-gradient(circle at 76% 4%, rgba(255, 255, 255, .17), transparent 38%),
    linear-gradient(150deg, #242424, #090909 74%);
}

.tariff-card > .tariff-card-head {
  min-height: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.tariff-card .tariff-badge {
  justify-self: end;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(244, 244, 244, .66);
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .04);
}

.tariff-card > .tariff-card-summary {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
}

.tariff-card .tariff-price {
  margin: 0;
  font-size: clamp(30px, 2.25vw, 40px);
  font-weight: 580;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.tariff-card .tariff-limit {
  justify-self: end;
  margin-bottom: 5px;
  color: #777;
  font-size: 14px;
  text-align: right;
  white-space: nowrap;
}

.tariff-card .tariff-action {
  width: 100%;
  min-height: 48px;
  margin-top: 0;
}

@media (max-width: 1199px) {
  .tariff-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tariff-card,
  .tariff-card.is-recommended {
    min-height: 220px;
  }
}

@media screen and (max-width: 780px) {
  .tariff-panel {
    grid-template-columns: 1fr;
  }

  .tariff-card,
  .tariff-card.is-recommended {
    min-height: 210px;
    padding: 16px;
    border-radius: 24px;
  }
}

/* iPad and tablet: keep the complete desktop navigation and black contour hero. */
@media (min-width: 744px) and (max-width: 1199px) {
  html {
    scroll-padding-top: calc(136px + env(safe-area-inset-top));
  }

  body.menu-open {
    overflow: auto;
  }

  .site-header,
  .site-header.is-scrolled {
    height: calc(118px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
  }

  .header-inner {
    width: min(calc(100% - 32px), var(--page-max));
    height: 118px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: 64px 54px;
    column-gap: 20px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav {
    position: static;
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    width: 100%;
    height: 54px;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2.2vw, 26px);
    border-top: 1px solid rgba(255, 255, 255, .09);
    transform: none;
  }

  .nav a {
    font-size: clamp(12px, 1.55vw, 15px);
  }

  .header-actions {
    position: static;
    inset: auto;
    z-index: auto;
    grid-column: 2;
    grid-row: 1;
    width: auto;
    height: auto;
    min-height: 0;
    max-height: none;
    display: flex;
    visibility: visible;
    overflow: visible;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transition: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-actions .header-button {
    width: auto;
    min-height: 38px;
    margin: 0;
    padding: 8px 12px;
    flex: 0 0 auto;
    font-size: 13px;
  }

  .mobile-link,
  .menu-close,
  .menu-toggle {
    display: none;
  }

  .hero {
    min-height: 820px;
    overflow: visible;
    background: #000;
  }

  .hero::before {
    background:
      radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .045), transparent 38%),
      linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .54)),
      #000;
  }

  .hero::after {
    bottom: -300px;
    height: 380px;
    background: linear-gradient(180deg, transparent, #000 92%);
  }

  #signal-field {
    display: block;
    top: 0;
    bottom: auto;
    opacity: .82;
    filter: blur(4px) brightness(1.12) contrast(1.03);
    mix-blend-mode: normal;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .8) 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .8) 50%, transparent 100%);
  }

  /* iPadOS/WebKit can composite a filtered transparent WebGL canvas as a
     pale matte. Canvas2D already draws its own soft glow on Apple tablets. */
  .apple-tablet-canvas #signal-field {
    filter: none;
  }

  .hero-inner {
    width: min(90%, var(--hero-max));
    min-height: 820px;
    padding: 70px 0 82px;
    gap: 52px;
  }

  .trust-pill {
    min-height: 58px;
    padding: 8px 20px 8px 8px;
    gap: 14px;
    font-size: 18px;
  }

  .trust-icon {
    width: 40px;
    height: 40px;
  }

  .hero-copy {
    gap: 22px;
  }

  .hero h1 {
    max-width: 1100px;
    font-size: clamp(60px, 7vw, 72px);
    letter-spacing: -.065em;
    line-height: .98;
  }

  .hero-copy > p {
    max-width: 790px;
    color: var(--muted-dark);
    font-size: 18px;
    line-height: 1.45;
  }

  .hero-actions {
    width: auto;
    gap: 14px;
  }

  .hero-actions .button {
    min-height: 54px;
    padding: 15px 22px;
    font-size: 16px;
  }

  .platforms {
    gap: 18px;
  }

  .platforms > span {
    font-size: 14px;
  }

  .platform-icons {
    gap: 12px;
  }
}

/* Landscape tablets have enough room for the actual single-row desktop header. */
@media (min-width: 900px) and (max-width: 1199px) {
  html {
    scroll-padding-top: calc(94px + env(safe-area-inset-top));
  }

  .site-header,
  .site-header.is-scrolled {
    height: calc(76px + env(safe-area-inset-top));
  }

  .header-inner {
    width: min(calc(100% - 24px), var(--page-max));
    height: 76px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: 76px;
    column-gap: 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    gap: 10px;
    font-size: 20px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .nav {
    grid-column: 2;
    grid-row: 1;
    height: 76px;
    gap: clamp(8px, 1vw, 14px);
    border-top: 0;
  }

  .nav a {
    font-size: clamp(10px, 1.12vw, 13px);
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    gap: 6px;
  }

  .header-actions .header-button {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 12px;
  }
}
