/* ════════════════════════════════════════════════════════════════════
   VENASOLLA - TOOLS (index + four interactive tool pages)
   ════════════════════════════════════════════════════════════════════ */

:root {
  --accent-time: #8a6d12;
  --accent-sleep: #436aa0;
  --accent-quiz: #7a4f1a;
  --accent-calc: #47702e;
}
html[data-theme="dark"] {
  --accent-time: #d4a855;
  --accent-sleep: #8cadd4;
  --accent-quiz: #c49554;
  --accent-calc: #7fb04e;
}

/* ─── Shared breadcrumb (used on individual tool pages) ─── */
.v-tool-breadcrumb {
  padding: 24px 0 0;
  font-size: 13px;
  color: var(--ink-mute);
}
.v-tool-breadcrumb ol {
  display: flex; flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0; margin: 0;
  align-items: center;
}
.v-tool-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.v-tool-breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 4px;
  color: var(--ink-mute);
}
.v-tool-breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .15s;
}
.v-tool-breadcrumb a:hover { color: var(--ink); }
.v-tool-breadcrumb li[aria-current="page"] { color: var(--ink); }

/* ════════════════════════════════════════════════════════════════════
   TOOLS INDEX (page-tools.php)
   ════════════════════════════════════════════════════════════════════ */

.v-tools-page main { display: block; }

