:root {
  --ink: #111114;
  --muted: #6d7480;
  --line: rgba(20, 24, 31, 0.1);
  --paper: #f6f6f3;
  --white: #ffffff;
  --blue: #1677ff;
  --green: #18a874;
  --coral: #ff6b4a;
  --graphite: #31363f;
  --shadow: 0 26px 70px rgba(25, 29, 35, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(115deg, rgba(22, 119, 255, 0.12), transparent 32%),
    linear-gradient(245deg, rgba(24, 168, 116, 0.1), transparent 34%),
    linear-gradient(180deg, #fbfbf8 0%, #f4f2ed 52%, #ffffff 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(16, 17, 20, 0.035) 1px, transparent 1px);
  background-size: 100% 4px;
  opacity: 0.35;
}

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

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

button {
  font: inherit;
}

button.primary-button {
  border: 0;
  cursor: pointer;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 17, 20, 0.36);
  backdrop-filter: blur(20px) saturate(140%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.reservation-modal {
  position: relative;
  width: min(440px, 100%);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 34px 90px rgba(17, 17, 20, 0.26);
  text-align: center;
  transform: translateY(18px) scale(0.98);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal-backdrop.is-open .reservation-modal {
  transform: translateY(0) scale(1);
}

.reservation-modal img {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(20, 24, 31, 0.16);
}

.reservation-modal h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.08;
}

.modal-copy {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.wechat-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 22px;
  background: rgba(246, 246, 243, 0.86);
}

.wechat-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.wechat-card strong {
  color: var(--ink);
  font-size: 30px;
  letter-spacing: 0;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: rgba(17, 17, 20, 0.72);
  background: rgba(17, 17, 20, 0.06);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.modal-close:hover {
  color: var(--ink);
  background: rgba(17, 17, 20, 0.1);
}

body.modal-open {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition:
    top 220ms ease,
    width 220ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  width: min(980px, calc(100% - 28px));
}

.brand,
.nav-links,
.nav-actions,
.hero-actions,
.tabbar,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-height: 52px;
  padding: 7px 15px 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 42px rgba(20, 24, 31, 0.1);
  backdrop-filter: blur(22px) saturate(160%);
  font-size: 17px;
  font-weight: 700;
  pointer-events: auto;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.nav-links {
  gap: 4px;
  min-height: 48px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 14px 34px rgba(20, 24, 31, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
  font-size: 14px;
  color: rgba(17, 17, 20, 0.72);
  pointer-events: auto;
}

.nav-links a {
  min-height: 36px;
  padding: 9px 13px;
  border-radius: 999px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(17, 17, 20, 0.06);
}

.nav-actions {
  gap: 8px;
  min-height: 52px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 42px rgba(20, 24, 31, 0.1);
  backdrop-filter: blur(22px) saturate(160%);
  pointer-events: auto;
}

.nav-actions a {
  min-height: 40px;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.nav-download {
  color: white !important;
  background: var(--ink);
}

.nav-merchant {
  color: #0a6a47 !important;
  background: rgba(24, 168, 116, 0.12);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 30px;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(50px, 6.8vw, 88px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.94;
}

.hero-subtitle {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(17, 17, 20, 0.68);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
}

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

.primary-button,
.merchant-button,
.text-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}

.primary-button {
  padding: 0 22px;
  color: white;
  background: var(--blue);
  box-shadow: 0 16px 36px rgba(22, 119, 255, 0.24);
}

.primary-button.dark {
  background: var(--ink);
  box-shadow: 0 18px 44px rgba(17, 17, 20, 0.2);
}

.primary-button.android {
  background: #18a874;
  box-shadow: 0 18px 44px rgba(24, 168, 116, 0.22);
}

.merchant-button {
  padding: 0 20px;
  color: #0a6a47;
  background: rgba(24, 168, 116, 0.12);
  box-shadow: inset 0 0 0 1px rgba(24, 168, 116, 0.18);
}

.text-button {
  color: var(--ink);
}

.device-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --scroll: 0;
  position: relative;
  min-height: 610px;
  perspective: 1600px;
  transform-style: preserve-3d;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(calc(var(--scroll) * 34deg));
}

.orbit-one {
  inset: 9% 4%;
}

.orbit-two {
  inset: 21% 16%;
  border-color: rgba(22, 119, 255, 0.14);
  transform: rotateX(66deg) rotateZ(calc(var(--scroll) * -42deg));
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 10px solid #121316;
  border-radius: 46px;
  background: #101114;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  will-change: transform;
}

.phone-main {
  top: 34px;
  left: 50%;
  width: min(360px, 58vw);
  height: 632px;
  transform:
    translateX(-50%)
    rotateX(calc(7deg + var(--tilt-y)))
    rotateY(calc(-13deg + var(--tilt-x)))
    rotateZ(calc(-2deg + var(--scroll) * 6deg))
    translateZ(86px);
}

.phone-back {
  top: 96px;
  width: 260px;
  height: 386px;
  opacity: 0.94;
}

.phone-business {
  left: 0;
  transform:
    translateX(calc(var(--scroll) * -26px))
    rotateY(calc(23deg + var(--tilt-x) * 0.4))
    rotateZ(-12deg)
    translateZ(-34px);
}

.phone-profile {
  right: -8px;
  transform:
    translateX(calc(var(--scroll) * 34px))
    rotateY(calc(-25deg + var(--tilt-x) * 0.4))
    rotateZ(10deg)
    translateZ(-48px);
}

.side-screen {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 18px 15px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 249, 0.92)),
    #f7f8fa;
}

.side-screen::before {
  position: absolute;
  inset: -70px -44px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(22, 119, 255, 0.16);
  content: "";
  filter: blur(2px);
}

.side-status,
.side-header,
.side-search,
.side-chip-row,
.merchant-highlight,
.mini-list-card,
.profile-card-mini,
.profile-tabs-mini,
.moment-mini-card {
  position: relative;
  z-index: 1;
}

.side-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 800;
}

.side-status span:last-child {
  width: 34px;
  height: 12px;
  border-radius: 999px;
  background: #101114;
}

.side-header p {
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 800;
}

.side-header small,
.mini-list-card span,
.profile-card-mini span,
.moment-mini-card span,
.moment-mini-card em {
  color: #7b8390;
  font-size: 12px;
  font-style: normal;
}

.side-search {
  margin: 18px 0 12px;
  padding: 12px 13px;
  border-radius: 999px;
  color: #8b94a1;
  background: rgba(229, 235, 241, 0.9);
  font-size: 11px;
  font-weight: 700;
}

.side-chip-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.side-chip-row span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 18px rgba(20, 24, 31, 0.06);
  color: #303743;
  font-size: 11px;
  font-weight: 800;
}

.merchant-highlight {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  padding: 16px;
  border-radius: 22px;
  color: white;
  background: linear-gradient(135deg, #1677ff, #16a085);
  box-shadow: 0 18px 32px rgba(22, 119, 255, 0.24);
}

.merchant-highlight span {
  font-size: 12px;
  opacity: 0.78;
}

.merchant-highlight strong {
  font-size: 15px;
}

.mini-list-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 30px rgba(20, 24, 31, 0.07);
}

.mini-list-card i {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f7b267, #1677ff);
}

.mini-list-card.pale i {
  background: linear-gradient(135deg, #18a874, #c7e8ff);
}

.mini-list-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
}

.profile-side {
  padding: 0;
  background: #f4f6f9;
}

.profile-side::before {
  inset: auto auto -76px -60px;
  background: rgba(24, 168, 116, 0.16);
}

.profile-cover {
  height: 116px;
  background:
    linear-gradient(130deg, rgba(22, 119, 255, 0.24), rgba(24, 168, 116, 0.26)),
    linear-gradient(45deg, #0f172a, #e8edf2);
}

.profile-card-mini {
  width: calc(100% - 28px);
  margin: -38px auto 12px;
  padding: 18px 15px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(20, 24, 31, 0.1);
}

.avatar-orb {
  width: 58px;
  height: 58px;
  margin-bottom: 10px;
  border: 4px solid white;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #ffffff 0 10%, transparent 11%),
    conic-gradient(from 40deg, #1677ff, #18a874, #ffb238, #ff6b4a, #1677ff);
  box-shadow: 0 10px 22px rgba(20, 24, 31, 0.14);
}

.profile-card-mini p {
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 800;
}

.profile-tags {
  display: flex;
  gap: 7px;
  margin-top: 11px;
}

.profile-tags b {
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(22, 119, 255, 0.1);
  font-size: 11px;
}

.profile-tabs-mini {
  display: flex;
  width: calc(100% - 28px);
  justify-content: space-between;
  margin: 0 auto 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: #7b8390;
  font-size: 12px;
  font-weight: 800;
}

.profile-tabs-mini .active {
  color: var(--blue);
}

.moment-mini-card {
  display: grid;
  width: calc(100% - 28px);
  margin: 0 auto;
  gap: 6px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(20, 24, 31, 0.08);
}

.avatar-line {
  width: 72px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1677ff, rgba(22, 119, 255, 0.08));
}

.moment-mini-card strong {
  font-size: 16px;
}

.phone-glass {
  width: 100%;
  height: 100%;
  padding: 14px;
  border-radius: 36px;
  background: #f7f8fa;
}

.statusbar {
  display: flex;
  height: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 800;
}

.signal {
  width: 38px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #101114 58%, transparent 58%);
  opacity: 0.84;
}

.app-screen {
  position: relative;
  height: calc(100% - 28px);
  padding: 22px 16px 92px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f2f5f8 100%);
  overflow: hidden;
}

.screen-header span,
.screen-header small {
  display: block;
}

.screen-header span {
  font-size: 30px;
  font-weight: 800;
}

.team-screen-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.screen-header small {
  margin-top: 6px;
  color: #6e7683;
  font-size: 13px;
}

.screen-search-icon {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(238, 242, 247, 0.94);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 20, 0.04);
}

