:root {
  --bg: #040017;
  --bg-soft: #08031f;
  --panel: rgba(20, 14, 44, 0.72);
  --panel-2: rgba(35, 26, 65, 0.62);
  --ink: #f7f7fb;
  --muted: #b9b3ca;
  --subtle: #77708f;
  --line: rgba(190, 164, 255, 0.14);
  --line-strong: rgba(218, 200, 255, 0.28);
  --purple: #8657ff;
  --purple-2: #c7a9ff;
  --violet-hot: #f0c4ff;
  --purple-soft: rgba(134, 87, 255, 0.16);
  --white: #ffffff;
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 180px, rgba(128, 76, 255, 0.28), transparent 330px),
    radial-gradient(circle at 18% 18%, rgba(95, 46, 180, 0.18), transparent 360px),
    radial-gradient(circle at 80% 12%, rgba(74, 38, 160, 0.12), transparent 420px),
    var(--bg);
  color: var(--ink);
  font-family: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(193, 164, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(193, 164, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 26%, rgba(0, 0, 0, 0.9), transparent 68%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(160, 100, 255, 0.05) 24.2% 24.4%, transparent 24.6% 75%, rgba(160, 100, 255, 0.05) 75.2% 75.4%, transparent 75.6%),
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.08), transparent 36%);
}

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

a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-link img {
  width: 126px;
  max-width: 42vw;
  height: auto;
  display: block;
}

.legal-name {
  color: var(--subtle);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ddd7eb;
  font-size: 12px;
  padding: 7px;
  border: 1px solid rgba(226, 210, 255, 0.15);
  border-radius: 999px;
  background: rgba(19, 12, 43, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 35px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.nav-links a {
  padding: 7px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.page {
  position: relative;
}

.section,
.hero,
.policy-main {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 72px);
  display: block;
  padding: 72px 0 72px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 13px;
  border: 1px solid rgba(220, 202, 255, 0.2);
  border-radius: 999px;
  background: rgba(31, 22, 62, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #e9ddff;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: none;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  text-wrap: pretty;
}

h1 {
  max-width: 880px;
  margin: 0 auto;
  font-size: clamp(42px, 5.7vw, 74px);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-shadow: 0 0 46px rgba(180, 130, 255, 0.25);
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 19px;
  font-weight: 700;
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  max-width: 690px;
  margin: 18px auto 0;
  font-size: clamp(15px, 1.45vw, 18px);
  color: #cfc9db;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(227, 211, 255, 0.2);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button.primary {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, #8d67ff, #5e37c8);
  color: var(--white);
  box-shadow: 0 0 38px rgba(128, 70, 255, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-card {
  position: relative;
  width: min(860px, 100%);
  min-height: 410px;
  margin: 48px auto 0;
  border: 1px solid rgba(216, 198, 255, 0.18);
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(58, 43, 103, 0.64), rgba(11, 6, 34, 0.88)),
    radial-gradient(circle at 50% 4%, rgba(204, 151, 255, 0.46), transparent 38%);
  box-shadow:
    0 -24px 100px rgba(139, 78, 255, 0.42),
    0 30px 110px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  padding: 24px;
  text-align: left;
}

.hero-card img {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 310px);
  margin: 0 auto 30px;
  filter: drop-shadow(0 0 36px rgba(160, 102, 255, 0.48));
}

.hero-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -24px;
  width: 420px;
  height: 188px;
  transform: translateX(-50%);
  border-radius: 0 0 220px 220px;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.92), rgba(240, 196, 255, 0.76) 22%, rgba(141, 77, 255, 0.82) 38%, transparent 70%);
  filter: blur(4px);
  opacity: 0.9;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.22), transparent 34%);
  background-size: 100% 28px, 42px 100%, 100% 100%;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), transparent 86%);
  pointer-events: none;
}

.orb-wrap {
  position: absolute;
  left: 50%;
  top: 44px;
  z-index: 1;
  width: 430px;
  height: 210px;
  transform: translateX(-50%);
  pointer-events: none;
}