.v-tools-intro {
  padding: clamp(29px, 7vw, 58px) 0 clamp(16px, 3vw, 24px);
  max-width: 720px;
}
.v-tools-eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 500;
  margin-bottom: 14px;
}
html[data-theme="dark"] .v-tools-eyebrow { color: var(--brand-mid); }
.v-tools-intro h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 16px;
}
.v-tools-intro h1 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 400;
}
html[data-theme="dark"] .v-tools-intro h1 em { color: var(--brand-mid); }
.v-tools-intro p {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.v-tools-controls {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin-bottom: 29px;
  font-size: 14px;
  color: var(--ink-soft);
}
.v-tools-controls strong {
  color: var(--ink);
  font-weight: 500;
}

.v-tools-grid {
  display: grid;
  gap: 32px 24px;
  grid-template-columns: 1fr;
  margin-bottom: 38px;
}
@media (min-width: 600px) {
  .v-tools-grid { grid-template-columns: 1fr 1fr; }
}
/* When a tool card is cleared in the Customizer, a single remaining card is
   centered instead of stretching to half-width. */
.v-tools-grid[data-count="1"] { grid-template-columns: minmax(0, 440px); justify-content: center; }

.v-tool-card-link {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  transition: all .2s;
}
.v-tool-card-link:hover .v-tool-visual {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.v-tool-card-link:hover .v-tool-name { color: var(--brand); }
html[data-theme="dark"] .v-tool-card-link:hover .v-tool-name { color: var(--brand-mid); }

.v-tool-visual {
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-tool-visual.time { background: linear-gradient(135deg, #f5e9d0 0%, #d4a76a 100%); }
html[data-theme="dark"] .v-tool-visual.time { background: linear-gradient(135deg, #2b2015 0%, #8a5a1f 100%); }
.v-tool-visual.sleep { background: linear-gradient(135deg, #d4dde8 0%, #8fa3bc 100%); }
html[data-theme="dark"] .v-tool-visual.sleep { background: linear-gradient(135deg, #192230 0%, #2a4a6e 100%); }
.v-tool-visual.quiz { background: linear-gradient(135deg, #f0e9d9 0%, #c49554 100%); }
html[data-theme="dark"] .v-tool-visual.quiz { background: linear-gradient(135deg, #2b2015 0%, #6b4a1a 100%); }
.v-tool-visual.calc { background: linear-gradient(135deg, #e0f0d9 0%, #7ab04a 100%); }
html[data-theme="dark"] .v-tool-visual.calc { background: linear-gradient(135deg, #1a2418 0%, #5c8a3a 100%); }

.v-tool-visual svg {
  width: 40%;
  height: auto;
  opacity: .6;
  color: #111;
}
html[data-theme="dark"] .v-tool-visual svg { color: #fafaf7; opacity: .65; }

.v-tool-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v-tool-tag {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}
.v-tool-tag.time { color: var(--accent-time); }
.v-tool-tag.sleep { color: var(--accent-sleep); }
.v-tool-tag.quiz { color: var(--accent-quiz); }
.v-tool-tag.calc { color: var(--accent-calc); }

.v-tool-name {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
  transition: color .15s;
  margin: 0;
}
.v-tool-name em {
  font-style: italic;
  color: var(--brand);
  font-weight: 400;
}
html[data-theme="dark"] .v-tool-name em { color: var(--brand-mid); }

.v-tool-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.v-tool-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 4px;
}
.v-tool-meta span { display: inline-flex; align-items: center; gap: 4px; }
.v-tool-meta .dot {
  width: 3px; height: 3px;
  background: var(--ink-mute);
  border-radius: 50%;
}
.v-tool-meta svg {
  width: 12px; height: 12px;
  stroke-width: 2;
}
.v-tool-meta .try {
  color: var(--ink);
  font-weight: 500;
}
.v-tool-card-link:hover .v-tool-meta .try { color: var(--brand); }
html[data-theme="dark"] .v-tool-card-link:hover .v-tool-meta .try { color: var(--brand-mid); }

/* About-tools panel on the index */
.v-about-tools {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 48px);
  margin-bottom: 38px;
  max-width: 820px;
}
.v-about-tools-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 14px;
}
.v-about-tools h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
}
.v-about-tools h2 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 400;
}
html[data-theme="dark"] .v-about-tools h2 em { color: var(--brand-mid); }
.v-about-tools p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 1em;
}
.v-about-tools p:last-child { margin-bottom: 0; }

.v-tools-extra-content {
  margin-bottom: 38px;
  max-width: 760px;
}
.v-tools-extra-content .v-about-prose {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}
.v-tools-extra-content .v-about-prose p { margin: 0 0 1.1em; }
.v-tools-extra-content .v-about-prose p:last-child { margin-bottom: 0; }

/* ════════════════════════════════════════════════════════════════════
   TOOL PAGE HEADER (shared by all 4 tools)
   ════════════════════════════════════════════════════════════════════ */

.v-tool-page main { display: block; }

.v-tool-head {
  padding: 29px 0 19px;
  max-width: 760px;
}
.v-tool-cat {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 500;
  margin-bottom: 16px;
}
html[data-theme="dark"] .v-tool-cat { color: var(--brand-mid); }
.v-tool-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 20px;
}
.v-tool-title em {
  font-style: italic;
  color: var(--brand);
  font-weight: 400;
}
html[data-theme="dark"] .v-tool-title em { color: var(--brand-mid); }
.v-tool-deck {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  max-width: 620px;
}

/* ════════════════════════════════════════════════════════════════════
   EMAIL GATE
   ════════════════════════════════════════════════════════════════════ */

.v-gate {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 48px);
  margin: 32px auto 29px;
  max-width: 640px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(17,17,17,.04);
}
.v-gate.v-unlocked { display: none; }

.v-gate-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 50%;
}
html[data-theme="dark"] .v-gate-icon { color: var(--brand-mid); }
.v-gate-icon svg { width: 22px; height: 22px; }

.v-gate h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 10px;
}
.v-gate h2 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 400;
}
html[data-theme="dark"] .v-gate h2 em { color: var(--brand-mid); }
.v-gate-sub {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 auto 24px;
  max-width: 42ch;
}
.v-gate-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  margin: 0 auto;
}
.v-gate-input {
  padding: 13px 16px;
  background: var(--bg);
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: all .15s;
  font-family: inherit;
  width: 100%;
}
.v-gate-input::placeholder { color: var(--ink-mute); }
.v-gate-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
html[data-theme="dark"] .v-gate-input:focus { border-color: var(--brand-mid); }

.v-gate-btn {
  padding: 13px 22px;
  background: var(--btn-solid);
  color: #fafaf7;
  border: 0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
}
.v-gate-btn:hover { background: var(--btn-solid-hover); color: #fafaf7; }
html[data-theme="dark"] .v-gate-btn:hover { background: var(--btn-solid-hover); color: #0a0c0a; }
.v-gate-btn:disabled { opacity: .6; cursor: not-allowed; }

.v-gate-err {
  font-size: 13px;
  color: #a82c2c;
  margin-top: 4px;
  min-height: 18px;
}
html[data-theme="dark"] .v-gate-err { color: #fc8181; }
.v-gate-fine {
  font-size: 12px;
  color: var(--ink-mute);
  margin: 16px auto 0;
  max-width: 42ch;
  line-height: 1.5;
}
.v-gate-fine a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ════════════════════════════════════════════════════════════════════
   TOOL CONTENT (after unlock)
   ════════════════════════════════════════════════════════════════════ */

.v-tool-content { display: none; }
.v-tool-content.v-visible { display: block; }

.v-tool-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 36px);
  margin-bottom: 24px;
}
.v-tool-section-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 16px;
}

/* Inputs row */
.v-inputs-row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .v-inputs-row { grid-template-columns: 1fr 1fr 1fr; }
}
/* Elemental tool carries a 4th field (its own elemental-% step): 2-up on tablet,
   4-up on wider screens, so Mineral / Form / % / Amount read as a clean sequence. */
@media (min-width: 640px) {
  .v-inputs-row.v-inputs-row-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .v-inputs-row.v-inputs-row-4 { grid-template-columns: repeat(4, 1fr); }
}
.v-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v-input-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.v-input-sub {
  font-size: 12px;
  color: var(--ink-mute);
}
.v-time-input,
.v-select-input {
  padding: 12px 14px;
  background: var(--bg);
  border: 1.5px solid var(--line-strong);
  border-radius: 9px;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: all .15s;
  font-family: inherit;
  width: 100%;
}
.v-time-input:focus,
.v-select-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
html[data-theme="dark"] .v-time-input:focus,
html[data-theme="dark"] .v-select-input:focus { border-color: var(--brand-mid); }

/* Draw / submit button */
.v-draw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--btn-solid);
  color: #fafaf7;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  margin-top: 8px;
  font-family: inherit;
  text-decoration: none;
}
.v-draw-btn:hover { background: var(--btn-solid-hover); color: #fafaf7; }
html[data-theme="dark"] .v-draw-btn:hover { background: var(--btn-solid-hover); color: #0a0c0a; }
.v-draw-btn svg { width: 14px; height: 14px; stroke-width: 2; }
.v-draw-btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.v-draw-btn-ghost:hover {
  background: var(--bg-soft);
  color: var(--ink);
  border-color: var(--ink);
}
html[data-theme="dark"] .v-draw-btn-ghost:hover {
  background: var(--bg-soft);
  color: var(--ink);
}

/* Chart card */
.v-chart-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 36px);
  margin-bottom: 24px;
}
.v-chart-wrap {
  position: relative;
  width: 100%;
  margin: 24px 0;
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 20px 16px 12px;
  overflow: hidden;
}
.v-chart-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Zones (peak/dip/wind-down highlight cards) */
.v-zones {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin-top: 24px;
}
@media (min-width: 640px) { .v-zones { grid-template-columns: 1fr 1fr; } }

.v-zone {
  padding: 16px 20px;
  background: var(--bg-soft);
  border-radius: 10px;
  border-left: 3px solid var(--brand);
}
.v-zone-peak { border-left-color: var(--accent-time); }
.v-zone-dip { border-left-color: var(--accent-sleep); }
.v-zone-winddown { border-left-color: var(--accent-quiz); }
.v-zone-label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 4px;
}
.v-zone-time {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}
.v-zone-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════════════
   QUIZ-SPECIFIC (page-tool-quiz.php)
   ════════════════════════════════════════════════════════════════════ */

.v-quiz-progress { margin-bottom: 32px; }
.v-quiz-progress-bar {
  height: 4px;
  background: var(--bg-soft);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}
.v-quiz-progress-fill {
  height: 100%;
  background: var(--brand);
  border-radius: 999px;
  transition: width .3s ease;
  width: 16.67%;
}
html[data-theme="dark"] .v-quiz-progress-fill { background: var(--brand-mid); }
.v-quiz-progress-label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

.v-quiz-question h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 10px;
}
.v-quiz-question-sub {
  font-size: 14px;
  color: var(--ink-mute);
  margin: 0 0 24px;
}

.v-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v-quiz-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: all .15s;
  outline: none;
}
.v-quiz-option:hover,
.v-quiz-option:focus-visible {
  border-color: var(--line-strong);
  background: var(--bg-soft);
}
.v-quiz-option.selected {
  border-color: var(--brand);
  background: var(--brand-soft);
}
html[data-theme="dark"] .v-quiz-option.selected { border-color: var(--brand-mid); }

.v-quiz-option-radio {
  width: 18px; height: 18px;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all .15s;
}
.v-quiz-option.selected .v-quiz-option-radio {
  border-color: var(--brand);
  background: var(--brand);
}
html[data-theme="dark"] .v-quiz-option.selected .v-quiz-option-radio {
  border-color: var(--brand-mid);
  background: var(--brand-mid);
}
.v-quiz-option.selected .v-quiz-option-radio::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
}
.v-quiz-option-label {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

.v-quiz-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  gap: 12px;
}
.v-quiz-nav-btn {
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  border: 0;
  background: var(--btn-solid);
  color: #fafaf7;
  font-family: inherit;
}
.v-quiz-nav-btn:hover:not(:disabled) {
  background: var(--btn-solid-hover);
  color: #fafaf7;
}
html[data-theme="dark"] .v-quiz-nav-btn:hover:not(:disabled) {
  background: var(--btn-solid-hover);
  color: #0a0c0a;
}
.v-quiz-nav-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}
.v-quiz-nav-btn.ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line-strong);
}
.v-quiz-nav-btn.ghost:hover:not(:disabled) {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.v-quiz-results-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.v-result-insight {
  padding: 20px 24px;
  background: var(--bg-soft);
  border-radius: 10px;
  border-left: 3px solid var(--brand);
  margin-bottom: 14px;
}
html[data-theme="dark"] .v-result-insight { border-left-color: var(--brand-mid); }
.v-result-insight-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 6px;
}
html[data-theme="dark"] .v-result-insight-label { color: var(--brand-mid); }
.v-result-insight-title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--ink);
}
.v-result-insight-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════════════
   INFORMATIONAL CONTENT (SEO body, shared)
   ════════════════════════════════════════════════════════════════════ */