.screen-search-icon::before {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 10px;
  height: 10px;
  border: 2px solid #111827;
  border-radius: 50%;
  content: "";
}

.screen-search-icon::after {
  position: absolute;
  right: 9px;
  bottom: 9px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  content: "";
  transform: rotate(45deg);
}

.search-pill {
  margin: 22px 0 14px;
  padding: 13px 16px;
  border-radius: 18px;
  color: #7b8390;
  background: #eef1f5;
  font-size: 13px;
}

.filter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.primary-filter-row {
  margin-top: 20px;
}

.filter-row span {
  flex: 0 0 auto;
  padding: 9px 13px;
  border-radius: 999px;
  color: #343941;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(20, 24, 31, 0.06);
  font-size: 12px;
  font-weight: 700;
}

.team-list-preview {
  display: grid;
  gap: 12px;
}

.team-preview-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(20, 24, 31, 0.09);
}

.team-preview-media {
  position: relative;
  height: 116px;
  background:
    radial-gradient(circle at 28% 36%, rgba(255, 255, 255, 0.8) 0 13%, transparent 14%),
    linear-gradient(135deg, #1677ff, #18a874);
}

.team-preview-media::before,
.team-preview-media::after {
  position: absolute;
  border-radius: 999px;
  content: "";
}

.team-preview-media::before {
  right: 22px;
  bottom: 18px;
  width: 96px;
  height: 30px;
  background: rgba(255, 255, 255, 0.24);
}

.team-preview-media::after {
  right: 48px;
  bottom: 48px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.18);
}

