
:root {
  color-scheme: light;
  --canvas: #FCFCFF;
  --canvas-2: #F8FAFF;
  --surface: #FFFFFF;
  --surface-soft: #F4F6FF;
  --surface-lavender: #F4F0FF;
  --ink: #0D1B3D;
  --ink-2: #24375F;
  --muted: #667085;
  --muted-2: #8A90A6;
  --border: #E4E7F2;
  --border-strong: #DAD7FF;
  --violet: #5B3FF6;
  --blue: #3D7CFF;
  --aqua: #2ED4C5;
  --pink: #FF8FA3;
  --peach: #FFD7B8;
  --lavender: #EDE7FF;
  --dark: #071431;
  --dark-2: #0D1B3D;
  --face: #061326;
  --eye: #28F6E9;
  --brand-gradient: linear-gradient(135deg, #5B3FF6 0%, #3D7CFF 52%, #2ED4C5 100%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(91,63,246,.16), rgba(61,124,255,.10), rgba(46,212,197,.12));
  --orb-gradient: radial-gradient(circle at 34% 20%, #FFD7B8 0%, #FF8FA3 22%, #A96CFF 55%, #3D7CFF 78%, #2ED4C5 100%);
  --dark-gradient: linear-gradient(180deg, #0D1B3D 0%, #061326 100%);
  --halo: radial-gradient(circle, rgba(91,63,246,.18) 0%, rgba(61,124,255,.12) 34%, rgba(46,212,197,.08) 56%, rgba(255,255,255,0) 72%);
  --shadow-card: 0 12px 34px rgba(13, 27, 61, 0.08);
  --shadow-floating: 0 26px 80px rgba(91, 63, 246, 0.13);
  --shadow-orb: 0 22px 48px rgba(91, 63, 246, 0.22), 0 0 36px rgba(46, 212, 197, 0.18);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-2xl: 48px;
  --pill: 999px;
  --ease-soft: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 9%, rgba(237,231,255,.76) 0%, rgba(237,231,255,0) 30%),
    radial-gradient(circle at 86% 6%, rgba(46,212,197,.17) 0%, rgba(46,212,197,0) 30%),
    radial-gradient(circle at 50% 0%, rgba(61,124,255,.10) 0%, rgba(61,124,255,0) 36%),
    linear-gradient(180deg, #FCFCFF 0%, #F8FAFF 45%, #FFFFFF 100%);
  font-family: Inter, "SF Pro Display", "SF Pro Text", Circular, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.5;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: .58;
  background-image:
    linear-gradient(rgba(91,63,246,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,124,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}
body::after {
  content: "";
  position: fixed;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  left: 50%;
  top: -420px;
  transform: translateX(-50%);
  background: var(--halo);
  pointer-events: none;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: min(1230px, calc(100% - 56px));
  margin: 0 auto;
}
.container.narrow { width: min(930px, calc(100% - 56px)); }

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  background: var(--ink);
  color: white;
  padding: 12px 16px;
  border-radius: var(--pill);
  z-index: 9999;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 12px 0;
}
.nav-shell {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(218, 215, 255, .72);
  border-radius: var(--pill);
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 42px rgba(13,27,61,.06);
  backdrop-filter: blur(18px);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}
.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 16px;
  background: var(--brand-gradient);
  box-shadow: 0 12px 24px rgba(61,124,255,.25);
  font-weight: 900;
  font-size: 23px;
  letter-spacing: -.08em;
}
.logo-text strong {
  display: block;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.logo-text span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
}
.nav-item, .nav-group > a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: var(--pill);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 750;
  transition: background 180ms var(--ease-soft), transform 180ms var(--ease-soft), color 180ms var(--ease-soft);
}
.nav-item:hover, .nav-group:hover > a, .nav-group:focus-within > a {
  background: rgba(237,231,255,.72);
  color: var(--violet);
}
.nav-group { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 290px;
  transform: translate(-50%, -6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease-soft), transform 180ms var(--ease-soft);
  padding: 10px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(218,215,255,.8);
  box-shadow: 0 22px 70px rgba(13,27,61,.13);
  backdrop-filter: blur(18px);
}
.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.dropdown a {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 16px;
}
.dropdown a:hover { background: var(--surface-soft); }
.dropdown strong { font-size: 13px; }
.dropdown span { color: var(--muted); font-size: 12px; letter-spacing: -0.01em; }
.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--pill);
  color: white;
  font-weight: 850;
  font-size: 14px;
  background: var(--brand-gradient);
  box-shadow: 0 12px 26px rgba(61,124,255,.24);
}

