﻿:root {
  --bg: #e8edf3;
  --text: #13202b;
  --muted: rgba(19, 32, 43, .68);
  --soft: rgba(19, 32, 43, .48);
  --line: rgba(255, 255, 255, .72);
  --panel: rgba(255, 255, 255, .42);
  --panel-strong: rgba(255, 255, 255, .66);
  --blue: #1888ff;
  --cyan: #44d6ff;
  --green: #26d69a;
  --ink: #081117;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(248, 251, 255, .72), rgba(224, 231, 239, .92) 76%),
    url("/assets/img/home-liquid/liquid-glass-bg.png") center top / cover no-repeat fixed,
    var(--bg);
  min-height: 100vh;
  letter-spacing: 0;
  overflow-x: hidden;
}

.liquid-stage {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.liquid-stage::before {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .9), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(174, 221, 255, .62), transparent 24%),
    radial-gradient(circle at 62% 72%, rgba(255, 255, 255, .78), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(191, 203, 216, .42));
  filter: blur(14px);
  opacity: .96;
  animation: liquidDrift 16s ease-in-out infinite alternate;
}

.liquid-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, .42) 48%, transparent 55%),
    repeating-linear-gradient(100deg, rgba(255, 255, 255, .12) 0 1px, transparent 1px 80px);
  mix-blend-mode: screen;
  opacity: .88;
  animation: shineMove 9s linear infinite;
}

.liquid-shape,
.liquid-ribbon,
.water-drop {
  position: absolute;
  display: block;
  will-change: transform;
}

.liquid-shape {
  border: 1px solid rgba(255, 255, 255, .82);
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 1), rgba(255, 255, 255, .42) 34%, rgba(198, 212, 225, .28) 68%),
    rgba(255, 255, 255, .38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .96),
    inset 0 -24px 54px rgba(124, 145, 164, .18),
    0 30px 110px rgba(111, 137, 162, .2);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.shape-a {
  width: 540px;
  height: 250px;
  left: -90px;
  top: 210px;
  border-radius: 44% 56% 48% 52% / 54% 36% 64% 46%;
  animation: blobFloatA 12s ease-in-out infinite;
}

.shape-b {
  width: 620px;
  height: 310px;
  right: -160px;
  top: 120px;
  border-radius: 58% 42% 62% 38% / 44% 55% 45% 56%;
  animation: blobFloatB 14s ease-in-out infinite;
}

.shape-c {
  width: 470px;
  height: 230px;
  left: 42%;
  bottom: 10%;
  border-radius: 48% 52% 44% 56% / 52% 43% 57% 48%;
  animation: blobFloatC 13s ease-in-out infinite;
}

.liquid-ribbon {
  width: 82vw;
  height: 160px;
  left: 8vw;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .68);
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, .92), rgba(117, 207, 255, .34), rgba(255,255,255,.72), transparent);
  filter: blur(.1px);
  opacity: .86;
}

.ribbon-a {
  top: 34%;
  transform: rotate(-8deg);
  animation: ribbonFlowA 11s ease-in-out infinite;
}

.ribbon-b {
  top: 62%;
  transform: rotate(7deg);
  animation: ribbonFlowB 13s ease-in-out infinite;
}

.water-drop {
  width: 118px;
  height: 118px;
  border-radius: 56% 44% 50% 50% / 44% 48% 52% 56%;
  border: 1px solid rgba(255, 255, 255, .88);
  background:
    radial-gradient(circle at 31% 22%, rgba(255, 255, 255, .98) 0 10%, rgba(255, 255, 255, .44) 17%, transparent 31%),
    radial-gradient(circle at 68% 76%, rgba(77, 182, 255, .26), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .18));
  box-shadow:
    inset 10px 10px 26px rgba(255, 255, 255, .72),
    inset -18px -20px 32px rgba(103, 132, 160, .18),
    0 18px 44px rgba(93, 120, 145, .18),
    0 0 0 10px rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px) saturate(180%) contrast(112%);
  -webkit-backdrop-filter: blur(18px) saturate(180%) contrast(112%);
  opacity: .82;
}

.water-drop::before {
  content: "";
  position: absolute;
  width: 28%;
  height: 18%;
  left: 22%;
  top: 18%;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  filter: blur(1px);
  transform: rotate(-24deg);
}

.water-drop::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, .42);
}

.drop-a {
  left: 8%;
  top: 12%;
  width: 92px;
  height: 92px;
  animation: dropFloatA 8s ease-in-out infinite;
}

.drop-b {
  right: 17%;
  top: 23%;
  width: 138px;
  height: 138px;
  animation: dropFloatB 10s ease-in-out infinite;
}