.orb-core {
  position: absolute;
  left: 50%;
  top: 36px;
  width: 178px;
  height: 92px;
  transform: translateX(-50%);
  border-radius: 178px 178px 0 0;
  background:
    radial-gradient(circle at 50% 82%, rgba(255, 255, 255, 0.92), rgba(236, 190, 255, 0.86) 28%, rgba(117, 63, 255, 0.82) 58%, transparent 70%);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.8),
    0 0 54px rgba(211, 157, 255, 0.92),
    0 0 118px rgba(112, 67, 255, 0.9);
}

.orb-core::before,
.orb-core::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 999px;
}

.orb-core::before {
  width: 460px;
  height: 12px;
  background: linear-gradient(90deg, transparent, rgba(236, 196, 255, 0.92), transparent);
  filter: blur(3px);
}

.orb-core::after {
  width: 680px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
}

.product-demo {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.75fr 1.35fr 0.75fr;
  min-height: 210px;
  margin: 0 auto 18px;
  border: 1px solid rgba(234, 220, 255, 0.16);
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(6, 2, 25, 0.74);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.035) inset,
    0 -24px 86px rgba(139, 78, 255, 0.22);
  backdrop-filter: blur(22px);
}

.demo-sidebar,
.demo-main,
.demo-right {
  padding: 18px;
}

.demo-sidebar,
.demo-right {
  color: var(--subtle);
  font-size: 12px;
}

.demo-sidebar {
  border-right: 1px solid rgba(234, 220, 255, 0.11);
}

.demo-sidebar span {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(234, 220, 255, 0.07);
}

.demo-search {
  min-height: 28px;
  margin-bottom: 10px;
  padding: 6px 9px;
  border: 1px solid rgba(234, 220, 255, 0.12);
  border-radius: 999px;
  color: #9f97b7;
  background: rgba(255, 255, 255, 0.035);
}

.demo-main {
  position: relative;
  border-right: 1px solid rgba(234, 220, 255, 0.11);
}

.demo-main::before {
  content: "";
  position: absolute;
  inset: auto 28px 0;
  height: 84px;
  background: linear-gradient(180deg, rgba(133, 77, 255, 0.22), transparent);
  clip-path: polygon(16% 0, 84% 0, 100% 100%, 0 100%);
  filter: blur(1px);
  pointer-events: none;
}

.demo-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(134, 87, 255, 0.16);
  color: #e6d9ff;
  font-size: 11px;
}

.demo-main h3 {
  max-width: 390px;
  font-size: 19px;
  line-height: 1.16;
}

.demo-main ul {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  padding: 0 0 0 18px;
  color: #bdb6d1;
  font-size: 13px;
}

.demo-main li + li {
  margin-top: 8px;
}

.demo-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.demo-pill {
  min-height: 32px;
  padding: 8px 10px;
  border: 1px solid rgba(234, 220, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.demo-pill.active {
  border-color: rgba(199, 169, 255, 0.45);
  color: #f2ecff;
  background: rgba(134, 87, 255, 0.22);
  box-shadow: 0 0 26px rgba(134, 87, 255, 0.28);
}

.signal-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(231, 219, 255, 0.12);
  background: rgba(4, 0, 20, 0.44);
  backdrop-filter: blur(18px);
}

.signal-tile {
  min-height: 98px;
  border: 0;
  border-right: 1px solid rgba(231, 219, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  padding: 18px;
}

.signal-tile:last-child {
  border-right: 0;
}

.signal-tile strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 13px;
}

.signal-tile span {
  display: block;
  color: var(--subtle);
  font-size: 12px;
  line-height: 1.35;
}

.section {
  padding: 98px 0;
  border-top: 1px solid rgba(221, 206, 255, 0.1);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 38px;
}

.section-head p {
  font-size: 17px;
}

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

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(221, 206, 255, 0.12);
}

.card,
.info-panel,
.policy-card {
  border: 1px solid rgba(221, 206, 255, 0.12);
  background: var(--panel);
  backdrop-filter: blur(18px);
}

.card {
  min-height: 190px;
  padding: 22px;
  border-width: 0 1px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(20, 14, 44, 0.62);
}

.card:last-child {
  border-right: 0;
}

.card .number {
  color: var(--purple-2);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  margin-bottom: 52px;
}