.team-preview-media.run {
  height: 58px;
  background:
    radial-gradient(circle at 80% 35%, rgba(255, 255, 255, 0.42), transparent 24%),
    linear-gradient(135deg, #31363f, #1677ff);
}

.team-preview-media span {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 7px 11px;
  border-radius: 999px;
  color: white;
  background: rgba(10, 132, 255, 0.92);
  font-size: 11px;
  font-weight: 800;
}

.team-preview-body {
  padding: 15px;
}

.team-preview-title {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.team-preview-title p {
  margin-bottom: 0;
  color: #0f172a;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.08;
}

.team-preview-title em {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  color: #1685f8;
  background: #eaf4ff;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.team-preview-body small {
  display: block;
  margin-bottom: 10px;
  color: #657182;
  font-size: 12px;
  font-weight: 600;
}

.team-preview-meta {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

.team-preview-meta span,
.team-preview-footer b,
.team-preview-footer i {
  color: #657182;
  font-size: 12px;
  font-weight: 700;
}

.team-preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-preview-footer i {
  padding: 6px 9px;
  border-radius: 999px;
  color: #273142;
  background: #f1f3f5;
  font-style: normal;
}

.team-preview-card.compact {
  display: grid;
  grid-template-columns: 88px 1fr;
  min-height: 118px;
}

.team-preview-card.compact .team-preview-media {
  height: auto;
}

.team-preview-card.compact .team-preview-body {
  padding: 14px;
}

.team-preview-card.compact .team-preview-body small {
  margin-bottom: 0;
}

.activity-card {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid rgba(17, 17, 20, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(20, 24, 31, 0.08);
}

.activity-card.featured {
  color: white;
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.94), rgba(24, 168, 116, 0.88)),
    #1677ff;
}

.activity-card p {
  margin-bottom: 7px;
  font-weight: 800;
}

.activity-card span {
  color: inherit;
  font-size: 12px;
  opacity: 0.72;
}

.activity-card strong {
  flex: 0 0 auto;
  margin-left: 12px;
  font-size: 14px;
}

.tabbar {
  position: absolute;
  right: 14px;
  bottom: 16px;
  left: 14px;
  height: 54px;
  justify-content: space-around;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 36px rgba(20, 24, 31, 0.13);
  backdrop-filter: blur(18px);
}

.tabbar span {
  color: #7b8390;
  font-size: 10px;
  font-weight: 700;
}

.tabbar .active {
  color: var(--blue);
}

.screenshot-stage {
  min-height: 660px;
}

.screenshot-stage::before {
  position: absolute;
  inset: 12% 2% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 32%, rgba(22, 119, 255, 0.14), transparent 34%),
    radial-gradient(circle at 70% 70%, rgba(24, 168, 116, 0.12), transparent 32%);
  content: "";
  filter: blur(18px);
  transform: rotateZ(-7deg) translateZ(-120px);
}

.screenshot-phone {
  position: absolute;
  overflow: hidden;
  border: 9px solid #121316;
  border-radius: 44px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(20, 24, 31, 0.18);
  transform-style: preserve-3d;
  will-change: transform;
}

.screenshot-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-main {
  top: 18px;
  left: 50%;
  z-index: 3;
  width: min(330px, 56vw);
  height: 690px;
  transform:
    translateX(-50%)
    rotateX(calc(5deg + var(--tilt-y)))
    rotateY(calc(-10deg + var(--tilt-x)))
    rotateZ(calc(-1.5deg + var(--scroll) * 3deg))
    translateZ(92px);
}

.screenshot-left,
.screenshot-right {
  top: 122px;
  z-index: 2;
  width: 245px;
  height: 514px;
  opacity: 0.96;
}

.screenshot-left {
  left: 2%;
  transform:
    rotateY(calc(21deg + var(--tilt-x) * 0.35))
    rotateZ(-12deg)
    translateZ(-18px);
}

.screenshot-right {
  right: 1%;
  transform:
    rotateY(calc(-22deg + var(--tilt-x) * 0.35))
    rotateZ(11deg)
    translateZ(-28px);
}

.editorial-showcase {
  min-height: 660px;
  transform-style: preserve-3d;
}

.showcase-glow {
  position: absolute;
  inset: 7% 2% 8% 0;
  border-radius: 48px;
  background:
    radial-gradient(circle at 26% 22%, rgba(22, 119, 255, 0.2), transparent 30%),
    radial-gradient(circle at 82% 76%, rgba(24, 168, 116, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.12));
  filter: blur(2px);
  transform: rotateZ(-3deg) translateZ(-80px);
}

.editor-card,
.showcase-phone {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 70px rgba(20, 24, 31, 0.14);
  backdrop-filter: blur(24px) saturate(150%);
  transform-style: preserve-3d;
  will-change: transform;
}

.editor-card {
  overflow: hidden;
  border-radius: 32px;
}

.editor-card span {
  display: inline-flex;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.editor-card strong {
  display: block;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.16;
}

.editor-card p {
  margin: 0;
  color: rgba(75, 85, 99, 0.86);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.62;
}

.editor-card-main {
  top: 18px;
  left: 4%;
  width: min(520px, 76%);
  min-height: 386px;
  background: rgba(255, 255, 255, 0.74);
  transform:
    rotateX(calc(4deg + var(--tilt-y)))
    rotateY(calc(-13deg + var(--tilt-x)))
    rotateZ(calc(-3deg + var(--scroll) * 3deg))
    translateZ(16px);
}

.editor-image {
  position: relative;
  height: 206px;
  overflow: hidden;
}

.editor-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(17, 17, 20, 0.5));
  content: "";
}

