:root {
  color-scheme: dark;
  --bg-0: #050614;
  --bg-1: #070a1f;
  --bg-2: #0a0d2c;
  --primary: linear-gradient(135deg, #7a3cff 0%, #2f7dff 100%);
  --secondary: linear-gradient(135deg, #b15cff 0%, #4b6cff 50%, #18d7ff 100%);
  --card: rgba(255, 255, 255, 0.06);
  --deep-card: rgba(10, 14, 35, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --hot-line: rgba(133, 89, 255, 0.45);
  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.68);
  --weak: rgba(255, 255, 255, 0.42);
  --shadow-a: 0 0 24px rgba(122, 60, 255, 0.36);
  --shadow-b: 0 0 48px rgba(47, 125, 255, 0.22);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-img: 18px;
}

@font-face {
  font-family: "DINCondensedBold";
  src: url("../assets/fonts/DIN-CONDENSED-BOLD.WOFF.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: #02030a;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

button, input, textarea { font: inherit; }
button { border: 0; cursor: pointer; color: inherit; }
input, textarea { outline: 0; }

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(122, 60, 255, 0.22), transparent 36%),
    radial-gradient(circle at 80% 20%, rgba(47, 125, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #050614 0%, #080b22 52%, #050614 100%);
}

.phone {
  position: relative;
  width: min(100vw, 430px);
  min-height: 100vh;
  height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(122, 60, 255, 0.18), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(24, 215, 255, 0.08), transparent 30%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 52%, var(--bg-0));
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 30px 80px rgba(0,0,0,0.38);
}

.view {
  display: none;
  position: relative;
  z-index: 2;
  height: 100%;
  overflow-y: auto;
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
}

.view.active { display: block; }
.content { padding: 0 18px 26px; }
.page-top { padding-top: calc(22px + env(safe-area-inset-top)); }
.hidden { display: none !important; }

.particle-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle-layer span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 0 14px rgba(122,60,255,0.85);
  animation: floatParticle 8s ease-in-out infinite;
}

.particle-layer span:nth-child(1) { left: 8%; top: 12%; }
.particle-layer span:nth-child(2) { left: 74%; top: 8%; animation-delay: .9s; }
.particle-layer span:nth-child(3) { left: 88%; top: 32%; animation-delay: 1.8s; }
.particle-layer span:nth-child(4) { left: 18%; top: 42%; animation-delay: 2.4s; }
.particle-layer span:nth-child(5) { left: 66%; top: 54%; animation-delay: .4s; }
.particle-layer span:nth-child(6) { left: 35%; top: 68%; animation-delay: 1.2s; }
.particle-layer span:nth-child(7) { left: 92%; top: 76%; animation-delay: 2.9s; }
.particle-layer span:nth-child(8) { left: 14%; top: 88%; animation-delay: 3.3s; }
.particle-layer span:nth-child(9) { left: 52%; top: 24%; animation-delay: 2s; }
.particle-layer span:nth-child(10) { left: 4%; top: 62%; animation-delay: .7s; }
.particle-layer span:nth-child(11) { left: 82%; top: 92%; animation-delay: 1.6s; }
.particle-layer span:nth-child(12) { left: 42%; top: 4%; animation-delay: 2.7s; }

.glass-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 0%, rgba(122,60,255,0.16), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: var(--shadow-b);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 10px 10px;
  pointer-events: none;
}

.btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}

.btn:active { transform: scale(.97); opacity: .88; }
.btn.primary { background: var(--primary); box-shadow: var(--shadow-a); animation: breathe 3s ease-in-out infinite; }
.btn.glass { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.12); backdrop-filter: blur(14px); }
.btn.wide { width: 100%; }
.btn i, .hero-actions i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4cffbd;
  box-shadow: 0 0 12px rgba(76,255,189,.8);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #bda6ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #18d7ff;
  box-shadow: 0 0 14px rgba(24,215,255,.8);
}

.profile-hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  background: #050614;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.05) contrast(1.04);
}

.hero-aura {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  top: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,60,255,.3), transparent 62%);
  filter: blur(8px);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(47,125,255,.08), transparent 32%),
    linear-gradient(180deg, rgba(5,6,20,.08) 0%, rgba(5,6,20,.2) 46%, rgba(5,6,20,.94) 100%);
}

.backend-pill {
  position: absolute;
  top: calc(18px + env(safe-area-inset-top));
  right: 16px;
  z-index: 3;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 800;
  background: rgba(8,11,31,.42);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
}

.hero-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 32px;
  z-index: 3;
}

.hero-video-hint {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 168px;
  min-height: 94px;
  padding: 14px 12px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  gap: 5px;
  transform: translate(-50%, -34%);
  color: rgba(255,255,255,.9);
  background: rgba(5,6,20,.24);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 38px rgba(47,125,255,.18);
}

.play-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: var(--shadow-a);
}

.play-icon::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
}

.hero-video-hint strong { font-size: 13px; }
.hero-video-hint small { color: var(--weak); font-size: 10px; font-weight: 900; letter-spacing: .08em; }

