/* Vyuha detail page — a landscape web-console layout, unlike the phone-shaped
   consumer apps. Reuses the store's theme tokens (var(--ink) etc.) so light/dark
   follow the site toggle. Loaded after style.css. */

.v-wrap { max-width: 1120px; }

/* Hero */
.v-hero { text-align: center; padding-top: 6px; }
.v-kicker {
  display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand); border: 1px solid var(--kicker-bd);
  background: var(--soft); border-radius: 999px; padding: 6px 13px; margin-bottom: 16px;
}
.v-hero h1 { font-size: 46px; line-height: 1.04; margin: 0 0 12px; letter-spacing: -0.02em; }
.v-hero .lead { font-size: 19px; line-height: 1.55; color: var(--muted); max-width: 60ch; margin: 0 auto; }
.v-hero .lead b { color: var(--ink); }

.v-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 26px 0 8px; }
.v-btn {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700;
  text-decoration: none; border-radius: 999px; padding: 12px 20px; border: 1px solid var(--line);
  color: var(--ink); background: var(--card); transition: border-color .15s, transform .1s;
}
.v-btn:hover { transform: translateY(-1px); }
.v-btn.primary { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.v-btn svg { width: 16px; height: 16px; fill: currentColor; }
.v-btn.soon { color: var(--faint); background: var(--surface); cursor: default; }
.v-btn.soon:hover { transform: none; }

.v-hero-shot {
  width: 100%; margin: 34px auto 0; border: 1px solid var(--line); border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg); display: block; background: var(--card);
}

/* Section rhythm */
.v-sec { margin-top: 64px; }
.v-sec > h2 { font-size: 26px; margin: 0 0 6px; letter-spacing: -0.01em; }
.v-sec > .sub { color: var(--muted); font-size: 15px; margin: 0 0 20px; max-width: 62ch; }

/* The spine — conversation → closure */
.v-flow { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.v-step {
  font-size: 13px; font-weight: 700; color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px;
}
.v-arrow { color: var(--faint); font-weight: 700; }

/* Landscape screenshot gallery */
.v-gallery {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(560px, 74%);
  gap: 18px; overflow-x: auto; padding: 4px 2px 18px; scroll-snap-type: x mandatory;
}
.v-gallery figure { margin: 0; scroll-snap-align: start; }
.v-gallery img {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); display: block; background: var(--card);
}
.v-gallery figcaption { margin-top: 10px; font-size: 13.5px; color: var(--muted); }
.v-gallery figcaption b { color: var(--ink); font-weight: 700; }

/* Feature grid (own, richer than the 3-up consumer grid) */
.v-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.v-feat { border: 1px solid var(--line); border-radius: 16px; padding: 20px; background: var(--card); }
.v-feat .ic {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--soft); margin-bottom: 12px;
}
.v-feat .ic svg { width: 20px; height: 20px; stroke: var(--brand); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.v-feat h3 { margin: 0 0 5px; font-size: 15.5px; }
.v-feat p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--muted); }

/* Two-column facts (surfaces / where data lives) */
.v-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.v-card { border: 1px solid var(--line); border-radius: 16px; padding: 22px; background: var(--card); }
.v-card h3 { margin: 0 0 10px; font-size: 16px; }
.v-list { list-style: none; padding: 0; margin: 0; }
.v-list li { position: relative; padding-left: 24px; margin: 9px 0; font-size: 14.5px; color: var(--ink); line-height: 1.5; }
.v-list li::before {
  content: ""; position: absolute; left: 2px; top: 7px; width: 9px; height: 9px;
  border-radius: 3px; background: var(--brand);
}

.v-note { margin-top: 36px; }
.v-policies-title { margin-top: 40px; font-size: 20px; }

@media (max-width: 820px) {
  .v-hero h1 { font-size: 34px; }
  .v-hero .lead { font-size: 17px; }
  .v-feats { grid-template-columns: 1fr; }
  .v-cols { grid-template-columns: 1fr; }
  .v-gallery { grid-auto-columns: 88%; }
}