main { position: relative; }
.section { padding: 110px 0; }
.section.compact { padding: 80px 0; }
.hero { padding: 92px 0 118px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  gap: 58px;
  align-items: center;
}
.hero-text { position: relative; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--pill);
  background: rgba(237,231,255,.72);
  color: var(--violet);
  border: 1px solid rgba(218,215,255,.86);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 5px rgba(46,212,197,.12);
}
.hero h1, .page-hero h1, .section-title h2, .cta h2 {
  margin: 22px 0 20px;
  font-weight: 900;
  line-height: .93;
  letter-spacing: -0.072em;
  color: var(--ink);
}
.hero h1 { font-size: clamp(58px, 6.8vw, 104px); max-width: 840px; }
.page-hero h1 { font-size: clamp(52px, 7vw, 92px); max-width: 1000px; }
.section-title h2 { font-size: clamp(42px, 5.2vw, 72px); max-width: 870px; }
.cta h2 { font-size: clamp(42px, 5vw, 76px); color: white; }
.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
  max-width: 710px;
  letter-spacing: -0.02em;
}
.hero-actions, .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border-radius: var(--pill);
  font-weight: 850;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 180ms var(--ease-soft), box-shadow 180ms var(--ease-soft), background 180ms var(--ease-soft);
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  color: white;
  background: var(--brand-gradient);
  box-shadow: 0 16px 32px rgba(61,124,255,.25);
}
.btn.secondary {
  color: var(--ink);
  background: rgba(255,255,255,.86);
  border-color: var(--border-strong);
  box-shadow: 0 10px 24px rgba(13,27,61,.05);
}
.btn.dark {
  color: white;
  background: var(--ink);
  border-color: rgba(255,255,255,.16);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--pill);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(218,215,255,.7);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(13,27,61,.04);
}
.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 12px rgba(46,212,197,.65);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 4% -10% auto auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--halo);
  filter: blur(2px);
}
.console {
  position: relative;
  width: min(100%, 590px);
  min-height: 460px;
  padding: 32px;
  border-radius: var(--radius-2xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(250,251,255,.84)),
    radial-gradient(circle at 20% 12%, rgba(255,143,163,.16), transparent 30%);
  border: 1px solid rgba(255,255,255,.84);
  box-shadow: var(--shadow-floating), inset 0 0 0 1px rgba(218,215,255,.45);
  overflow: hidden;
}
.console::before {
  content: "";
  position: absolute;
  inset: 46px;
  border-radius: 50%;
  border: 1px solid rgba(91,63,246,.20);
  box-shadow: 0 0 0 52px rgba(237,231,255,.42), 0 0 0 104px rgba(61,124,255,.08), 0 0 0 156px rgba(46,212,197,.04);
}
.console .map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .58;
}
.map-svg path, .map-svg circle { vector-effect: non-scaling-stroke; }
.orb-center {
  position: absolute;
  left: 50%;
  top: 49%;
  transform: translate(-50%, -50%);
}
.qrio-orb {
  position: relative;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  background: var(--orb-gradient);
  box-shadow: var(--shadow-orb);
  animation: orb-breathe 3.4s ease-in-out infinite;
}
.qrio-orb.medium { width: 126px; height: 126px; }
.qrio-orb.small { width: 74px; height: 74px; }
.qrio-orb::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 51%;
  width: 72px;
  height: 36px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--face);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 0 20px rgba(40,246,233,.12);
}
.qrio-orb.medium::before { width: 58px; height: 30px; }
.qrio-orb.small::before { width: 38px; height: 20px; }
.qrio-orb::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 51%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--eye);
  box-shadow: -17px 0 0 var(--eye), 0 0 12px rgba(40,246,233,.7), -17px 0 12px rgba(40,246,233,.7);
}
.qrio-orb.medium::after { width: 7px; height: 7px; box-shadow: -14px 0 0 var(--eye), 0 0 12px rgba(40,246,233,.7), -14px 0 12px rgba(40,246,233,.7); }
.qrio-orb.small::after { width: 4px; height: 4px; box-shadow: -9px 0 0 var(--eye), 0 0 9px rgba(40,246,233,.7), -9px 0 9px rgba(40,246,233,.7); }
.node {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 3px solid white;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(61,124,255,.12), 0 0 16px rgba(61,124,255,.35);
}
.node.n1 { left: 120px; top: 98px; }
.node.n2 { right: 92px; top: 144px; background: var(--violet); }
.node.n3 { right: 86px; bottom: 114px; background: var(--pink); }
.node.n4 { left: 92px; bottom: 118px; background: var(--aqua); }
.floating-card {
  position: absolute;
  width: 210px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(228,231,242,.82);
  box-shadow: 0 18px 42px rgba(13,27,61,.13);
  backdrop-filter: blur(16px);
}
.floating-card .num, .layer-num {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  color: white;
  background: var(--brand-gradient);
  font-size: 12px;
  font-weight: 900;
}
.floating-card h3 { margin: 10px 0 6px; font-size: 16px; line-height: 1.15; letter-spacing: -0.04em; }
.floating-card p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.45; letter-spacing: -0.01em; }
.floating-card.top { right: -20px; top: 72px; }
.floating-card.bottom { left: -18px; bottom: 72px; }
.dark-chat {
  position: absolute;
  right: 36px;
  bottom: 34px;
  width: 270px;
  padding: 18px;
  border-radius: 26px;
  background: var(--dark-gradient);
  color: white;
  box-shadow: 0 22px 54px rgba(7,20,49,.34);
  overflow: hidden;
}
.dark-chat::before {
  content: "";
  position: absolute;
  inset: -90px -60px auto auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,212,197,.36), transparent 68%);
}
.chat-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.status-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 18px rgba(255,143,163,.82); }
.msg {
  position: relative;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 15px;
  color: #DDE5FF;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.msg.user {
  margin-left: 46px;
  color: white;
  background: linear-gradient(135deg, #5B3FF6, #3D7CFF);
  border: 0;
}
.wave {
  position: relative;
  display: flex;
  align-items: end;
  gap: 6px;
  margin-top: 16px;
  height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.wave i {
  display: block;
  width: 5px;
  height: 13px;
  border-radius: 8px;
  background: var(--aqua);
  animation: voice 900ms ease-in-out infinite alternate;
}
.wave i:nth-child(2) { height: 22px; background: var(--pink); animation-delay: 120ms; }
.wave i:nth-child(3) { height: 16px; background: var(--blue); animation-delay: 220ms; }
.wave i:nth-child(4) { height: 28px; background: var(--violet); animation-delay: 320ms; }
.wave i:nth-child(5) { height: 18px; background: var(--aqua); animation-delay: 420ms; }

.section-title { text-align: center; margin: 0 auto 48px; max-width: 900px; }
.section-title .eyebrow { margin-bottom: 4px; }
.section-title p { margin: 0 auto; color: var(--muted); font-size: 18px; line-height: 1.7; max-width: 720px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  position: relative;
  padding: 31px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(228,231,242,.84);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 180ms var(--ease-soft), box-shadow 180ms var(--ease-soft), border-color 180ms var(--ease-soft);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 18px 46px rgba(13,27,61,.10); border-color: rgba(218,215,255,.95); }
.card h3 { margin: 18px 0 10px; font-size: 24px; line-height: 1.05; letter-spacing: -0.05em; }
.card p { margin: 0; color: var(--muted); line-height: 1.65; }
.icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--violet);
  background: rgba(237,231,255,.75);
  border: 1px solid rgba(218,215,255,.74);
  font-weight: 950;
  font-size: 22px;
}
.icon.gradient { color: white; background: var(--brand-gradient); border: 0; box-shadow: 0 12px 24px rgba(61,124,255,.18); }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--violet);
  font-weight: 850;
  font-size: 13px;
}
.card-link::after { content: "→"; }