.v-tool-info {
  max-width: 720px;
  margin: 34px auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
}
.v-tool-info h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 2em 0 0.6em;
}
.v-tool-info h2:first-child { margin-top: 0; }
.v-tool-info h2 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 400;
}
html[data-theme="dark"] .v-tool-info h2 em { color: var(--brand-mid); }
.v-tool-info h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 1.6em 0 0.4em;
}
.v-tool-info p { margin: 0 0 1.3em; }
.v-tool-info p:last-child { margin-bottom: 0; }
.v-tool-info ul {
  padding-left: 24px;
  margin: 0 0 1.5em;
}
.v-tool-info li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}
.v-tool-info strong { color: var(--ink); font-weight: 600; }
.v-tool-info a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
html[data-theme="dark"] .v-tool-info a { color: var(--brand-mid); }

/* ════════════════════════════════════════════════════════════════════
   OTHER-TOOLS PROMO (cross-link cards)
   ════════════════════════════════════════════════════════════════════ */

.v-other-tools {
  border-top: 1px solid var(--line);
  padding: 29px 0;
  margin-bottom: 29px;
}
.v-other-tools h3 {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 32px;
}
.v-other-tools h3 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 400;
}
html[data-theme="dark"] .v-other-tools h3 em { color: var(--brand-mid); }

.v-other-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .v-other-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.v-other-card {
  padding: 24px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}
.v-other-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}
.v-other-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
html[data-theme="dark"] .v-other-icon { color: var(--brand-mid); }
.v-other-icon svg { width: 18px; height: 18px; }
.v-other-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.v-other-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.v-other-cta {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.v-other-cta svg {
  width: 11px; height: 11px;
  stroke-width: 2.5;
}
.v-other-card:hover .v-other-cta { color: var(--brand); }
html[data-theme="dark"] .v-other-card:hover .v-other-cta { color: var(--brand-mid); }
