:root {
  --bg: #fbfbfd;
  --card: #f5f5f7;
  --ink: #1d1d1f;
  --gray: #6e6e73;
  --gray-2: #86868b;
  --hairline: rgba(0, 0, 0, 0.08);
  --orange: #f56300;
  --orange-deep: #e1560a;
  --orange-grad: linear-gradient(180deg, #ff7a1a, #f05e00);
  --green: #248a3d;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "SF Mono", "Roboto Mono", Menlo, monospace;
  --radius-card: 26px;
  --pw: 300px;
}

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

html, body { overflow-x: clip; }
html { scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(245, 99, 0, 0.22); }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
}
.eyebrow-light { color: #ff8a3d; }

.sec-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.06;
  margin-top: 10px;
}
.sec-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--gray);
  max-width: 44ch;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange-grad);
  color: #fff;
  box-shadow: 0 6px 18px rgba(240, 94, 0, 0.28);
}
.btn-primary:hover { filter: brightness(1.06); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(240, 94, 0, 0.34); }
.btn-ghost { color: var(--orange-deep); padding-inline: 14px; }
.btn-ghost:hover { opacity: 0.75; }
.btn-ghost .chev { font-size: 19px; line-height: 1; transform: translateY(-1px); }
.btn-buy { background: var(--orange-grad); color: #fff; padding: 7px 18px; font-size: 13px; }
.btn-buy:hover { filter: brightness(1.07); }
.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.2); }
.btn-xl { padding: 16px 34px; font-size: 17px; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.is-scrolled {
  background: rgba(251, 251, 253, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--hairline);
}
.nav.is-dark.is-scrolled { background: rgba(10, 10, 12, 0.6); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12); }
.nav.is-dark .nav-logo, .nav.is-dark .nav-links a { color: #f5f5f7; }
.nav.is-dark .nav-links a:hover { color: #ff8a3d; }
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 22px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.logo-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange-grad);
  display: inline-block;
}
.nav-links { display: flex; gap: clamp(18px, 3vw, 34px); }
.nav-links a {
  font-size: 12.5px;
  font-weight: 500;
  color: #424245;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--orange-deep); }

.hero {
  padding: clamp(110px, 16vh, 170px) 22px 40px;
  text-align: center;
  position: relative;
}
.hero-title {
  font-size: clamp(52px, 9vw, 104px);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.0;
  margin-top: 14px;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--gray);
  max-width: 52ch;
  margin: 18px auto 0;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-fineprint {
  font-size: 12.5px;
  color: var(--gray-2);
  margin-top: 34px;
}

.hero-stage {
  position: relative;
  margin: clamp(40px, 7vh, 72px) auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pscene { perspective: 1500px; }
.pscene-hero { --pw: clamp(230px, 24vw, 310px); }

.hero-hud {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
  padding: 10px 18px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}
.hud-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: var(--gray-2); }
.hud-angle {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  min-width: 3.2ch;
  text-align: right;
}
.hud-state {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  transition: background 0.3s, color 0.3s;
}
.hud-state.is-clear { background: rgba(36, 138, 61, 0.12); color: var(--green); }
.hud-state.is-private { background: rgba(245, 99, 0, 0.14); color: var(--orange-deep); }
.hero-hint { font-size: 12px; color: var(--gray-2); margin-top: 14px; transition: opacity 0.5s; }

.phone {
  position: relative;
  width: var(--pw);
  height: calc(var(--pw) * 2.05);
  transform-style: preserve-3d;
  margin: 0 auto;
}

.ph-back {
  position: absolute;
  inset: 0;
  border-radius: calc(var(--pw) * 0.16);
  background:
    radial-gradient(120% 60% at 30% 0%, rgba(255, 255, 255, 0.28), transparent 60%),
    linear-gradient(180deg, #ff9e5e 0%, #f56300 38%, #e1560a 72%, #c4490b 100%);
  transform: translateZ(-7px) rotateY(180deg);
  backface-visibility: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.plateau {
  position: absolute;
  top: 3.5%;
  left: 6%;
  right: 6%;
  height: 15%;
  border-radius: calc(var(--pw) * 0.09);
  background: linear-gradient(180deg, #e65d07, #cf4f06);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.28), inset 0 -2px 6px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  padding-left: 6%;
  gap: 7%;
}
.lens {
  width: 17%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 32%, rgba(140, 180, 255, 0.35), transparent 42%),
    radial-gradient(circle at 50% 50%, #1a1c22 58%, #33363f 62%, #14161b 70%, #3a3d46 100%);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.4);
}
.lidar {
  width: 6%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #4a4d55, #101216 70%);
  margin-left: auto;
  margin-right: 8%;
}
.ph-backmark {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-size: calc(var(--pw) * 0.045);
  font-weight: 800;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.5);
}

.ph-rail {
  position: absolute;
  top: calc(var(--pw) * 0.15);
  bottom: calc(var(--pw) * 0.15);
  width: 14px;
  background: linear-gradient(180deg, #ff8e42, #e35a08 50%, #c94b08);
  box-shadow: inset 2px 0 2px rgba(255, 255, 255, 0.35), inset -2px 0 3px rgba(0, 0, 0, 0.3);
}
.ph-rail-l { left: 0; transform-origin: left center; transform: translateZ(7px) rotateY(90deg); }
.ph-rail-r { right: 0; transform-origin: right center; transform: translateZ(7px) rotateY(-90deg); }

.ph-front {
  position: absolute;
  inset: 0;
  border-radius: calc(var(--pw) * 0.16);
  background: #101014;
  transform: translateZ(7px);
  backface-visibility: hidden;
  box-shadow: inset 0 0 0 1.5px rgba(255, 145, 70, 0.55), 0 40px 80px -30px rgba(29, 29, 31, 0.45);
}
.ph-screen {
  position: absolute;
  inset: calc(var(--pw) * 0.028);
  border-radius: calc(var(--pw) * 0.135);
  overflow: hidden;
  background: #fff;
}
.ph-island {
  position: absolute;
  top: calc(var(--pw) * 0.055);
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--pw) * 0.30);
  height: calc(var(--pw) * 0.082);
  border-radius: 999px;
  background: #050507;
  z-index: 5;
}

.scr-app {
  position: absolute;
  inset: 0;
  font-size: calc(var(--pw) * 0.047);
  padding: 1.35em 1.05em 1em;
  background: linear-gradient(180deg, #fdfdfe, #f4f4f7);
  display: flex;
  flex-direction: column;
}
.app-status {
  display: flex;
  justify-content: space-between;
  font-size: 0.62em;
  font-weight: 600;
  color: #333;
  padding: 0 0.4em;
}
.app-sig { letter-spacing: -0.05em; font-size: 0.8em; opacity: 0.7; align-self: center; }
.app-hello { font-size: 0.72em; color: var(--gray-2); margin-top: 2.2em; }
.app-balance-label { font-size: 0.62em; color: var(--gray-2); margin-top: 1.2em; }
.app-balance {
  font-size: 1.55em;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.app-balance span { font-size: 0.62em; color: var(--gray-2); font-weight: 600; }
.app-card {
  margin-top: 1em;
  border-radius: 0.8em;
  background: linear-gradient(120deg, #ff8a3d, #ec5c04 62%, #d14e06);
  color: #fff;
  padding: 0.9em 0.9em 0.7em;
  display: flex;
  flex-direction: column;
  gap: 1.6em;
  box-shadow: 0 6px 14px rgba(236, 92, 4, 0.25);
}
.app-card-brand { font-size: 0.5em; font-weight: 800; letter-spacing: 0.18em; opacity: 0.9; }
.app-card-num { font-size: 0.62em; font-weight: 600; letter-spacing: 0.08em; }
.app-txns { margin-top: 1.1em; display: flex; flex-direction: column; gap: 0.55em; }
.txn {
  display: flex;
  align-items: center;
  gap: 0.6em;
  background: #fff;
  border-radius: 0.7em;
  padding: 0.55em 0.7em;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.txn-ic { width: 1.5em; height: 1.5em; border-radius: 50%; flex: none; }
.ic-a { background: linear-gradient(135deg, #8ec5ff, #5a9df0); }
.ic-b { background: linear-gradient(135deg, #7ee2a8, #3cb371); }
.ic-c { background: linear-gradient(135deg, #d0b3ff, #9a6ff0); }
.txn-name { font-size: 0.66em; font-weight: 600; }
.txn-amt { margin-left: auto; font-size: 0.66em; font-weight: 700; font-variant-numeric: tabular-nums; }
.txn-amt.plus { color: var(--green); }

.scr-louver {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(5, 5, 8, 0.85) 0 1.5px, transparent 1.5px 5px);
  opacity: 0.05;
  pointer-events: none;
}
.scr-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, #030305 20%, #0a0a10 60%, #14141c);
  opacity: 0;
  pointer-events: none;
}
.scr-glare {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.22) 50%, transparent 58%);
  pointer-events: none;
}
.scr-off { position: absolute; inset: 0; background: #050507; }

.ph-glass {
  position: absolute;
  inset: calc(var(--pw) * 0.02);
  border-radius: calc(var(--pw) * 0.14);
  transform: translateZ(11px);
  backface-visibility: hidden;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 45%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  overflow: hidden;
  pointer-events: none;
}
.glass-shine {
  position: absolute;
  top: -20%;
  bottom: -20%;
  width: 34%;
  left: -60%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg);
}

.ph-chip {
  position: absolute;
  transform: translateZ(70px);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
  box-shadow: 0 8px 22px rgba(29, 29, 31, 0.10);
  white-space: nowrap;
}
.ph-chip b { color: var(--ink); font-weight: 700; margin-right: 3px; }
.chip-1 { right: -26%; top: 16%; }
.chip-2 { left: -22%; top: 42%; }
.chip-3 { right: -22%; bottom: 22%; }

.overview {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(90px, 13vh, 150px) 22px;
  text-align: center;
}
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
  margin-top: clamp(40px, 6vh, 64px);
  text-align: left;
}
.bcard {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.4, 1), box-shadow 0.35s ease;
}
.bcard:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(29, 29, 31, 0.08); }
.bcard h3 b {
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  display: block;
}
.bcard h3 b i { font-style: normal; font-size: 0.5em; color: var(--gray-2); font-weight: 600; }
.bcard p { font-size: 14px; color: var(--gray); margin-top: 8px; max-width: 34ch; }
.bcard-big { grid-column: span 2; grid-row: span 2; }
.bcard-big h3 b { font-size: clamp(48px, 5.4vw, 72px); }
.bcard-wide { grid-column: span 2; }

.louver-demo {
  position: absolute;
  inset: 26px 26px 46%;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  perspective: 700px;
}
.ld-bars {
  position: absolute;
  inset: -12%;
  background:
    linear-gradient(120deg, #ffd9b8, #ffb37a 45%, #f56300 130%),
    #fff;
  background-blend-mode: normal;
  animation: ld-tilt 6s ease-in-out infinite;
}
.ld-bars::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(10, 10, 14, 0.9) 0 3px, transparent 3px 11px);
  opacity: 0.14;
}
.ld-bars::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0a0a0e;
  opacity: 0;
  animation: ld-shade 6s ease-in-out infinite;
  z-index: 2;
}
@keyframes ld-tilt {
  0%, 12%, 88%, 100% { transform: rotateY(0deg); }
  40%, 62% { transform: rotateY(38deg); }
}
@keyframes ld-shade {
  0%, 14%, 86%, 100% { opacity: 0; }
  42%, 60% { opacity: 0.93; }
}
.ld-eye {
  position: absolute;
  z-index: 3;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--hairline);
  color: var(--ink);
}
.ld-eye-you { left: 12px; top: 12px; }
.ld-eye-them { right: 12px; bottom: 12px; color: var(--gray-2); }

.glare-strip {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.85) 46%, rgba(255, 255, 255, 0.2) 52%, transparent 66%);
  transform: translateX(-120%);
  animation: glare-run 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glare-run {
  0%, 55% { transform: translateX(-120%); }
  85%, 100% { transform: translateX(120%); }
}

.demo { background: #fff; border-block: 1px solid var(--hairline); }
.demo-pin {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.demo-glow {
  position: absolute;
  top: 50%;
  right: 3%;
  width: min(60vw, 880px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 99, 0, 0.13), rgba(245, 99, 0, 0.045) 44%, transparent 66%);
  filter: blur(12px);
  opacity: 0;
  pointer-events: none;
}
.demo-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5.5vw, 88px);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(28px, 5vw, 88px);
}
.demo-copy { position: relative; min-height: 360px; }
.dcopy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dcopy .eyebrow { font-family: var(--mono); letter-spacing: 0.14em; }
.dcopy .sec-title { font-size: clamp(42px, 5.6vw, 74px); line-height: 1.0; }
.dcopy .sec-sub { max-width: 42ch; font-size: clamp(18px, 1.5vw, 21px); margin-top: 22px; }
.dcopy-b { opacity: 0; visibility: hidden; }