.panel {
  position: relative;
  padding: 36px;
  border-radius: var(--radius-2xl);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(228,231,242,.88);
  box-shadow: var(--shadow-floating);
  overflow: hidden;
}
.panel::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -190px;
  top: -210px;
  border-radius: 50%;
  background: var(--halo);
  opacity: .9;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.device-wrap {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 48% 50%, rgba(91,63,246,.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(244,240,255,.56));
  border: 1px solid rgba(218,215,255,.72);
  overflow: hidden;
}
.device {
  position: relative;
  width: 188px;
  height: 306px;
  border-radius: 34px;
  background: linear-gradient(180deg, #FFFFFF, #F7F8FF);
  box-shadow: 0 18px 46px rgba(13,27,61,.16), inset 0 0 0 1px rgba(218,215,255,.78);
  display: grid;
  place-items: center;
}
.device-screen {
  width: 142px;
  height: 206px;
  border-radius: 26px;
  background: var(--dark-gradient);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.device-label {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  min-height: 26px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--pill);
  background: #fff;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 20px rgba(13,27,61,.08);
}
.feature-list { display: grid; gap: 16px; }
.feature-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: start;
  padding: 19px;
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(228,231,242,.86);
  box-shadow: 0 10px 24px rgba(13,27,61,.05);
}
.feature-row h3 { margin: 0 0 5px; font-size: 18px; letter-spacing: -0.04em; }
.feature-row p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.dark-section {
  position: relative;
  padding: 56px;
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at 16% 0%, rgba(91,63,246,.35), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(46,212,197,.18), transparent 32%),
    var(--dark-gradient);
  color: white;
  box-shadow: 0 28px 80px rgba(7,20,49,.22);
  overflow: hidden;
}
.dark-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.dark-section > * { position: relative; z-index: 1; }
.dark-section h2, .dark-section h3 { color: white; }
.dark-section p { color: rgba(255,255,255,.72); }
.layer-stack { display: grid; gap: 12px; margin-top: 24px; }
.layer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 15px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.08);
}
.layer strong { font-size: 14px; }
.layer span { color: rgba(255,255,255,.62); font-size: 11px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.system-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 26px; align-items: stretch; }
.system-card { height: 100%; }