.hero-actions { display: flex; gap: 12px; }
.hero-actions .btn { flex: 1; }

.core-card {
  margin-top: -18px;
  padding: 18px;
}

.id-line {
  position: relative;
  z-index: 1;
  text-align: right;
  color: var(--weak);
  font-size: 10px;
  font-weight: 800;
}

.core-main {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}

.core-main img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow-a);
}

.core-main h2 { margin: 0; font-size: 26px; }
.core-main h2 span { color: rgba(255,255,255,.58); font-size: 19px; }
.core-main h3 { margin: 4px 0 8px; font-size: 14px; color: #dcd4ff; }
.core-main p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; text-align: justify; text-align-last: left; }

.status-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 15px;
}

.status-row span, .ai-chip {
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: #d8efff;
  font-size: 11px;
  font-weight: 800;
  background: rgba(47,125,255,.13);
  border: 1px solid rgba(47,125,255,.28);
}

.contact-actions {
  display: flex;
  gap: 8px;
  flex: none;
}

.contact-actions button {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  background: linear-gradient(135deg, rgba(122,60,255,.88), rgba(47,125,255,.88));
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 0 20px rgba(122,60,255,.28);
}

.contact-actions button img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
  transform: translate(-50%, -50%);
  opacity: 1;
  filter: brightness(1.45) contrast(1.18) drop-shadow(0 0 2px rgba(255,255,255,.45));
}

.energy-line {
  position: relative;
  z-index: 1;
  height: 2px;
  margin-top: 16px;
  background: var(--secondary);
  border-radius: 999px;
  box-shadow: var(--shadow-a);
}