.drop-c {
  left: 48%;
  top: 54%;
  width: 76px;
  height: 76px;
  animation: dropFloatC 7.5s ease-in-out infinite;
}

.drop-d {
  right: 8%;
  bottom: 16%;
  width: 104px;
  height: 104px;
  animation: dropFloatA 11s ease-in-out infinite reverse;
}

.drop-e {
  left: 22%;
  bottom: 20%;
  width: 64px;
  height: 64px;
  animation: dropFloatB 9s ease-in-out infinite reverse;
}

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

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.glass-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, .96), rgba(255, 255, 255, .28) 24%, transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .24)),
    rgba(255, 255, 255, .32);
  box-shadow:
    0 28px 90px rgba(83, 111, 138, .24),
    0 8px 26px rgba(255, 255, 255, .42),
    inset 0 1px 0 rgba(255, 255, 255, .92),
    inset 18px 18px 38px rgba(255, 255, 255, .18),
    inset -18px -22px 42px rgba(105, 129, 153, .13),
    inset 0 -1px 0 rgba(124, 145, 164, .12);
  backdrop-filter: blur(32px) saturate(185%) contrast(108%);
  -webkit-backdrop-filter: blur(32px) saturate(185%) contrast(108%);
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .78), transparent 32%),
    linear-gradient(115deg, transparent 0 36%, rgba(255, 255, 255, .3) 45%, transparent 56%);
  transition: opacity .18s ease;
}

.glass-panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .82), transparent 26%),
    linear-gradient(315deg, rgba(88, 170, 225, .16), transparent 32%);
  mix-blend-mode: screen;
  opacity: .68;
}

.glass-panel:hover::before {
  opacity: 1;
}

.glass-panel > * {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 68px;
  padding: 0 18px 0 22px;
  border-radius: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 26% 20%, rgba(255, 255, 255, .98), transparent 28%),
    linear-gradient(135deg, rgba(105, 219, 255, .95), rgba(24, 136, 255, .72) 48%, rgba(80, 228, 190, .84));
  box-shadow: 0 14px 34px rgba(42, 152, 225, .24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  transition: color .18s ease;
}

.nav-links a:hover {
  color: var(--text);
}

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

.ghost-link,
.primary-link,
.secondary-button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.ghost-link {
  padding: 0 14px;
  color: var(--muted);
}

.primary-link {
  padding: 0 18px;
  color: #06131b;
  background: linear-gradient(135deg, #8ee9ff, var(--blue));
  box-shadow: 0 12px 34px rgba(24, 136, 255, .2);
}

.hero-section {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
  gap: 56px;
  align-items: center;
  padding: 64px 0 56px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(17, 70, 101, .84);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(38, 214, 154, .72);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.03;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.9;
}

.lead-mobile {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.cta-button {
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  color: #051118;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(126, 224, 255, .9) 42%, rgba(24, 136, 255, .86));
  box-shadow: 0 18px 48px rgba(24, 136, 255, .2);
}

.button-arrow {
  font-size: 22px;
  line-height: 1;
}

.secondary-button {
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  color: var(--text);
  background: rgba(255, 255, 255, .34);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 120px));
  gap: 12px;
}

.hero-metrics div {
  min-height: 84px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .38);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.hero-metrics span {
  color: var(--soft);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-drop {
  position: absolute;
  z-index: 3;
  border-radius: 58% 42% 48% 52% / 44% 54% 46% 56%;
  border: 1px solid rgba(255,255,255,.82);
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.98), rgba(255,255,255,.4) 18%, transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.74), rgba(116, 203, 255, .18));
  box-shadow:
    inset 10px 10px 24px rgba(255,255,255,.58),
    inset -14px -16px 28px rgba(90,119,148,.16),
    0 18px 42px rgba(88, 132, 170, .18);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
}

.visual-drop-a {
  width: 74px;
  height: 74px;
  left: 42px;
  top: 96px;
  animation: dropFloatC 7s ease-in-out infinite;
}

.visual-drop-b {
  width: 48px;
  height: 48px;
  right: 74px;
  bottom: 128px;
  animation: dropFloatA 8.5s ease-in-out infinite reverse;
}

.liquid-status {
  position: absolute;
  z-index: 4;
  left: 8px;
  bottom: 226px;
  width: 210px;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  overflow: hidden;
}