.editor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.editor-image span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(17, 17, 20, 0.34);
  backdrop-filter: blur(16px);
}

.editor-copy {
  padding: 24px 26px 26px;
}

.editor-copy p {
  margin-bottom: 8px;
  color: var(--blue);
  font-weight: 850;
}

.editor-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.05;
}

.editor-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.editor-meta span {
  padding: 8px 11px;
  border-radius: 999px;
  color: #3f4754;
  background: rgba(242, 246, 250, 0.9);
  font-size: 12px;
}

.showcase-phone {
  top: 94px;
  right: 2%;
  width: 286px;
  height: 542px;
  overflow: hidden;
  border: 9px solid #121316;
  border-radius: 44px;
  background: #f6f8fb;
  transform:
    rotateX(calc(5deg + var(--tilt-y)))
    rotateY(calc(-8deg + var(--tilt-x)))
    rotateZ(calc(2deg + var(--scroll) * -2deg))
    translateZ(112px);
}

.showcase-status {
  display: flex;
  height: 36px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px 0;
  color: #111827;
  font-size: 12px;
  font-weight: 850;
}

.showcase-status i {
  width: 34px;
  height: 12px;
  border-radius: 999px;
  background: #111827;
}

.showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 8px 16px 14px;
  padding: 20px 18px;
  border-radius: 28px;
  background: white;
  box-shadow: 0 18px 38px rgba(20, 24, 31, 0.08);
}

.showcase-top span,
.showcase-top strong {
  display: block;
}

.showcase-top span {
  margin-bottom: 6px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 750;
}

.showcase-top strong {
  color: #101827;
  font-size: 24px;
  line-height: 1.08;
}

.showcase-top b {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eef4fb;
}

.showcase-top b::before,
.showcase-top b::after {
  position: absolute;
  content: "";
}

.showcase-top b::before {
  top: 13px;
  left: 13px;
  width: 12px;
  height: 12px;
  border: 3px solid #111827;
  border-radius: 50%;
}

.showcase-top b::after {
  right: 11px;
  bottom: 12px;
  width: 11px;
  height: 3px;
  border-radius: 999px;
  background: #111827;
  transform: rotate(45deg);
}

.showcase-tabs {
  display: flex;
  gap: 8px;
  margin: 0 16px 14px;
  overflow: hidden;
}

.showcase-tabs span {
  flex: 0 0 auto;
  padding: 9px 13px;
  border-radius: 999px;
  color: #3f4754;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 20px rgba(20, 24, 31, 0.06);
  font-size: 12px;
  font-weight: 850;
}

.showcase-tabs .active {
  color: white;
  background: #1677ff;
}

.showcase-list {
  display: grid;
  gap: 12px;
  padding: 0 16px 84px;
}

.showcase-item {
  min-height: 112px;
  padding: 18px;
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(20, 24, 31, 0.08);
}

.showcase-item span,
.showcase-item strong,
.showcase-item p {
  display: block;
}

.showcase-item span {
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 900;
}

.showcase-item strong {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.16;
}

.showcase-item p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.showcase-item.blue {
  color: white;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.42) 0 10%, transparent 11%),
    linear-gradient(135deg, #1677ff, #15aa7c);
}

.showcase-item.white {
  color: #101827;
  background: white;
}