.demo-stage { display: flex; justify-content: center; align-items: center; }
.pscene-demo { --pw: clamp(240px, 22vw, 320px); }

.demo-hud {
  position: absolute;
  left: 50%;
  bottom: clamp(26px, 5vh, 54px);
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 11px 20px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(29, 29, 31, 0.07);
}

.layers { background: var(--bg); }
.layers-pin {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 22px;
}
.layers-inner { width: 100%; max-width: 1180px; margin: 0 auto; }
.layers-head { text-align: center; }
.layers-stage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 20px;
  margin-top: clamp(30px, 5vh, 60px);
}
.lstack {
  position: relative;
  width: min(30vw, 340px);
  aspect-ratio: 10 / 17;
  margin: 0 auto;
  transform-style: preserve-3d;
  transform: rotateX(56deg) rotateZ(-32deg);
}
.lplane {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.lp-face {
  position: absolute;
  inset: 0;
  border-radius: 13% / 7.6%;
  box-shadow: 0 30px 60px -30px rgba(29, 29, 31, 0.25);
}
.lp-1 .lp-face {
  background: linear-gradient(135deg, rgba(150, 210, 255, 0.28), rgba(150, 210, 255, 0.08));
  border: 1px solid rgba(120, 190, 255, 0.55);
}
.lp-2 .lp-face {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(240, 240, 244, 0.5));
  border: 1px solid rgba(0, 0, 0, 0.07);
}
.lp-3 .lp-face {
  background: repeating-linear-gradient(90deg, rgba(29, 29, 31, 0.75) 0 2.5px, rgba(245, 99, 0, 0.12) 2.5px 9px);
  border: 1px solid rgba(29, 29, 31, 0.4);
}
.lp-4 .lp-face {
  background: linear-gradient(135deg, rgba(160, 205, 250, 0.4), rgba(190, 220, 250, 0.16));
  border: 1px solid rgba(120, 170, 230, 0.6);
  box-shadow: inset 0 0 26px rgba(140, 190, 250, 0.25), 0 30px 60px -30px rgba(29, 29, 31, 0.25);
}
.lp-5 .lp-face {
  background: rgba(245, 99, 0, 0.10);
  border: 1.5px dashed rgba(245, 99, 0, 0.55);
}
.llabels { display: flex; flex-direction: column; gap: 22px; max-width: 380px; }
.llabel {
  border-left: 2px solid var(--hairline);
  padding-left: 18px;
  transition: border-color 0.3s;
}
.llabel b { display: block; font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.llabel span { font-size: 13.5px; color: var(--gray); }
.llabel.is-on { border-left-color: var(--orange); }

.devices {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(90px, 13vh, 150px) 22px;
  text-align: center;
}
.seg {
  position: relative;
  display: inline-flex;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 999px;
  padding: 3px;
  margin-top: 30px;
}
.seg-thumb {
  position: absolute;
  top: 3px; bottom: 3px; left: 3px;
  width: calc(50% - 3px);
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.seg-btn {
  position: relative;
  z-index: 1;
  padding: 8px 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  transition: color 0.25s;
}
.seg-btn.is-active { color: var(--ink); }

.dgrid-wrap { position: relative; margin-top: clamp(36px, 5vh, 56px); }
.dgrid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.dgrid.is-active { display: grid; }
.dcard {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 30px 20px 24px;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.4, 1), box-shadow 0.35s ease;
}
.dcard:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(29, 29, 31, 0.09); }
.dcard h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; margin-top: 18px; }
.dcard-meta { font-size: 12.5px; color: var(--gray-2); margin-top: 3px; }
.dcard-price { font-size: 13.5px; font-weight: 600; color: var(--orange-deep); margin-top: 10px; }