.status-wave {
  position: absolute;
  inset: -40% -18%;
  background:
    radial-gradient(circle at 20% 50%, rgba(114, 232, 255, .72), transparent 22%),
    radial-gradient(circle at 54% 44%, rgba(255, 255, 255, .88), transparent 24%),
    radial-gradient(circle at 84% 56%, rgba(24, 136, 255, .42), transparent 22%);
  filter: blur(10px);
  opacity: .88;
  animation: capsuleWave 4.8s ease-in-out infinite alternate;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(38, 214, 154, .14), 0 0 22px rgba(38, 214, 154, .7);
}

.liquid-status strong {
  font-size: 13px;
  color: rgba(19, 32, 43, .86);
}

.phone-frame {
  width: min(390px, 100%);
  padding: 12px;
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(194, 207, 220, .24)),
    rgba(255, 255, 255, .42);
  box-shadow:
    0 42px 110px rgba(84, 112, 139, .28),
    inset 0 1px 0 rgba(255, 255, 255, .92),
    inset -18px -22px 42px rgba(114, 136, 158, .16);
  transform: rotate(2deg);
}

.phone-glass {
  min-height: 560px;
  border-radius: 34px;
  padding: 18px;
  overflow: hidden;
  color: #172431;
  border: 1px solid rgba(255, 255, 255, .78);
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, .96), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .64), rgba(226, 234, 242, .24)),
    rgba(255, 255, 255, .38);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    inset 18px 18px 42px rgba(255,255,255,.54),
    inset -22px -22px 48px rgba(118,139,158,.14);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  color: rgba(23, 36, 49, .72);
  font-size: 12px;
  font-weight: 700;
}

.app-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 56px;
}

.app-icon {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 26% 22%, rgba(255, 255, 255, .96), transparent 30%),
    linear-gradient(140deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .08)),
    radial-gradient(circle at 28% 24%, #aef6ff, transparent 32%),
    linear-gradient(135deg, #1d7cff, #18d7c1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .52), 0 18px 44px rgba(31, 150, 255, .3);
}

.app-card h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.app-card p {
  margin: 0;
  color: rgba(23, 36, 49, .58);
  font-size: 13px;
}

.install-button {
  width: 100%;
  min-height: 48px;
  margin: 28px 0 22px;
  border: 0;
  border-radius: 8px;
  color: #06131a;
  background: linear-gradient(135deg, #86eaff, #1888ff);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

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

.rating-grid div,
.version-box {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .64);
  background: rgba(255, 255, 255, .32);
}

.rating-grid div {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 10px;
}

.rating-grid strong {
  font-size: 24px;
}

.rating-grid span {
  color: rgba(23, 36, 49, .52);
  font-size: 12px;
}

.version-box {
  margin-top: 18px;
  padding: 18px;
}

.version-box h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.version-box p {
  margin-bottom: 0;
  color: rgba(23, 36, 49, .62);
  line-height: 1.7;
}

.task-panel {
  position: absolute;
  right: 0;
  bottom: 38px;
  width: 300px;
  padding: 18px;
  border-radius: 8px;
}

.task-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
}

.task-head strong {
  color: var(--green);
}

.task-line {
  display: grid;
  grid-template-columns: 1.1fr .8fr .6fr;
  gap: 8px;
  margin-bottom: 14px;
}

.task-line span {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, .22));
}

.task-panel p {
  margin: 0;
  color: var(--soft);
  line-height: 1.7;
  font-size: 13px;
}

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

.feature-card {
  min-height: 230px;
  padding: 24px;
  border-radius: 18px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 34px;
  margin-bottom: 28px;
  padding: 0 10px;
  border-radius: 8px;
  color: #041018;
  background: linear-gradient(135deg, rgba(255,255,255,.86), var(--cyan), var(--green));
  font-size: 13px;
  font-weight: 800;
}

.feature-card h2 {
  margin-bottom: 12px;
  font-size: 20px;
}

.feature-card p,
.console-copy p,
.security-section p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.flow-section,
.security-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 18px;
  padding: 32px;
  border-radius: 8px;
}

.flow-section h2,
.console-copy h2,
.security-section h2 {
  margin: 10px 0 12px;
  font-size: 32px;
  line-height: 1.24;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.flow-grid div {
  min-height: 112px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .64);
  background: rgba(255, 255, 255, .32);
}

.flow-grid b {
  display: block;
  margin-bottom: 24px;
  color: rgba(24, 136, 255, .86);
}

.flow-grid span {
  color: rgba(19, 32, 43, .86);
  font-weight: 700;
}

.console-section {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
  padding: 34px 0;
}

.console-preview {
  min-height: 360px;
  padding: 14px;
  border-radius: 8px;
}

.preview-top {
  display: flex;
  gap: 8px;
  padding: 8px 0 18px 4px;
}