.card p,
.info-panel p,
.policy-card p {
  margin-top: 12px;
  font-size: 15px;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(221, 206, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.process-step {
  min-height: 176px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(8, 3, 31, 0.82);
  border-right: 1px solid rgba(221, 206, 255, 0.12);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  display: block;
  margin-bottom: 42px;
  color: var(--purple-2);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.info-panel {
  padding: 26px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.24);
}

.app-preview-section {
  position: relative;
}

.preview-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.94fr) minmax(240px, 0.78fr) minmax(240px, 0.78fr);
  align-items: center;
  gap: 22px;
  padding: 34px;
  border: 1px solid rgba(221, 206, 255, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 20%, rgba(204, 151, 255, 0.32), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(9, 4, 30, 0.72);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.preview-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.8), transparent 70%);
}

.phone-preview {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #38334f;
  background:
    radial-gradient(circle at 30% 12%, rgba(255, 255, 255, 0.86), transparent 28%),
    linear-gradient(145deg, #f3f0ff 0%, #ece7fb 52%, #f2dced 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.phone-primary {
  min-height: 610px;
  padding: 28px 26px;
  border-radius: 44px;
  outline: 10px solid #201b3d;
}

.phone-secondary,
.phone-tertiary {
  min-height: 360px;
  padding: 22px;
  border-radius: 26px;
}

.phone-top {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.phone-top.compact {
  margin-bottom: 14px;
}

.back-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.78);
  color: #8d74d4;
  font-size: 32px;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(105, 83, 160, 0.12);
}

.progress-track {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.65fr;
  gap: 7px;
}

.progress-track span {
  height: 5px;
  border-radius: 999px;
  background: rgba(150, 136, 204, 0.2);
}

.progress-track span:first-child {
  background: linear-gradient(90deg, #8e7adf, #df93c7);
}

.phone-top small {
  color: #8e84aa;
  font-weight: 700;
}

.phone-preview h3 {
  color: #342f4b;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.phone-subtitle {
  margin-top: 6px;
  color: #746d91;
  font-size: 15px;
}

.choice-stack {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.choice-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 16px;
  min-height: 102px;
  padding: 18px 18px 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 42px rgba(124, 103, 171, 0.14);
}

.choice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(145deg, #8e7add, #c36fb9);
  color: white;
  font-size: 26px;
  font-style: normal;
  font-weight: 800;
}

.choice-icon.target {
  background: linear-gradient(145deg, #bd8edc, #c98aba);
}

.choice-icon.edit {
  background: linear-gradient(145deg, #7f96e5, #a77bdb);
}

.choice-icon.dark {
  background: #57506c;
}

.choice-icon.reel {
  background: linear-gradient(145deg, #c85a9a, #dc93c9);
}

.choice-card strong,
.choice-card span {
  display: block;
}

.choice-card strong {
  color: #363149;
  font-size: 20px;
  line-height: 1.1;
}

.choice-card em {
  display: inline-flex;
  margin-left: 7px;
  padding: 3px 7px;
  border-radius: 7px;
  background: #eee9ff;
  color: #8d70d8;
  font-size: 12px;
  font-style: normal;
  vertical-align: middle;
}

.choice-card span {
  margin-top: 7px;
  color: #746d91;
  font-size: 14px;
  line-height: 1.35;
}

.choice-card b {
  color: #aaa0c3;
  font-size: 28px;
  font-weight: 400;
}

.choice-card i {
  width: 28px;
  height: 28px;
  border: 3px solid #aaa0c3;
  border-radius: 10px;
}

.phone-cta {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
  background: linear-gradient(90deg, rgba(153, 126, 218, 0.45), rgba(219, 142, 195, 0.45));
}

.generation-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 22px;
}

.generation-card h3 {
  font-size: 20px;
}

.generation-card p {
  margin-top: 7px;
  color: #746d91;
  font-size: 14px;
  line-height: 1.45;
}

.loader-orb {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 58% 58%, #c16fb5 0 28%, transparent 30%),
    conic-gradient(from 40deg, #8c80df, #df98cf, #ffffff, #8c80df);
  box-shadow: 0 0 22px rgba(149, 111, 224, 0.42);
}

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

.skeleton-list span {
  display: block;
  height: 56px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(152, 139, 205, 0.2) 0 13%, transparent 13%),
    linear-gradient(90deg, rgba(152, 139, 205, 0.14), rgba(215, 161, 205, 0.12));
  opacity: 0.7;
}

.format-stack .choice-card {
  min-height: 94px;
  grid-template-columns: 58px minmax(0, 1fr) 28px;
}

.preview-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: #9d96b1;
  text-align: center;
  font-size: 14px;
}

.checklist {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.checklist li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid rgba(221, 206, 255, 0.12);
  color: var(--muted);
}

.checklist li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 9px;
  background: var(--purple);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 18px;
}

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

.contact-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(221, 206, 255, 0.12);
}