.showcase-item.green {
  color: white;
  background:
    radial-gradient(circle at 15% 24%, rgba(255, 255, 255, 0.26) 0 12%, transparent 13%),
    linear-gradient(135deg, #1fb87d, #31363f);
}

.showcase-tabbar {
  right: 12px;
  bottom: 14px;
  left: 12px;
  height: 54px;
}

.editor-card-checkin {
  top: 420px;
  left: 0;
  display: grid;
  grid-template-columns: 92px 1fr;
  width: 292px;
  min-height: 148px;
  transform:
    rotateY(calc(12deg + var(--tilt-x) * 0.55))
    rotateZ(calc(-7deg + var(--scroll) * 2deg))
    translateZ(62px);
}

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

.editor-card-checkin div {
  padding: 18px 16px;
}

.editor-card-checkin strong {
  margin: 8px 0 8px;
  font-size: 22px;
}

.editor-card-team {
  top: 44px;
  right: 8px;
  width: 228px;
  padding: 20px;
  transform:
    rotateY(calc(-18deg + var(--tilt-x) * 0.4))
    rotateZ(calc(8deg + var(--scroll) * -2deg))
    translateZ(28px);
}

.mini-people {
  display: flex;
  margin-bottom: 18px;
}

.mini-people img {
  width: 46px;
  height: 46px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(20, 24, 31, 0.12);
}

.mini-people img + img {
  margin-left: -14px;
}

.editor-card-team strong {
  margin: 9px 0 10px;
  font-size: 21px;
}

.editor-card-circle {
  right: 28px;
  bottom: 0;
  width: 266px;
  transform:
    rotateY(calc(-12deg + var(--tilt-x) * 0.45))
    rotateZ(calc(6deg + var(--scroll) * -3deg))
    translateZ(46px);
}

.editor-card-circle img {
  width: 100%;
  height: 126px;
  object-fit: cover;
  object-position: center;
}

.editor-card-circle div {
  padding: 16px 18px 18px;
}

.editor-card-circle strong {
  margin-top: 8px;
  font-size: 20px;
}

.editor-card-friend {
  right: 260px;
  bottom: 54px;
  width: 196px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(244, 248, 255, 0.78));
  transform:
    rotateY(calc(10deg + var(--tilt-x) * 0.35))
    rotateZ(calc(-4deg + var(--scroll) * 3deg))
    translateZ(84px);
}

.editor-card-friend strong {
  margin: 8px 0 10px;
  font-size: 20px;
}

.moments-section,
.scene-carousel-section,
.feature-section,
.design-section,
.download-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
  scroll-margin-top: 92px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 620px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.wide-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.wide-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transform: scale(1.04);
}

.floating-panel {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(360px, calc(100% - 56px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 24px;
  color: white;
  background: rgba(17, 17, 20, 0.34);
  backdrop-filter: blur(22px);
}

.floating-panel span,
.floating-panel strong {
  display: block;
}

.floating-panel span {
  margin-bottom: 8px;
  font-size: 13px;
  opacity: 0.82;
}

.floating-panel strong {
  font-size: 22px;
  line-height: 1.28;
}

.scene-carousel-section {
  position: relative;
  width: 100%;
  padding: 0;
  scroll-margin-top: 0;
}

.scene-carousel-section::before {
  position: absolute;
  inset: 12% 0 auto;
  z-index: -1;
  width: 100%;
  height: min(520px, 64vw);
  border-radius: 50%;
  background:
    radial-gradient(circle at 25% 24%, rgba(22, 119, 255, 0.18), transparent 34%),
    radial-gradient(circle at 80% 68%, rgba(24, 168, 116, 0.14), transparent 32%);
  content: "";
  filter: blur(26px);
}

.carousel-heading {
  position: absolute;
  top: 96px;
  left: clamp(18px, 4vw, 42px);
  z-index: 3;
  display: grid;
  max-width: min(680px, calc(100% - 36px));
  gap: 10px;
  margin: 0;
  color: white;
  pointer-events: none;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

.carousel-heading .eyebrow {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.88);
}

.carousel-heading p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.62;
}

.carousel-heading h2 {
  max-width: 680px;
  color: white;
  font-size: clamp(40px, 7vw, 74px);
  line-height: 0.98;
}

.scene-carousel {
  position: relative;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #111114;
  box-shadow: none;
}

.scene-track {
  display: flex;
  gap: 0;
  width: 100%;
  min-height: 100svh;
  margin-left: 0;
  padding: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.scene-track::-webkit-scrollbar {
  display: none;
}

.scene-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 100svh;
  overflow: hidden;
  background: #111114;
  scroll-snap-align: center;
  transform: translateZ(0);
}

.scene-slide::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 20, 0.62) 0%, rgba(17, 17, 20, 0.06) 36%),
    linear-gradient(180deg, transparent 42%, rgba(17, 17, 20, 0.76) 100%),
    linear-gradient(90deg, rgba(17, 17, 20, 0.38) 0%, transparent 42%);
  content: "";
}

.scene-slide picture,
.scene-slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100svh;
}

.scene-slide img {
  object-fit: cover;
  transform: scale(1.035);
}

.scene-caption {
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(74px, 8vw, 108px);
  left: clamp(18px, 4vw, 42px);
  z-index: 1;
  color: white;
}

.scene-caption span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  font-size: 12px;
  font-weight: 850;
}