.flow-panel {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 36px;
  align-items: center;
}
.flow-lines {
  position: relative;
  height: 280px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(228,231,242,.82);
  overflow: hidden;
}
.flow-lines svg { width: 100%; height: 100%; }
.flow-card-mini {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 260px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(228,231,242,.88);
  box-shadow: 0 14px 38px rgba(13,27,61,.09);
}
.flow-card-mini strong { display: block; font-size: 15px; letter-spacing: -0.03em; margin-bottom: 6px; }
.flow-card-mini p { margin: 0; color: var(--muted); font-size: 12px; }

.page-hero {
  padding: 96px 0 64px;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 58px;
  align-items: center;
}
.page-orb-card {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 28px;
  border-radius: var(--radius-2xl);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(228,231,242,.86);
  box-shadow: var(--shadow-floating);
  overflow: hidden;
}
.page-orb-card::before {
  content: "";
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 1px solid rgba(91,63,246,.18);
  box-shadow: 0 0 0 52px rgba(237,231,255,.48), 0 0 0 104px rgba(46,212,197,.08);
}
.page-orb-card .qrio-orb { position: relative; z-index: 1; }
.meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.meta {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(228,231,242,.85);
}
.meta strong { display: block; font-size: 22px; letter-spacing: -0.05em; }
.meta span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; font-weight: 760; }

.text-card {
  padding: 38px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(228,231,242,.86);
  box-shadow: var(--shadow-card);
}
.text-card h2 { margin: 0 0 16px; font-size: 34px; line-height: 1; letter-spacing: -0.055em; }
.text-card h3 { margin: 26px 0 8px; font-size: 22px; line-height: 1.1; letter-spacing: -0.045em; }
.text-card p, .text-card li { color: var(--muted); line-height: 1.72; }
.text-card p:last-child { margin-bottom: 0; }
.text-card ul { padding-left: 22px; margin: 16px 0 0; }
.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 22px;
}
.table tr { border-bottom: 1px solid rgba(228,231,242,.82); }
.table tr:last-child { border-bottom: 0; }
.table th, .table td { text-align: left; padding: 18px 16px; }
.table th { width: 36%; color: var(--ink); font-size: 13px; }
.table td { color: var(--muted); font-size: 14px; }
.notice {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(237,231,255,.62);
  border: 1px solid rgba(218,215,255,.8);
  color: var(--ink-2);
}
.notice strong { display:block; margin-bottom:4px; }
.notice p { margin:0; color:var(--muted); }