.contact-item dt {
  color: var(--subtle);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-item dd {
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.todo {
  display: inline-block;
  padding: 2px 7px;
  border: 1px solid rgba(199, 169, 255, 0.5);
  border-radius: 6px;
  background: var(--purple-soft);
  color: #efe9ff;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid rgba(221, 206, 255, 0.1);
  padding: 34px 0;
  color: var(--subtle);
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.policy-main {
  padding: 110px 0 88px;
}

.policy-hero {
  text-align: center;
  margin-bottom: 44px;
}

.policy-hero h1 {
  font-size: clamp(40px, 6vw, 76px);
}

.policy-hero p {
  max-width: 760px;
  margin: 22px auto 0;
  font-size: 18px;
}

.policy-card {
  position: relative;
  padding: 30px;
  margin-top: 18px;
  overflow: hidden;
}

.policy-card h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 3vw, 34px);
}

.policy-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.policy-card li + li {
  margin-top: 8px;
}

.notice {
  border: 1px solid rgba(199, 169, 255, 0.34);
  border-radius: 12px;
  background: rgba(35, 24, 72, 0.62);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  padding: 18px;
  color: #e7dcff;
  font-size: 14px;
  backdrop-filter: blur(18px);
}

@media (max-width: 900px) {
  .nav {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .legal-name {
    display: none;
  }

  .hero,
  .section-head,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .product-demo {
    grid-template-columns: 1fr;
  }

  .demo-sidebar,
  .demo-main,
  .demo-right {
    border-right: 0;
    border-bottom: 1px solid rgba(234, 220, 255, 0.11);
  }

  .demo-right {
    border-bottom: 0;
  }

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

  .preview-stage {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .phone-primary {
    min-height: 570px;
  }

  .card {
    border-width: 0 1px 1px 0;
  }

  .card:nth-child(2n) {
    border-right: 0;
  }

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

  .process-step {
    min-height: 132px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 600px) {
  .section,
  .hero,
  .policy-main,
  .footer-inner,
  .nav {
    width: min(100% - 28px, var(--max));
  }

  .hero-card,
  .info-panel,
  .policy-card,
  .card {
    padding: 20px;
  }

  .hero-card {
    margin-top: 48px;
    min-height: auto;
    border-radius: 12px;
  }

  .orb-wrap {
    width: 280px;
    opacity: 0.78;
  }

  .orb-core::before {
    width: 310px;
  }

  .orb-core::after {
    width: 380px;
  }

  .hero-card img {
    width: min(100%, 250px);
  }

  .preview-stage {
    width: calc(100vw - 28px);
    padding: 16px;
    border-radius: 14px;
  }

  .phone-primary,
  .phone-secondary,
  .phone-tertiary {
    padding: 18px;
    border-radius: 24px;
  }

  .phone-primary {
    min-height: 540px;
    outline-width: 7px;
  }

  .phone-top {
    grid-template-columns: 40px minmax(0, 1fr) 34px;
    gap: 10px;
  }

  .back-control {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .choice-card {
    grid-template-columns: 52px minmax(0, 1fr) 14px;
    min-height: 90px;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
  }

  .choice-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 22px;
  }

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

  .phone-cta {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .signal-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .signal-tile,
  .signal-tile:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(231, 219, 255, 0.12);
  }

  .signal-tile:last-child {
    border-bottom: 0;
  }

  .card,
  .card:nth-child(2n),
  .card:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(221, 206, 255, 0.12);
  }

  .card:last-child {
    border-bottom: 0;
  }

  .contact-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