.scene-caption strong {
  display: block;
  max-width: min(650px, 92%);
  font-size: clamp(30px, 6.8vw, 62px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.04;
}

.scene-chip {
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(24px, 3.2vw, 42px);
  left: auto;
  z-index: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: white;
  background: rgba(17, 17, 20, 0.26);
  backdrop-filter: blur(18px);
  font-size: 12px;
  font-weight: 850;
}

.scene-controls {
  display: flex;
  position: absolute;
  bottom: clamp(30px, 4vw, 48px);
  left: clamp(18px, 4vw, 42px);
  z-index: 3;
  justify-content: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.scene-control {
  width: 26px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition:
    width 220ms ease,
    background 220ms ease;
}

.scene-control.is-active {
  width: 42px;
  background: white;
}

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

.feature-card {
  min-height: 380px;
  padding: 24px;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 22px 46px rgba(20, 24, 31, 0.07);
}

.feature-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 18px;
  color: white;
  font-weight: 800;
}

.feature-icon.blue {
  background: var(--blue);
}

.feature-icon.green {
  background: var(--green);
}

.feature-icon.coral {
  background: var(--coral);
}

.feature-icon.graphite {
  background: var(--graphite);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 25px;
}

.feature-scene {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.feature-dialogue {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.dialogue-message {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 9px;
  align-items: start;
}

.dialogue-message img {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(20, 24, 31, 0.12);
}

.dialogue-message span {
  display: block;
  padding: 11px 13px;
  border-radius: 16px;
  color: #343b46;
  background: rgba(245, 247, 250, 0.9);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.52;
}

.dialogue-message b {
  display: block;
  margin-bottom: 3px;
  color: inherit;
  font-size: 11px;
  opacity: 0.72;
}

.dialogue-message.reply {
  grid-template-columns: 1fr 36px;
}

.dialogue-message.reply img {
  grid-column: 2;
  grid-row: 1;
}

.dialogue-message.reply span {
  grid-column: 1;
  grid-row: 1;
  color: white;
  background: linear-gradient(135deg, rgba(22, 119, 255, 0.92), rgba(24, 168, 116, 0.9));
  box-shadow: 0 14px 28px rgba(22, 119, 255, 0.16);
}

.feature-card p,
.design-copy p,
.download-section p {
  color: var(--muted);
  line-height: 1.7;
}

.design-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
}

.design-copy p {
  max-width: 480px;
  margin-top: 24px;
  font-size: 18px;
}

.motion-stack {
  --stack: 0;
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}

.tile {
  position: absolute;
  width: min(380px, 72vw);
  border-radius: 34px;
  box-shadow: var(--shadow);
  transition: transform 140ms linear;
}

.tile-one {
  top: 36px;
  left: 8%;
  transform: rotateY(calc(-24deg + var(--stack) * 18deg)) rotateZ(-7deg)
    translate3d(calc(var(--stack) * -18px), calc(var(--stack) * -24px), 80px);
}

.tile-two {
  top: 142px;
  right: 0;
  transform: rotateY(calc(18deg - var(--stack) * 12deg)) rotateZ(9deg)
    translate3d(calc(var(--stack) * 22px), calc(var(--stack) * -8px), 28px);
}

.tile-three {
  left: 18%;
  bottom: 18px;
  transform: rotateY(calc(-8deg + var(--stack) * 22deg)) rotateZ(-2deg)
    translate3d(calc(var(--stack) * 8px), calc(var(--stack) * 18px), 120px);
}

.download-section {
  display: grid;
  justify-items: center;
  text-align: center;
}

.download-section img {
  width: 86px;
  height: 86px;
  margin-bottom: 26px;
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(20, 24, 31, 0.16);
}

.download-section h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.download-section p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: 18px;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.download-actions .primary-button {
  min-width: 150px;
}

.site-footer {
  justify-content: center;
  gap: 18px;
  padding: 36px 20px 48px;
  color: #7a808b;
  font-size: 14px;
}

.site-footer a {
  color: #4b5563;
  font-weight: 700;
}

.police-record {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.police-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #111827;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.inline-link {
  color: var(--blue);
  font-weight: 800;
}

.policy-page {
  min-height: 100vh;
}

.policy-header {
  position: sticky;
  margin-top: 16px;
}

.policy-header .nav-links {
  margin-left: auto;
}

.policy-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 42px;
}

.policy-hero {
  padding: 42px 0 34px;
}

.policy-hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(48px, 8vw, 86px);
  line-height: 0.96;
}

.policy-hero p {
  max-width: 760px;
  color: #4b5563;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.8;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.policy-meta span {
  padding: 9px 13px;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 999px;
  color: #4b5563;
  background: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.policy-content {
  display: grid;
  gap: 16px;
}

.policy-content article {
  padding: 30px;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 42px rgba(20, 24, 31, 0.06);
}

.policy-content h2 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.22;
}

.policy-content p,
.policy-content li {
  color: #4f5867;
  font-size: 16px;
  line-height: 1.85;
}

.policy-content p {
  margin-bottom: 0;
}

.policy-content ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.policy-content strong {
  color: var(--ink);
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 112px;
  }

  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .screenshot-stage {
    min-height: 640px;
  }

  .screenshot-main {
    width: min(320px, 58vw);
    height: 668px;
  }

  .screenshot-left,
  .screenshot-right {
    top: 150px;
    width: 220px;
    height: 462px;
  }

  .phone-main {
    width: min(330px, 76vw);
    height: 650px;
  }

  .phone-back {
    width: 210px;
    height: 344px;
  }

  .phone-business {
    left: 2%;
  }

  .phone-profile {
    right: 2%;
  }

  .feature-grid,
  .design-section {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 14px;
  }

  .feature-card {
    min-height: 220px;
  }

  .motion-stack {
    min-height: 520px;
  }

  .editorial-showcase {
    min-height: 650px;
    margin-top: 8px;
  }

  .editor-card-main {
    top: 0;
    left: 50%;
    width: min(560px, 88vw);
    transform:
      translateX(-50%)
      rotateX(3deg)
      rotateY(-6deg)
      rotateZ(-2deg)
      translateZ(12px);
  }

  .showcase-phone {
    top: 184px;
    right: 6%;
    width: 250px;
    height: 472px;
    transform:
      rotateX(4deg)
      rotateY(-8deg)
      rotateZ(3deg)
      translateZ(96px);
  }

  .editor-card-team {
    top: 36px;
    right: 0;
  }

  .editor-card-checkin {
    top: 462px;
    left: 4%;
  }

  .editor-card-circle {
    right: 2%;
    bottom: -8px;
  }

  .editor-card-friend {
    right: auto;
    left: 4%;
    bottom: 96px;
  }
}