.preview-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
}

.preview-layout {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  min-height: 286px;
}

.preview-layout aside,
.preview-main {
  border-radius: 8px;
  background: rgba(255, 255, 255, .32);
  border: 1px solid rgba(255, 255, 255, .64);
}

.preview-layout aside {
  padding: 18px 14px;
}

.preview-layout aside span,
.preview-table i,
.preview-cards span {
  display: block;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .82), rgba(115, 137, 158, .18));
}

@keyframes liquidDrift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1); }
  to { transform: translate3d(1.5%, 1%, 0) scale(1.04); }
}

@keyframes shineMove {
  from { transform: translateX(-18%); }
  to { transform: translateX(18%); }
}

@keyframes blobFloatA {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-4deg) scale(1); }
  50% { transform: translate3d(38px, -24px, 0) rotate(3deg) scale(1.04); }
}

@keyframes blobFloatB {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(5deg) scale(1); }
  50% { transform: translate3d(-42px, 34px, 0) rotate(-3deg) scale(1.03); }
}

@keyframes blobFloatC {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(2deg) scale(1); }
  50% { transform: translate3d(22px, -32px, 0) rotate(-5deg) scale(1.05); }
}

@keyframes ribbonFlowA {
  0%, 100% { transform: translateX(-4%) rotate(-8deg); }
  50% { transform: translateX(5%) rotate(-5deg); }
}

@keyframes ribbonFlowB {
  0%, 100% { transform: translateX(5%) rotate(7deg); }
  50% { transform: translateX(-5%) rotate(4deg); }
}

@keyframes dropFloatA {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg) scale(1); border-radius: 56% 44% 50% 50% / 44% 48% 52% 56%; }
  50% { transform: translate3d(18px, -28px, 0) rotate(7deg) scale(1.06); border-radius: 45% 55% 58% 42% / 54% 42% 58% 46%; }
}

@keyframes dropFloatB {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(6deg) scale(1); border-radius: 48% 52% 43% 57% / 52% 46% 54% 48%; }
  50% { transform: translate3d(-24px, 22px, 0) rotate(-9deg) scale(.96); border-radius: 62% 38% 54% 46% / 42% 58% 42% 58%; }
}

@keyframes dropFloatC {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(2deg) scale(1); border-radius: 52% 48% 47% 53% / 44% 54% 46% 56%; }
  50% { transform: translate3d(14px, 18px, 0) rotate(-6deg) scale(1.08); border-radius: 42% 58% 57% 43% / 58% 40% 60% 42%; }
}

@keyframes capsuleWave {
  from { transform: translateX(-6%) rotate(-3deg) scale(1); }
  to { transform: translateX(8%) rotate(3deg) scale(1.06); }
}

.preview-layout aside span {
  height: 14px;
  margin-bottom: 18px;
}

.preview-main {
  padding: 16px;
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.preview-cards span {
  height: 74px;
}

.preview-table {
  display: grid;
  gap: 10px;
}

.preview-table i {
  height: 36px;
}

.security-section {
  grid-template-columns: 1fr auto;
}

@media (max-width: 980px) {
  .site-shell {
    width: min(100% - 28px, 760px);
  }

  .nav-links {
    display: none;
  }

  .hero-section,
  .flow-section,
  .console-section,
  .security-section {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 640px) {
  body {
    background-attachment: scroll;
  }

  .site-shell {
    width: calc(100% - 24px);
    padding-top: 12px;
  }

  .topbar {
    top: 10px;
    min-height: 60px;
    padding: 0 10px 0 14px;
  }

  .nav-actions {
    display: none;
  }

  .brand {
    font-size: 17px;
    min-width: 0;
  }

  h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.12;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .hero-lead,
  .eyebrow {
    max-width: 100%;
    word-break: break-all;
    overflow-wrap: break-word;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.82;
  }

  .lead-desktop {
    display: none;
  }

  .lead-mobile {
    display: inline;
  }

  .hero-section {
    gap: 26px;
  }

  .hero-copy {
    min-width: 0;
  }

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

  .hero-metrics,
  .feature-band,
  .flow-grid,
  .preview-layout,
  .preview-cards {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    width: min(330px, 100%);
    transform: none;
  }

  .hero-visual {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .task-panel {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .visual-drop {
    display: none;
  }

  .liquid-status {
    display: none;
  }

  .flow-section,
  .security-section {
    padding: 22px;
  }
}

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

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass-panel,
  .phone-glass,
  .water-drop,
  .visual-drop {
    background: rgba(255, 255, 255, .86);
  }
}