.form-card {
  display: grid;
  gap: 12px;
}
.input, textarea.input {
  width: 100%;
  border: 1px solid rgba(218,215,255,.86);
  background: rgba(255,255,255,.82);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--ink);
  outline: none;
}
textarea.input { min-height: 134px; resize: vertical; }
.input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(61,124,255,.12); }
.label { display:block; margin: 0 0 7px; font-size: 12px; color: var(--muted); font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

.policy-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 34px;
  align-items: start;
}
.side-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(228,231,242,.86);
  box-shadow: var(--shadow-card);
}
.side-nav a {
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}
.side-nav a:hover { background: var(--surface-soft); color: var(--violet); }
.policy-content { display: grid; gap: 20px; }
.policy-content .text-card { scroll-margin-top: 120px; }

.cta {
  margin: 30px auto 110px;
  width: min(1180px, calc(100% - 56px));
  padding: 74px 46px;
  text-align: center;
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at 24% 12%, rgba(91,63,246,.44), transparent 34%),
    radial-gradient(circle at 84% 16%, rgba(46,212,197,.22), transparent 38%),
    var(--dark-gradient);
  color: white;
  box-shadow: 0 30px 90px rgba(7,20,49,.24);
  overflow: hidden;
  position: relative;
}
.cta p { margin: 0 auto 28px; color: rgba(255,255,255,.74); max-width: 720px; font-size: 17px; line-height: 1.7; }
.cta .btn.secondary { background: white; color: var(--ink); }

.site-footer {
  background: var(--dark);
  color: white;
  padding: 58px 0 42px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 28px;
  align-items: start;
}
.footer-brand .logo-mark { box-shadow: none; }
.footer-brand p { color: rgba(255,255,255,.56); max-width: 310px; line-height: 1.65; }
.footer-col h3 {
  margin: 0 0 14px;
  color: white;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  margin: 9px 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}
.footer-col a:hover { color: white; }
.footer-col span {
  display: block;
  margin: 9px 0;
  color: rgba(255,255,255,.56);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}
.table a { color: var(--violet); font-weight: 800; }
.form-card .btn { width: fit-content; border: 0; cursor: pointer; }
.page-hero .meta-row { max-width: 760px; }
@media (max-width: 760px) {
  .table th, .table td { display: block; width: 100%; padding: 12px 14px; }
  .table th { padding-bottom: 2px; }
  .table td { padding-top: 2px; }
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.09);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.44);
  font-size: 12px;
}

@keyframes orb-breathe { 0%,100%{ transform: scale(1);} 50%{ transform: scale(1.025);} }
@keyframes voice { from{ transform: scaleY(.62); opacity:.72;} to{ transform: scaleY(1.12); opacity:1;} }

@media (max-width: 1100px) {
  .nav-links { display:none; }
  .hero-grid, .page-hero-grid, .split, .system-grid, .flow-panel, .policy-layout { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .side-nav { position: relative; top: auto; }
}
@media (max-width: 760px) {
  .container, .container.narrow { width: min(100% - 32px, 100%); }
  .site-header { padding: 8px 0; }
  .nav-shell { border-radius: 28px; align-items: flex-start; }
  .nav-cta { display: none; }
  .hero { padding: 56px 0 74px; }
  .page-hero { padding: 58px 0 40px; }
  .hero h1, .page-hero h1 { font-size: clamp(42px, 15vw, 58px); }
  .section { padding: 72px 0; }
  .section-title h2 { font-size: 40px; }
  .grid-3, .grid-2, .grid-4, .meta-row, .footer-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 470px; }
  .console { padding: 22px; min-height: 420px; }
  .floating-card.top { right: 14px; top: 24px; }
  .floating-card.bottom { left: 14px; bottom: 20px; }
  .dark-chat { right: 18px; bottom: 26px; width: 245px; }
  .qrio-orb { width: 132px; height: 132px; }
  .panel, .dark-section { padding: 24px; border-radius: 32px; }
  .device-wrap { min-height: 430px; }
  .cta { width: min(100% - 32px, 100%); padding: 54px 24px; margin-bottom: 72px; }
  .footer-bottom { flex-direction: column; }
}

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