@media (min-width: 761px) {
  .scene-carousel-section {
    padding-top: 0;
  }

  .scene-carousel {
    min-height: 100svh;
    perspective: 1200px;
  }

  .scene-track {
    display: block;
    width: 100%;
    height: 100svh;
    margin-left: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .scene-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100svh;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px) scale(0.982) rotateX(2deg);
    transition:
      opacity 760ms ease,
      transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .scene-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1) rotateX(0deg);
  }

  .scene-slide img {
    min-height: 100svh;
    transition: transform 5200ms ease;
  }

  .scene-slide.is-active img {
    transform: scale(1.055);
  }

  .scene-caption strong {
    font-size: clamp(38px, 5vw, 64px);
  }

  .scene-chip {
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 8px;
  }

  .brand {
    min-height: 48px;
    padding: 7px 12px 7px 8px;
    font-size: 16px;
  }

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

  .nav-actions {
    gap: 6px;
    min-height: 48px;
    padding: 5px;
  }

  .nav-actions a {
    min-height: 38px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero {
    padding-bottom: 54px;
  }

  .hero,
  .moments-section,
  .scene-carousel-section,
  .feature-section,
  .design-section,
  .download-section {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: clamp(40px, 12.5vw, 56px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .hero-subtitle,
  .download-section p:not(.eyebrow) {
    font-size: 17px;
  }

  .device-stage {
    min-height: 650px;
    margin-top: 2px;
  }

  .screenshot-stage {
    display: block;
    min-height: 560px;
    overflow: visible;
  }

  .screenshot-stage::before {
    inset: 10% 0 12%;
  }

  .screenshot-stage .orbit {
    display: none;
  }

  .screenshot-main {
    top: 18px;
    width: min(255px, 72vw);
    height: 532px;
    border-width: 8px;
    border-radius: 38px;
    transform:
      translateX(-50%)
      rotateX(3deg)
      rotateY(-5deg)
      rotateZ(-1deg)
      translateZ(44px);
  }

  .screenshot-left,
  .screenshot-right {
    top: 72px;
    display: block;
    width: min(176px, 49vw);
    height: 368px;
    border-width: 7px;
    border-radius: 32px;
    opacity: 0.72;
  }

  .screenshot-left {
    left: -52px;
    transform: rotateZ(-10deg) translateZ(-20px);
  }

  .screenshot-right {
    right: -52px;
    transform: rotateZ(10deg) translateZ(-24px);
  }

  .editorial-showcase {
    display: flex;
    gap: 12px;
    width: calc(100% + 28px);
    min-height: 0;
    margin-left: -14px;
    padding: 6px 14px 20px;
    overflow-x: auto;
    overflow-y: visible;
    perspective: none;
    scroll-padding-left: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    transform-style: flat;
  }

  .editorial-showcase::-webkit-scrollbar {
    display: none;
  }

  .showcase-glow {
    display: none;
  }

  .editor-card,
  .showcase-phone {
    position: relative;
    inset: auto;
    flex: 0 0 min(292px, 82vw);
    scroll-snap-align: start;
    transform: none;
  }

  .editor-card-main {
    display: flex;
    flex-direction: column;
    min-height: 438px;
  }

  .editor-image {
    height: 178px;
  }

  .editor-copy {
    padding: 22px;
  }

  .editor-copy h2 {
    font-size: 32px;
  }

  .showcase-phone {
    width: auto;
    height: 500px;
    border-width: 8px;
    border-radius: 40px;
    scroll-snap-align: center;
  }

  .showcase-top {
    margin: 8px 14px 12px;
    padding: 18px 16px;
  }

  .showcase-top strong {
    font-size: 22px;
  }

  .showcase-tabs {
    margin-inline: 14px;
  }

  .showcase-list {
    padding: 0 14px 80px;
  }

  .editor-card-checkin {
    grid-template-columns: 1fr;
    min-height: 438px;
  }

  .editor-card-checkin img {
    height: 250px;
  }

  .editor-card-team,
  .editor-card-friend {
    min-height: 246px;
  }

  .editor-card-circle img {
    height: 178px;
  }

  .editor-card-circle {
    min-height: 292px;
  }

  .phone-main {
    top: 16px;
    width: min(214px, 68vw);
    height: 420px;
    border-width: 8px;
    border-radius: 40px;
    transform: translateX(-50%) rotateX(4deg) rotateY(-7deg) rotateZ(-1deg)
      translateZ(46px);
  }

  .phone-back,
  .orbit {
    display: none;
  }

  .app-screen {
    padding: 18px 13px 68px;
  }

  .tabbar {
    right: 10px;
    bottom: 12px;
    left: 10px;
    height: 50px;
    border-radius: 22px;
  }

  .tabbar span {
    font-size: 10px;
  }

  .activity-card {
    min-height: 86px;
    padding: 13px;
    border-radius: 21px;
  }

  .wide-visual,
  .wide-visual img {
    min-height: 430px;
  }

  .moments-section {
    padding-top: 54px;
  }

  .floating-panel {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .scene-carousel-section {
    width: 100%;
    padding: 0;
  }

  .scene-carousel {
    width: 100vw;
    min-height: 100svh;
    margin-left: calc(50% - 50vw);
    border-radius: 0;
    box-shadow: 0 22px 60px rgba(20, 24, 31, 0.16);
  }

  .scene-track,
  .scene-slide,
  .scene-slide img {
    min-height: 100svh;
  }

  .carousel-heading {
    top: 88px;
    right: 22px;
    left: 22px;
    gap: 8px;
    max-width: none;
  }

  .carousel-heading p:not(.eyebrow) {
    max-width: 310px;
    font-size: 14px;
    line-height: 1.56;
  }

  .carousel-heading h2 {
    max-width: 350px;
    font-size: clamp(38px, 11vw, 54px);
    line-height: 0.96;
  }

  .scene-slide {
    flex-basis: 100%;
    border-radius: 0;
  }

  .scene-slide img {
    transform: scale(1.02);
  }

  .scene-caption {
    right: 22px;
    bottom: 92px;
    left: 22px;
  }

  .scene-caption strong {
    max-width: 330px;
    font-size: clamp(28px, 8.6vw, 38px);
    line-height: 1.04;
  }

  .scene-caption span {
    margin-bottom: 10px;
    padding: 8px 10px;
  }

  .scene-chip {
    right: 22px;
    bottom: 34px;
    max-width: 44%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .scene-controls {
    bottom: 42px;
    left: 22px;
  }

  .feature-section {
    padding: 64px 0 54px;
  }

  .feature-section .section-heading {
    margin-bottom: 22px;
  }

  .feature-grid {
    display: flex;
    gap: 12px;
    width: calc(100% + 28px);
    margin-left: -14px;
    padding: 2px 14px 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-left: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .feature-grid::-webkit-scrollbar {
    display: none;
  }

  .feature-card {
    position: relative;
    flex: 0 0 min(292px, 82vw);
    min-height: 292px;
    padding: 22px 22px 20px;
    border-radius: 24px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 18px 38px rgba(20, 24, 31, 0.08);
    transform: translateZ(0);
  }

  .feature-card::before {
    position: absolute;
    inset: auto -22px -54px auto;
    width: 138px;
    height: 138px;
    border-radius: 50%;
    content: "";
    opacity: 0.18;
    filter: blur(1px);
  }

  .feature-card:nth-child(1)::before {
    background: var(--blue);
  }

  .feature-card:nth-child(2)::before {
    background: var(--green);
  }

  .feature-card:nth-child(3)::before {
    background: var(--coral);
  }

  .feature-card:nth-child(4)::before {
    background: var(--graphite);
  }

  .feature-card:nth-child(2n) {
    transform: translateY(12px);
  }

  .feature-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 16px;
    font-size: 17px;
  }

  .feature-scene {
    margin-bottom: 9px;
    font-size: 12px;
  }

  .feature-card h3 {
    margin-bottom: 6px;
    font-size: 26px;
  }

  .feature-dialogue {
    gap: 7px;
    margin: 12px 0;
  }

  .dialogue-message {
    grid-template-columns: 32px 1fr;
    gap: 8px;
  }

  .dialogue-message.reply {
    grid-template-columns: 1fr 32px;
  }

  .dialogue-message img {
    width: 32px;
    height: 32px;
  }

  .dialogue-message span {
    padding: 9px 10px;
    border-radius: 14px;
    font-size: 12px;
    line-height: 1.46;
  }

  .feature-card p {
    max-width: 230px;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.5;
  }

  .motion-stack {
    min-height: 440px;
  }

  .tile {
    width: min(300px, 78vw);
    border-radius: 26px;
  }

  .tile-one {
    left: 0;
  }

  .tile-two {
    top: 116px;
  }

  .tile-three {
    left: 8%;
  }

  .site-footer {
    flex-wrap: wrap;
  }

  .policy-header {
    position: sticky;
    top: 10px;
    width: max-content;
    max-width: calc(100% - 28px);
    justify-content: center;
    margin-top: 10px;
    padding: 0 10px;
  }

  .policy-header .brand {
    display: none;
  }

  .policy-header .nav-links {
    margin-left: 0;
    justify-content: center;
  }

  .policy-header .nav-links a:not(.nav-download) {
    display: inline-flex;
  }

  .policy-main {
    width: min(100% - 28px, 920px);
    padding: 18px 0 28px;
  }

  .policy-hero {
    padding: 26px 0 24px;
  }

  .policy-hero h1 {
    font-size: clamp(42px, 14vw, 60px);
    line-height: 0.98;
  }

  .policy-hero p {
    font-size: 16px;
    line-height: 1.72;
  }

  .policy-meta {
    gap: 8px;
    margin-top: 18px;
  }

  .policy-meta span {
    font-size: 12px;
  }

  .policy-content {
    gap: 12px;
  }

  .policy-content article {
    padding: 22px;
    border-radius: 22px;
  }

  .policy-content h2 {
    font-size: 22px;
  }

  .policy-content p,
  .policy-content li {
    font-size: 15px;
    line-height: 1.78;
  }
}

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