.dmini {
  position: relative;
  width: 78px;
  height: 158px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 12px 24px -10px rgba(29, 29, 31, 0.35);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.4, 1);
}
.dcard:hover .dmini { transform: translateY(-4px) rotate(-2deg); }
.dm-tall { height: 168px; width: 80px; }
.dmini::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 16px;
  background:
    radial-gradient(90% 60% at 70% 8%, rgba(255, 255, 255, 0.3), transparent 55%),
    linear-gradient(160deg, #2b2b31, #101014 60%);
}
.dm-galaxy { border-radius: 13px; }
.dm-galaxy::after { border-radius: 9px; }
.dm-orange { background: linear-gradient(180deg, #ff9e5e, #e1560a); }
.dm-sky { background: linear-gradient(180deg, #cfe6f5, #8fb8d4); }
.dm-lav { background: linear-gradient(180deg, #d9cfec, #a794cd); }
.dm-titan { background: linear-gradient(180deg, #5b5b62, #2e2e34); }
.dm-navy { background: linear-gradient(180deg, #33415e, #1b2436); }
.dm-mint { background: linear-gradient(180deg, #cfe8da, #93c4ab); }
.dm-gray { background: linear-gradient(180deg, #9a9aa2, #63636b); }
.dm-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 7px;
  border-radius: 999px;
  background: #000;
  z-index: 2;
}
.dm-punch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #000;
  z-index: 2;
}
.devices-note { font-size: 14px; color: var(--gray); margin-top: 34px; }
.devices-note a { color: var(--orange-deep); font-weight: 600; }
.devices-note a:hover { text-decoration: underline; }

.closing {
  background: #000;
  color: #f5f5f7;
  overflow: clip;
}
.closing-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(100px, 15vh, 170px) 22px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 40px;
}
.pscene-close { --pw: clamp(200px, 20vw, 270px); }
.phone-close { transform: rotateY(199deg) rotateX(4deg) rotateZ(-6deg); }
.phone-close .ph-front { box-shadow: inset 0 0 0 1.5px rgba(255, 145, 70, 0.55); }
.closing-title {
  font-size: clamp(44px, 6.4vw, 84px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-top: 12px;
}
.closing-sub {
  font-size: clamp(16px, 1.7vw, 20px);
  color: #a1a1a6;
  max-width: 46ch;
  margin-top: 18px;
}
.closing-ctas { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.trust {
  display: flex;
  gap: 26px;
  margin-top: 34px;
  font-size: 13px;
  color: #a1a1a6;
  flex-wrap: wrap;
}

.footer { padding: 26px 22px 34px; }
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--gray);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--orange-deep); }
.footer-legal {
  max-width: 1080px;
  margin: 14px auto 0;
  font-size: 11px;
  color: var(--gray-2);
  border-top: 1px solid var(--hairline);
  padding-top: 14px;
}

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .dgrid { grid-template-columns: repeat(2, 1fr); }
  .demo-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 58px 22px 0;
    align-content: center;
    gap: 14px;
  }
  .demo-copy { min-height: 236px; order: 1; }
  .dcopy { align-items: center; }
  .dcopy .sec-sub { margin-left: auto; margin-right: auto; }
  .dcopy .sec-title { font-size: clamp(30px, 6vw, 42px); }
  .dcopy .sec-sub { font-size: 15.5px; max-width: 34ch; margin-top: 12px; }
  .demo-stage { order: 0; }
  .demo-hud { bottom: 16px; }
  .demo-glow { width: 90vw; }
  .pscene-demo { --pw: clamp(150px, 34vw, 200px); }
  .layers-stage { grid-template-columns: 1fr; gap: 44px; }
  .lstack { width: min(52vw, 280px); }
  .llabels { margin: 0 auto; }
  .closing-inner { grid-template-columns: 1fr; text-align: center; }
  .closing-stage { order: 0; }
  .closing-copy { order: 1; display: flex; flex-direction: column; align-items: center; }
  .nav-links { display: none; }
  .ph-chip { display: none; }
  .pscene-hero { --pw: clamp(200px, 52vw, 260px); }
}

@media (max-width: 560px) {
  .layers-pin { padding: 36px 22px; }
  .lstack { width: min(44vw, 220px); }
  .layers-stage { gap: 26px; margin-top: 20px; }
  .llabels { gap: 11px; }
  .llabel { padding-left: 14px; }
  .llabel b { font-size: 13.5px; }
  .llabel span { font-size: 12px; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bcard { min-height: 170px; }
  .bcard-big { min-height: 340px; }
  .dgrid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dcard { padding: 22px 12px 18px; }
  .dmini { width: 64px; height: 130px; }
  .dm-tall { width: 66px; height: 138px; }
  .hero-ctas { gap: 10px; }
  .trust { justify-content: center; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .ld-bars, .ld-bars::before, .glare-strip, .glass-shine { animation: none !important; }
  html { scroll-behavior: auto; }
}