.section-title { margin: 30px 0 16px; }
.section-title span, .page-head span { color: #9fc7ff; font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.section-title h2, .page-head h1 { margin: 6px 0 0; font-size: 22px; line-height: 1.18; }
.section-title p, .page-head p { margin: 7px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.section-title:not(:has(p)) { margin-bottom: 14px; }

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

.value-card {
  min-height: 128px;
  padding: 14px 8px 12px;
  border-radius: var(--radius-lg);
}

.value-card b {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
  background: var(--secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.value-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.28;
}

.value-card small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 6px;
  color: var(--weak);
  font-size: 10px;
  line-height: 1.35;
}

.progress-line {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(177,92,255,.9), rgba(24,215,255,.25));
}

.film-gallery {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 0 18px 6px;
  margin: 0 -18px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.film-gallery::-webkit-scrollbar {
  display: none;
}

.film-card {
  position: relative;
  margin: 0;
  flex: 0 0 120px;
  height: 120px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: #11182b;
  scroll-snap-align: start;
}

.film-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.film-card::after { content: ""; position: absolute; inset: auto 0 0; height: 52%; background: linear-gradient(180deg, transparent, rgba(0,0,0,.82)); }
.film-card figcaption { position: absolute; z-index: 1; left: 10px; right: 8px; bottom: 9px; }
.film-card b { display: block; font-size: 14px; line-height: 1.1; font-weight: 900; letter-spacing: 0; }
.film-card small { display: none; }

.film-title {
  margin: 34px 0 18px;
}

.film-title h2 {
  font-size: 26px;
  line-height: 1.16;
  letter-spacing: 0;
}

.film-title h2 span {
  color: rgba(255,255,255,.58);
  font-size: 22px;
  vertical-align: 1px;
}

.cooperation-pipeline { margin: 30px 0 0; }
.section-title-row { margin: 0 0 16px; }
.section-title-row h2 { margin: 0; font-size: 26px; line-height: 1.16; letter-spacing: 0; }
.pipeline-list { display: flex; flex-direction: column; gap: 18px; }
.pipeline-card {
  position: relative;
  min-height: 162px;
  padding: 16px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(circle at 82% 4%, rgba(122,60,255,.1), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 20px 42px rgba(0,0,0,.26);
  overflow: hidden;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.pipeline-card:active { transform: scale(.985); }
.pipeline-card:hover { border-color: rgba(133,89,255,.36); box-shadow: 0 18px 44px rgba(47,125,255,.16); }
.pipeline-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.13) 1px, transparent 1.7px);
  background-size: 10px 10px;
  opacity: .05;
}
.pipeline-card.is-featured {
  border-color: rgba(139,84,255,.64);
  box-shadow: 0 0 0 1px rgba(139,84,255,.18), 0 0 34px rgba(122,60,255,.23), 0 20px 46px rgba(0,0,0,.32);
  background:
    radial-gradient(circle at 0% 40%, rgba(122,60,255,.26), transparent 44%),
    linear-gradient(100deg, rgba(64,37,112,.78), rgba(255,255,255,.055) 48%, rgba(255,255,255,.035));
}
.pipeline-card.is-featured::before { opacity: .14; background-size: 8px 8px; }
.pipeline-card__image {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 16px 26px rgba(0,0,0,.26);
}
.pipeline-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.pipeline-card:not(.is-featured) .pipeline-card__image img {
  transform: scale(1.16) translateY(-7px);
  transform-origin: center top;
}
.pipeline-card__content { position: relative; z-index: 1; min-width: 0; }
.pipeline-card__number {
  display: block;
  margin: -18px 0 -23px;
  padding-top: 18px;
  font-family: "DINCondensedBold", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 64px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0;
  opacity: .95;
  background: linear-gradient(180deg, #ffffff 0%, #eef0f5 24%, #b6bac5 50%, rgba(80,86,102,.78) 72%, rgba(28,32,44,.08) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 5px 12px rgba(0,0,0,.2);
}
.pipeline-card__content h3 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 950;
  color: #fff;
  letter-spacing: 0;
}
.pipeline-card__content p {
  margin: 0;
  color: rgba(255,255,255,.42);
  font-size: 12px;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.pipeline-card__bottom {
  margin-top: 11px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  min-width: 0;
}
.pipeline-card__tags {
  min-width: 0;
  display: flex;
  gap: 3px;
  overflow: hidden;
}
.pipeline-card__tags span {
  flex: 1 1 0;
  min-width: 0;
  height: 25px;
  padding: 0 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.055);
  font-size: 9px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pipeline-card__button {
  width: 62px;
  height: 32px;
  padding: 0 7px 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 999px;
  color: #20222b;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
  transition: transform .16s ease;
}
.pipeline-card__button:active { transform: scale(.96); }
.pipeline-card__button i {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-style: normal;
  color: #fff;
  background: var(--secondary);
  box-shadow: 0 0 16px rgba(122,60,255,.48);
}

.assessment-panel { margin-top: 28px; padding: 18px; }
.orb-wrap { position: relative; z-index: 1; height: 250px; border-radius: 20px; overflow: hidden; }
.orb-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
.assessment-copy { position: relative; z-index: 1; margin-top: 16px; text-align: center; }
.assessment-copy h2 { margin: 8px 0 0; font-size: 24px; }
.assessment-copy p { color: var(--muted); font-size: 13px; line-height: 1.6; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 16px 0; }
.metrics span { padding: 10px 6px; border-radius: 14px; color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.35; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.metrics b { display: block; color: #fff; font-size: 13px; margin-bottom: 3px; }

.faq-list { display: grid; gap: 10px; }
.faq-item { padding: 0; border-radius: var(--radius-lg); }
.faq-q { position: relative; z-index: 1; width: 100%; min-height: 58px; padding: 0 16px; display: flex; justify-content: space-between; align-items: center; background: transparent; text-align: left; font-size: 14px; font-weight: 900; }
.faq-a { position: relative; z-index: 1; max-height: 0; overflow: hidden; padding: 0 16px; color: var(--muted); font-size: 13px; line-height: 1.65; transition: max-height .26s ease, padding .26s ease; }
.faq-item.open { border-color: rgba(133,89,255,.52); box-shadow: var(--shadow-a); }
.faq-item.open .faq-a { max-height: 220px; padding-bottom: 16px; }

.connect-card { margin-top: 28px; padding: 20px; text-align: center; }
.connect-card h2 { position: relative; z-index: 1; margin: 0; font-size: 22px; }
.connect-card p { position: relative; z-index: 1; color: var(--muted); font-size: 13px; }
.connect-actions { position: relative; z-index: 1; display: grid; gap: 10px; }

.page-head { margin-bottom: 22px; }
.page-head.compact { margin-top: 0; }
.back { height: 34px; padding: 0 13px; margin-bottom: 16px; border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 10px;
}
.about-tags b {
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  font-size: 11px;
  line-height: 1.2;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
}

.timeline { position: relative; display: grid; gap: 14px; }
.timeline::before { content: ""; position: absolute; left: 22px; top: 20px; bottom: 20px; width: 1px; background: linear-gradient(180deg, rgba(177,92,255,.9), transparent); }
.timeline-card { padding: 16px 16px 16px 56px; }
.timeline-no { position: absolute; z-index: 1; left: 14px; top: 18px; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 950; background: var(--primary); box-shadow: var(--shadow-a); }
.timeline-image {
  position: relative;
  z-index: 1;
  margin: 4px 0 12px;
  height: 108px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.timeline-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.timeline-card h2 { position: relative; z-index: 1; margin: 6px 0 8px; font-size: 18px; }
.timeline-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
}
.timeline-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.keyword { position: relative; z-index: 1; color: #bda6ff; font-size: 11px; font-weight: 900; }
.closing-card { margin-top: 16px; padding: 18px; }
.closing-card h2, .closing-card p { position: relative; z-index: 1; }
.closing-card p { color: var(--muted); line-height: 1.7; }

.cooperation-detail-content { padding-bottom: 118px; }
.detail-hero {
  padding: 22px 18px 20px;
  min-height: 238px;
  background:
    radial-gradient(circle at 86% 8%, rgba(24,215,255,.14), transparent 28%),
    radial-gradient(circle at 10% 8%, rgba(122,60,255,.22), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
}
.detail-hero__meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  color: rgba(191,234,255,.78);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
}
.detail-hero__meta strong { color: rgba(255,255,255,.72); font-size: 11px; letter-spacing: .08em; }
.detail-hero__number {
  position: relative;
  z-index: 1;
  display: block;
  margin: 2px 0 -24px;
  padding-top: 18px;
  font-family: "DINCondensedBold", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 86px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0;
  opacity: .95;
  background: linear-gradient(180deg, #fff 0%, #eceef4 24%, #b3b7c2 50%, rgba(80,86,102,.78) 72%, rgba(28,32,44,.08) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.detail-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: 0;
}
.detail-hero p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}
.detail-cover {
  width: calc(100% + 36px);
  margin: 16px -18px 0;
  padding: 0;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  overflow: hidden;
}
.detail-cover img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}
.detail-section { margin-top: 26px; }
.detail-section__head { margin-bottom: 14px; }
.detail-section__head span { color: #9abaff; font-size: 11px; font-weight: 950; letter-spacing: .16em; }
.detail-section__head h2 { margin: 6px 0 0; font-size: 22px; line-height: 1.2; }
.detail-highlight-grid { display: grid; gap: 12px; }
.detail-highlight-card { padding: 16px; }
.detail-mini-no {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #d8c9ff;
  font-size: 11px;
  font-weight: 950;
  background: rgba(122,60,255,.18);
  border: 1px solid rgba(177,92,255,.2);
}
.detail-highlight-card h3 { position: relative; z-index: 1; margin: 10px 0 7px; font-size: 17px; }
.detail-highlight-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.72; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.detail-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.1);
}
.detail-list,
.detail-check-list,
.detail-flow {
  margin: 0;
  padding: 0;
  list-style: none;
}
.detail-list { padding: 8px; display: grid; gap: 8px; }
.detail-list li {
  position: relative;
  z-index: 1;
  min-height: 42px;
  padding: 9px 10px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 8px;
  border-radius: 14px;
  background: rgba(255,255,255,.045);
}
.detail-list b,
.detail-flow b {
  color: #bda6ff;
  font-size: 11px;
  letter-spacing: .06em;
}
.detail-list span,
.detail-flow span { color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.5; }
.detail-check-list { padding: 14px; display: grid; gap: 11px; }
.detail-check-list li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 8px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.5;
}
.detail-check-list i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-style: normal;
  font-size: 11px;
  background: var(--secondary);
}
.detail-flow { position: relative; display: grid; gap: 10px; }
.detail-flow::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, rgba(177,92,255,.85), transparent);
}
.detail-flow li {
  padding: 13px 14px 13px 46px;
  min-height: 50px;
}
.detail-flow b {
  position: absolute;
  z-index: 1;
  left: 12px;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(122,60,255,.74);
  box-shadow: var(--shadow-a);
}
.detail-flow span { position: relative; z-index: 1; display: block; }
.detail-cta { margin-top: 28px; padding: 18px; text-align: center; }
.detail-cta h2 { position: relative; z-index: 1; margin: 0; font-size: 21px; line-height: 1.26; }
.detail-cta p { position: relative; z-index: 1; margin: 8px 0 14px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.detail-cta__actions { position: relative; z-index: 1; display: grid; gap: 10px; }

.chat-view { padding-bottom: 0; }
.chat-shell { height: 100%; display: flex; flex-direction: column; padding: calc(18px + env(safe-area-inset-top)) 14px calc(92px + env(safe-area-inset-bottom)); }
.back.floating { position: absolute; z-index: 10; top: calc(18px + env(safe-area-inset-top)); left: 14px; width: 34px; padding: 0; }
.chat-head { padding: 14px 14px 14px 50px; display: flex; gap: 12px; align-items: center; }
.chat-head img { position: relative; z-index: 1; width: 54px; height: 54px; border-radius: 50%; }
.chat-head h1 { position: relative; z-index: 1; margin: 0; font-size: 17px; }
.chat-head p { position: relative; z-index: 1; margin: 6px 0 0; color: var(--muted); font-size: 11px; line-height: 1.4; }
.chat-head i { display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: #4cffbd; box-shadow: 0 0 10px rgba(76,255,189,.8); }
.opening-card { margin-top: 12px; padding: 14px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.prompt-row { display: flex; gap: 7px; overflow-x: auto; margin: 10px 0; }
.prompt-row button { flex: 0 0 auto; max-width: 248px; min-height: 32px; padding: 0 11px; border-radius: 999px; color: rgba(255,255,255,.82); font-size: 11px; background: rgba(122,60,255,.18); border: 1px solid rgba(122,60,255,.28); }
.messages { flex: 1; overflow-y: auto; padding: 4px 2px 24px; }
.msg { max-width: 82%; margin: 10px 0; padding: 11px 13px; border-radius: 16px; color: rgba(255,255,255,.82); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); font-size: 13px; line-height: 1.55; }
.msg.user { margin-left: auto; color: #fff; background: var(--primary); border-color: transparent; }
.msg.thinking { color: var(--weak); }
.chat-input { height: 54px; padding: 7px; border-radius: 999px; display: flex; gap: 8px; background: rgba(10,14,35,.92); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 -10px 30px rgba(0,0,0,.28); }
.chat-input input { flex: 1; min-width: 0; padding: 0 14px; color: #fff; background: rgba(255,255,255,.06); border: 1px solid transparent; border-radius: 999px; }
.chat-input input:focus, .field-grid input:focus, .field-grid textarea:focus { border-color: rgba(122,60,255,.58); box-shadow: 0 0 18px rgba(122,60,255,.2); }
.chat-input button { width: 68px; border-radius: 999px; background: var(--primary); font-weight: 900; }

.login-content {
  position: relative;
  min-height: 100%;
  padding-top: 0;
}
.login-content > .back {
  position: absolute;
  z-index: 5;
  top: calc(18px + env(safe-area-inset-top));
  left: 18px;
}
.lock-stage {
  position: relative;
  height: min(62vh, 520px);
  min-height: 430px;
  margin: 0 -18px -72px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.lock-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5,6,20,0) 0%, rgba(5,6,20,.78) 62%, var(--bg-0) 100%);
}
.lock-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .96;
}
.lock-ring { display: none; }
.login-card {
  position: relative;
  z-index: 2;
  padding: 18px;
}
.login-card h1 { position: relative; z-index: 1; margin: 8px 0 0; font-size: 24px; }
.login-card p { position: relative; z-index: 1; color: var(--muted); font-size: 13px; line-height: 1.6; }
.password-box { position: relative; z-index: 1; height: 50px; display: flex; align-items: center; gap: 8px; padding: 0 8px 0 14px; margin: 16px 0 12px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.password-box.error { border-color: rgba(255,80,120,.72); box-shadow: 0 0 18px rgba(255,80,120,.22); animation: shake .24s ease; }
.password-box.unlocked { border-color: rgba(24,215,255,.72); box-shadow: 0 0 28px rgba(24,215,255,.25); }
.password-box input { flex: 1; min-width: 0; color: #fff; background: transparent; border: 0; }
.password-box button { width: 54px; height: 34px; border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.08); }
.error-text { position: relative; z-index: 1; display: block; min-height: 22px; margin-top: 10px; color: #ff8cab; font-size: 12px; text-align: center; }

.backend-hero { position: relative; height: 360px; overflow: hidden; }
.backend-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.backend-hero-mask { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,6,20,0) 36%, rgba(5,6,20,.72) 76%, var(--bg-0) 100%); }
.backend-hero-nav {
  position: absolute;
  z-index: 3;
  top: calc(44px + env(safe-area-inset-top));
  left: 24px;
  padding: 0;
  color: rgba(255,255,255,.94);
  background: transparent;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .02em;
  text-shadow: 0 2px 14px rgba(0,0,0,.42);
}
.backend-content { margin-top: -54px; }
.page-head.compact { position: relative; z-index: 3; }
.backend-module {
  padding-top: calc(20px + env(safe-area-inset-top));
  padding-bottom: 116px;
}
.backend-dashboard { padding: 16px; }
.dashboard-profile { position: relative; z-index: 1; display: flex; gap: 13px; align-items: center; }
.dashboard-profile img { width: 66px; height: 66px; border-radius: 50%; }
.dashboard-profile h2 { margin: 0; font-size: 20px; }
.dashboard-profile p { margin: 4px 0; color: var(--muted); font-size: 12px; }
.dashboard-profile span { color: #9fffd8; font-size: 11px; }
.backend-stats { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 15px; }
.backend-stat { padding: 11px 5px; border-radius: 14px; text-align: center; background: rgba(0,0,0,.24); border: 1px solid rgba(255,255,255,.07); }
.backend-stat b { display: block; font-size: 20px; background: var(--secondary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.backend-stat span { color: var(--muted); font-size: 10px; }
.agent-list { display: grid; gap: 16px; margin-top: 24px; }
.agent-card {
  padding: 22px 24px 24px;
  display: block;
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 0%, rgba(47,125,255,.1), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}
.agent-card__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
}
.agent-avatar {
  position: relative;
  z-index: 1;
  width: 82px;
  height: 82px;
  display: block;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #060812;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 0 20px rgba(122,60,255,.22);
}
.agent-info h3 { position: relative; z-index: 1; margin: 0; font-size: 22px; font-weight: 800; line-height: 1.15; }
.agent-info p { position: relative; z-index: 1; color: rgba(255,255,255,.52); margin: 7px 0 0; font-size: 13px; line-height: 1.45; }
.agent-assistant {
  position: relative;
  z-index: 1;
  height: 28px;
  margin: 14px 0 13px;
  padding: 0 13px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.1);
  font-size: 14px;
  font-weight: 800;
}
.agent-assistant i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.86);
  font-style: normal;
  font-size: 12px;
}
.agent-card .btn {
  position: relative;
  z-index: 1;
  height: 42px;
  min-height: 42px;
  font-size: 18px;
}
.future-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; margin-top: 42px; }
.future-card { position: relative; aspect-ratio: 1; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); }
.future-card img { width: 100%; height: 100%; object-fit: cover; opacity: .95; display: block; }
.future-card span { position: absolute; left: 4px; right: 4px; bottom: 8px; text-align: center; color: rgba(255,255,255,.88); font-size: 12px; font-weight: 500; text-shadow: 0 2px 8px #000; }
.future-card.is-more {
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.8);
  font-size: 26px;
  background: rgba(255,255,255,.08);
}
.coming-soon {
  margin-top: 42px;
  text-align: center;
  color: #fff;
  font-size: 17px;
  letter-spacing: .02em;
}
.coming-soon span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
}
.backend-links { margin-top: 18px; padding: 8px 16px; }
.backend-links button { position: relative; z-index: 1; width: 100%; min-height: 46px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: var(--muted); background: transparent; text-align: left; }
.backend-links button:last-child { border-bottom: 0; }
.backend-links strong { display: block; color: #fff; font-size: 14px; }
.backend-links small { display: block; margin-top: 4px; color: var(--weak); font-size: 11px; line-height: 1.35; }

.knowledge-grid { display: grid; gap: 13px; }
.knowledge-card { padding: 16px; display: grid; grid-template-columns: 58px 1fr auto; gap: 12px; align-items: center; }
.knowledge-icon { position: relative; z-index: 1; width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; font-size: 10px; font-weight: 950; background: rgba(122,60,255,.22); border: 1px solid rgba(122,60,255,.28); }
.knowledge-card h3 { position: relative; z-index: 1; margin: 0; font-size: 17px; }
.knowledge-card p { position: relative; z-index: 1; margin: 5px 0 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.knowledge-count { position: relative; z-index: 1; text-align: center; }
.knowledge-count b { display: block; font-size: 24px; }
.knowledge-count span { color: var(--weak); font-size: 10px; }

.business-content { padding-bottom: 118px; }
.business-head em {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #bfeaff;
  font-size: 11px;
  font-style: normal;
  background: rgba(240,248,255,.08);
  border: 1px solid rgba(130,210,255,.22);
  box-shadow: 0 0 22px rgba(80,180,255,.14);
}
.radar-add { margin: -8px 0 16px; }
.radar-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}
.radar-stat {
  min-height: 76px;
  padding: 12px 5px;
  border-radius: 18px;
  text-align: center;
  background: rgba(240,248,255,.08);
  border: 1px solid rgba(130,210,255,.2);
  box-shadow: 0 0 20px rgba(80,180,255,.12);
  backdrop-filter: blur(14px);
}
.radar-stat b { display: block; color: #eaf7ff; font-size: 25px; text-shadow: 0 0 18px rgba(80,180,255,.45); }
.radar-stat span { color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.25; }
.high-intent { padding: 16px; margin-bottom: 16px; }
.high-intent__title { position: relative; z-index: 1; margin-bottom: 12px; }
.high-intent__title span { color: #9abaff; font-size: 10px; font-weight: 950; letter-spacing: .16em; }
.high-intent__title h2 { margin: 5px 0 0; font-size: 20px; }
.high-intent__list { position: relative; z-index: 1; display: grid; gap: 10px; }
.intent-alert {
  padding: 12px;
  border-radius: 16px;
  background: rgba(240,248,255,.08);
  border: 1px solid rgba(130,210,255,.22);
  box-shadow: 0 0 22px rgba(80,180,255,.12);
}
.intent-alert b,
.intent-alert span,
.intent-alert em,
.intent-alert small { display: block; }
.intent-alert b { font-size: 13px; color: #fff; }
.intent-alert span { margin-top: 5px; color: var(--muted); font-size: 12px; }
.intent-alert em { margin-top: 4px; color: #bfeaff; font-size: 12px; font-style: normal; }
.intent-alert small { margin-top: 4px; color: rgba(255,255,255,.5); font-size: 11px; }
.opportunity-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 8px;
  scrollbar-width: none;
}
.opportunity-filters::-webkit-scrollbar { display: none; }
.opportunity-filters button {
  flex: 0 0 auto;
  height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  font-weight: 900;
}
.opportunity-filters button.active { color: #fff; background: rgba(122,60,255,.32); border-color: rgba(122,60,255,.52); box-shadow: var(--shadow-a); }
.opportunity-list { display: grid; gap: 14px; }
.opportunity-card { padding: 15px; }
.opportunity-top { position: relative; z-index: 1; display: grid; grid-template-columns: 44px 1fr 66px; gap: 10px; align-items: center; }
.opportunity-avatar {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  background: var(--secondary);
  box-shadow: var(--shadow-a);
}
.opportunity-name h3 { margin: 0; font-size: 17px; }
.opportunity-name p { margin: 4px 0; color: var(--muted); font-size: 12px; line-height: 1.35; }
.opportunity-name span { color: #bda6ff; font-size: 11px; font-weight: 900; }
.intent-score {
  padding: 8px 4px;
  border-radius: 16px;
  text-align: center;
  background: rgba(240,248,255,.08);
  border: 1px solid rgba(130,210,255,.22);
  box-shadow: 0 0 18px rgba(80,180,255,.14);
}
.intent-score b { display: block; color: #eaf7ff; font-size: 22px; line-height: 1; }
.intent-score span { color: rgba(255,255,255,.66); font-size: 10px; }
.intent-score.large { display: inline-block; min-width: 86px; margin-right: 10px; vertical-align: top; }
.intent-score.large b { font-size: 34px; }
.opportunity-meta { position: relative; z-index: 1; display: grid; gap: 6px; margin: 13px 0; }
.opportunity-meta span { color: rgba(255,255,255,.64); font-size: 12px; line-height: 1.45; }
.ai-suggestion {
  position: relative;
  z-index: 1;
  padding: 11px;
  border-radius: 16px;
  background: rgba(122,60,255,.12);
  border: 1px solid rgba(122,60,255,.18);
}
.ai-suggestion b { display: block; color: #d9c9ff; font-size: 11px; margin-bottom: 5px; }
.ai-suggestion p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.opportunity-foot { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 7px; align-items: center; margin-top: 12px; }
.status-badge {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: #bfeaff;
  font-size: 11px;
  font-weight: 900;
  background: rgba(24,215,255,.1);
  border: 1px solid rgba(24,215,255,.18);
}
.opportunity-foot button {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 11px;
  font-weight: 900;
}
.empty-text { color: var(--muted); font-size: 13px; line-height: 1.6; }

.bottom-nav {
  position: absolute;
  z-index: 50;
  left: 12px;
  right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  height: 64px;
  padding: 8px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1.14fr 1fr;
  gap: 8px;
  background: rgba(10,14,35,.74);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 -12px 36px rgba(0,0,0,.32);
}

.bottom-nav button { border-radius: 18px; color: var(--muted); font-size: 12px; font-weight: 900; background: transparent; }
.bottom-nav button.active { color: #fff; background: rgba(255,255,255,.1); box-shadow: inset 0 0 0 1px rgba(255,255,255,.16); }
.bottom-nav button.active::before { content: ""; display: block; width: 6px; height: 6px; margin: 0 auto 3px; border-radius: 50%; background: #18d7ff; box-shadow: 0 0 12px rgba(24,215,255,.9); }
.bottom-nav .nav-core { color: #fff; background: var(--primary); box-shadow: var(--shadow-a); }
.bottom-nav .nav-core i { display: block; font-style: normal; font-size: 10px; }

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  padding: 22px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.66);
  backdrop-filter: blur(12px);
}

.modal-card {
  width: min(390px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: 18px;
  background: rgba(10,14,35,.94);
}

.modal:not(.hidden) .modal-card,
.modal:not(.hidden) .image-preview-card {
  animation: modalUp .22s ease both;
}

.bottom-sheet {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.sheet-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(10px);
}

.sheet-panel {
  position: relative;
  width: min(430px, 100%);
  max-height: 85vh;
  padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
  border-radius: 26px 26px 0 0;
  background: rgba(10,14,35,.96);
  animation: sheetUp .24s ease both;
}

.sheet-scroll {
  position: relative;
  z-index: 1;
  max-height: calc(85vh - 36px);
  overflow-y: auto;
  padding-right: 2px;
}

.sheet-head { padding-right: 38px; }
.sheet-head span { color: #9abaff; font-size: 10px; font-weight: 950; letter-spacing: .16em; }
.sheet-head h2 { margin: 7px 0 4px; font-size: 23px; }
.sheet-head p { margin: 0; color: var(--muted); font-size: 13px; }
.sheet-section { margin-top: 18px; }
.sheet-section h3 { margin: 0 0 10px; font-size: 16px; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.info-grid span {
  min-height: 58px;
  padding: 10px;
  border-radius: 14px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  line-height: 1.45;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.info-grid b { display: block; margin-bottom: 4px; color: var(--weak); font-size: 10px; }
.judgement-card {
  padding: 12px;
  border-radius: 18px;
  background: rgba(240,248,255,.08);
  border: 1px solid rgba(130,210,255,.22);
  box-shadow: 0 0 22px rgba(80,180,255,.12);
}
.judgement-card p { margin: 0 0 8px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.judgement-card small { color: #bfeaff; font-size: 12px; }
.behavior-timeline { position: relative; margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.behavior-timeline::before { content: ""; position: absolute; left: 31px; top: 10px; bottom: 10px; width: 1px; background: linear-gradient(180deg, rgba(24,215,255,.65), transparent); }
.behavior-timeline li { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 10px; align-items: start; }
.behavior-timeline time { position: relative; z-index: 1; padding: 5px 0; border-radius: 999px; color: #bfeaff; font-size: 11px; text-align: center; background: rgba(24,215,255,.1); border: 1px solid rgba(24,215,255,.14); }
.behavior-timeline span { color: var(--muted); font-size: 12px; line-height: 1.55; }
.suggested-actions { margin: 0; padding: 12px 12px 12px 30px; border-radius: 18px; color: var(--muted); font-size: 13px; line-height: 1.65; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.script-box { padding: 13px; border-radius: 18px; color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.65; background: rgba(122,60,255,.13); border: 1px solid rgba(122,60,255,.22); }
.sheet-note { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.sheet-actions { position: sticky; z-index: 2; bottom: -18px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 18px -4px 0; padding: 12px 4px 4px; background: linear-gradient(180deg, transparent, rgba(10,14,35,.98) 24%); }
.sheet-actions .btn { min-height: 42px; }

.modal-close {
  position: absolute;
  z-index: 2;
  right: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  font-size: 24px;
}

.assessment-step { position: relative; z-index: 1; }
.assessment-step h2 { margin: 0 40px 8px 0; font-size: 22px; }
.assessment-step p { color: var(--muted); font-size: 13px; line-height: 1.6; }
.field-grid { display: grid; gap: 11px; margin: 16px 0; }
.field-grid input, .field-grid textarea, .field-grid select {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border-radius: 16px;
  color: #fff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}
.field-grid select { appearance: none; }
.field-grid textarea { min-height: 96px; resize: vertical; }
.manual-form { position: relative; z-index: 1; }
.manual-form h2 { margin: 8px 40px 12px 0; font-size: 22px; }
.option-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.option-grid button { min-height: 34px; padding: 0 12px; border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }
.option-grid button.selected { color: #fff; background: rgba(122,60,255,.32); border-color: rgba(122,60,255,.54); }
.step-actions { display: flex; gap: 10px; }
.step-actions .btn { flex: 1; }
.score-ring { width: 150px; height: 150px; margin: 14px auto; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(177,92,255,.52); box-shadow: inset var(--shadow-a), var(--shadow-a); }
.score-ring b { font-size: 44px; }
.result-lines { display: grid; gap: 10px; margin: 16px 0; }
.result-lines div { padding: 12px; border-radius: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); color: var(--muted); font-size: 13px; line-height: 1.55; }
.result-lines strong { color: #fff; }

.contact-modal h2,
.info-modal h2 {
  position: relative;
  z-index: 1;
  margin: 0 40px 14px 0;
  font-size: 22px;
}

.contact-modal p,
.info-modal p,
.info-list {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.qr-frame {
  position: relative;
  z-index: 1;
  width: 190px;
  height: 190px;
  margin: 10px auto 14px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(122,60,255,.34);
  box-shadow: var(--shadow-a);
}

.qr-frame img { width: 100%; height: 100%; border-radius: 16px; object-fit: cover; }
.phone-value { position: relative; z-index: 1; margin: 14px 0 18px; padding: 16px; border-radius: 18px; text-align: center; color: #fff; font-size: 18px; font-weight: 900; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.info-list { margin: 0 0 18px; padding-left: 18px; }
.info-list li { margin: 8px 0; }

.image-preview-card { position: relative; width: min(390px, 100%); }
.image-preview-card img { width: 100%; border-radius: 22px; }
.toast { position: fixed; z-index: 200; left: 50%; bottom: 110px; transform: translateX(-50%); padding: 10px 14px; border-radius: 999px; color: #fff; background: rgba(10,14,35,.92); border: 1px solid rgba(255,255,255,.16); box-shadow: var(--shadow-a); font-size: 13px; }

.fade-up { animation: fadeUp .6s ease both; }
@keyframes fadeUp { from { transform: translateY(18px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes breathe { 0%,100% { box-shadow: 0 0 18px rgba(122,60,255,.34); } 50% { box-shadow: 0 0 34px rgba(47,125,255,.38); } }
@keyframes slowRotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes floatParticle { 0%,100% { transform: translate3d(0,0,0); opacity: .32; } 50% { transform: translate3d(12px,-24px,0); opacity: .9; } }
@keyframes shake { 0%,100% { transform: translateX(0); } 30% { transform: translateX(-7px); } 65% { transform: translateX(7px); } }
@keyframes modalUp { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes sheetUp { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes aiCoreFloat { 0%,100% { transform: scale(1.03) translateY(0); filter: saturate(1.06); } 50% { transform: scale(1.055) translateY(-5px); filter: saturate(1.18) brightness(1.08); } }
@keyframes aiCorePulse { 0%,100% { opacity: .32; transform: translateX(-8px); } 50% { opacity: .6; transform: translateX(8px); } }

@media (max-width: 374px) {
  .hero-copy h1 { font-size: 30px; }
  .value-dashboard { grid-template-columns: repeat(2, 1fr); }
  .pipeline-card {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 11px;
    padding: 12px;
  }
  .pipeline-card__image { width: 108px; height: 108px; border-radius: 18px; }
  .pipeline-card__number { font-size: 49px; }
  .pipeline-card__content h3 { font-size: 18px; }
  .pipeline-card__content p { font-size: 11px; }
  .pipeline-card__tags { gap: 3px; }
  .pipeline-card__tags span { height: 25px; padding: 0 3px; font-size: 9px; }
  .pipeline-card__button { width: 62px; height: 32px; padding: 0 7px 0 5px; font-size: 12px; }
  .pipeline-card__button i { width: 21px; height: 21px; }
}
