/* =========================================================
   Phone mock-ups — iPhone-style frames + per-screen scenes
   ========================================================= */

.phone {
  width: 320px;
  aspect-ratio: 9 / 19.5;
  background: #0c1115;
  border-radius: 44px;
  padding: 8px;
  position: relative;
  box-shadow:
    0 30px 60px rgba(19,36,27,0.18),
    0 6px 12px rgba(19,36,27,0.10),
    inset 0 0 0 1.5px rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.phone.sm { width: 260px; }
.phone.xs { width: 232px; }
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: var(--bg);
  position: relative;
  display: flex; flex-direction: column;
  font-family: var(--display);
  color: var(--ink);
}
.phone-screen::before {
  /* notch */
  content: ""; position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 94px; height: 26px; border-radius: 999px;
  background: #0c1115; z-index: 12;
}
/* Full-bleed real screenshot / video: hide the CSS notch. */
.phone-screen.shot::before { display: none; }
.phone-screen.shot { padding: 0; position: relative; }
.screen-shot { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Scènes vidéo : positionnées en absolu pour remplir tout l'écran */
.phone-screen.shot .scene {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

/* Status bar */
.status {
  position: relative; z-index: 13;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px 0;
  font-family: var(--display); font-weight: 700; font-size: 13px;
  letter-spacing: -0.01em;
}
.status .icons {
  display: inline-flex; gap: 5px; align-items: center;
  color: var(--ink);
}
.status .icons svg { width: 14px; height: 9px; }

/* Tab bar floating */
.tabbar {
  position: absolute; left: 12px; right: 12px; bottom: 14px; z-index: 8;
  background: var(--card); border: 1px solid var(--hair); border-radius: 22px;
  display: grid; grid-template-columns: repeat(5, 1fr);
  padding: 8px 4px;
  box-shadow: 0 8px 22px rgba(19,36,27,0.06);
}
.tabbar .tab {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-family: var(--sans); font-size: 8.5px; font-weight: 600;
  color: var(--ink-3); letter-spacing: 0.02em;
}
.tabbar .tab svg { width: 16px; height: 16px; }
.tabbar .tab.active { color: var(--primary); font-weight: 700; }
.tabbar .tab.active svg { color: var(--primary); }

/* Screen content scroll padding */
.scene { flex: 1; overflow: hidden; padding: 0 0 78px; position: relative; }

/* ===== Generic in-app blocks ===== */
.app-header {
  padding: 38px 16px 8px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.app-header h1 { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.app-header h1 .a { color: var(--primary); font-family: var(--serif); font-style: italic; font-weight: 500; }
.app-header .sub {
  margin-top: 5px; font-size: 10px; color: var(--ink-2);
  display: flex; gap: 6px; align-items: center;
}
.app-header .sub .dot { color: var(--ink-3); }
.app-header .icon-btn {
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2); font-size: 12px;
}

/* Card base */
.app-card {
  background: var(--card); border: 1px solid var(--hair);
  border-radius: 18px; padding: 14px 16px;
  margin: 0 14px 12px;
}
.app-card h2 {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 18px; line-height: 1.15; color: var(--ink);
  letter-spacing: -0.005em;
}
.app-card h2 .a { color: var(--primary); }
.app-card .meta {
  margin-top: 5px; font-size: 10px; color: var(--ink-2);
  display: flex; gap: 6px; align-items: center;
}
.app-card .meta .delta { color: var(--primary); font-weight: 700; }

/* Pulse strip */
.metric-strip {
  margin-top: 12px; padding-top: 10px;
  border-top: 1px solid var(--hair);
  display: flex; align-items: stretch;
}
.metric-cell {
  flex: 1; text-align: center;
  padding: 2px 0;
  border-right: 1px solid var(--hair);
  display: flex; flex-direction: column; gap: 2px; align-items: center;
}
.metric-cell:last-child { border-right: none; }
.metric-cell .v {
  font-family: var(--display); font-weight: 700;
  font-size: 14px; letter-spacing: -0.02em;
  display: inline-flex; align-items: baseline; gap: 4px;
}
.metric-cell .v::before {
  content: ""; width: 5px; height: 5px; border-radius: 999px;
  background: var(--mc); display: inline-block;
}
.metric-cell .v small { font-size: 8px; color: var(--ink-3); font-weight: 600; }
.metric-cell .l {
  font-size: 8px; font-weight: 600; color: var(--ink-2);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* Section title in-phone */
.app-section-title {
  padding: 14px 18px 8px;
  display: flex; align-items: baseline; justify-content: space-between;
}
.app-section-title h3 {
  font-family: var(--display); font-weight: 700; font-size: 14px;
  letter-spacing: -0.015em;
}
.app-section-title .pill {
  font-size: 9px; font-weight: 600; color: var(--ink-3);
  background: var(--card); border: 1px solid var(--hair);
  padding: 2px 7px; border-radius: 999px;
}

/* Plant mini cards row (Home today) */
.plant-row {
  display: flex; gap: 8px; padding: 0 14px 12px;
  overflow-x: auto; scrollbar-width: none;
}
.plant-row::-webkit-scrollbar { display: none; }
.plant-mini {
  width: 100px; flex-shrink: 0;
  background: var(--card); border: 1px solid var(--hair);
  border-radius: 14px; padding: 9px 9px 10px;
  display: flex; flex-direction: column; gap: 6px;
}
.plant-mini .avatar {
  width: 100%; aspect-ratio: 1; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-soft), var(--sand));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); position: relative;
}
.plant-mini .avatar.attention::after {
  content: ""; position: absolute; top: 5px; right: 5px;
  width: 9px; height: 9px; border-radius: 999px;
  background: var(--attention);
  border: 1.5px solid var(--card);
}
.plant-mini .avatar.warn::after {
  content: ""; position: absolute; top: 5px; right: 5px;
  width: 9px; height: 9px; border-radius: 999px;
  background: var(--warn);
  border: 1.5px solid var(--card);
}
.plant-mini .name { font-size: 11px; font-weight: 700; }
.plant-mini .sub { font-family: var(--serif); font-style: italic; font-size: 10px; color: var(--ink-3); }

/* CTA card */
.cta-card {
  margin: 0 14px 12px;
  background: var(--card); border: 1px solid var(--hair);
  border-radius: 18px; padding: 12px 14px;
  display: flex; gap: 12px; align-items: center;
}
.cta-card .ic {
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--primary-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.cta-card .copy { flex: 1; }
.cta-card .t { font-size: 13px; font-weight: 700; }
.cta-card .s { font-family: var(--serif); font-style: italic; font-size: 11px; color: var(--ink-2); margin-top: 2px; }
.cta-card .ch { color: var(--ink-3); font-size: 16px; }

/* Weather/funfact tile */
.tile-soft {
  margin: 0 14px 12px;
  border-radius: 18px; padding: 12px 14px;
  background: linear-gradient(135deg, var(--soft), var(--sand));
  border: 1px solid var(--hair);
}
.tile-soft .e { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); }
.tile-soft .q { font-family: var(--serif); font-style: italic; font-size: 14px; line-height: 1.3; margin-top: 6px; color: var(--ink); }

/* ===== Garden grid ===== */
.garden-summary {
  margin: 0 14px 12px;
  background: var(--card); border: 1px solid var(--hair); border-radius: 18px;
  padding: 12px 14px;
}
.garden-summary h2 {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 17px;
}
.garden-summary h2 .a { color: var(--primary); }
.garden-summary .ventilation {
  margin-top: 8px;
  display: flex; gap: 10px; flex-wrap: wrap;
  font-size: 10px; color: var(--ink-2);
}
.garden-summary .ventilation span { display: inline-flex; align-items: center; gap: 4px; }
.garden-summary .ventilation .d { width: 6px; height: 6px; border-radius: 999px; display: inline-block; }
.filters {
  display: flex; gap: 6px; padding: 0 14px 10px;
  overflow-x: auto; scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }
.filter-chip {
  font-size: 11px; font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--hair);
  color: var(--ink-2);
  white-space: nowrap;
}
.filter-chip.on { background: var(--ink); color: var(--card); border-color: var(--ink); }
.plant-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; padding: 0 14px;
}
.plant-tile {
  background: var(--card); border: 1px solid var(--hair); border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.plant-tile .hero {
  aspect-ratio: 1.05;
  background: linear-gradient(135deg, var(--primary-soft), var(--sand));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); position: relative;
}
.plant-tile .hero .vit {
  position: absolute; bottom: 6px; left: 6px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(6px);
  border-radius: 999px; padding: 3px 8px;
  font-size: 9px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.01em;
}
.plant-tile .hero .pip {
  position: absolute; top: 6px; right: 6px;
  width: 9px; height: 9px; border-radius: 999px;
  background: var(--attention); border: 1.5px solid var(--card);
}
.plant-tile .hero .pip.warn { background: var(--warn); }
.plant-tile .hero .pip.good { background: var(--primary); }
.plant-tile .body { padding: 8px 9px 10px; }
.plant-tile .body .name { font-size: 11px; font-weight: 700; }
.plant-tile .body .sub { font-family: var(--serif); font-style: italic; font-size: 9.5px; color: var(--ink-3); margin-top: 1px; }
.plant-tile .body .action {
  margin-top: 5px;
  font-size: 9px; font-weight: 600;
  padding: 3px 7px; border-radius: 999px;
  display: inline-block;
}
.plant-tile .body .action.attention { color: var(--attention); background: var(--attention-soft); }
.plant-tile .body .action.warn { color: var(--warn); background: var(--warn-soft); }
.plant-tile .body .action.good { color: var(--primary); background: var(--primary-soft); }

/* ===== Scan screen ===== */
.scan-quota-row { display: flex; gap: 6px; align-items: center; }
.scan-quota-pill {
  font-size: 10px; font-weight: 700;
  padding: 5px 9px 5px 7px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 4px;
}
.scan-quota-pill.green { background: var(--primary); color: var(--card); }
.scan-quota-pill.line { background: var(--card); color: var(--ink); border: 1px solid var(--hair); }
.scan-hero {
  text-align: center; padding: 16px 18px 6px;
}
.scan-hero h2 {
  font-family: var(--display); font-weight: 700; font-size: 30px;
  letter-spacing: -0.025em; line-height: 1.02;
}
.scan-hero h2 .a { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--primary); }
.scan-hero p { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--ink-2); margin-top: 8px; }
.scan-viewfinder {
  margin: 14px 16px 0;
  aspect-ratio: 3 / 4;
  border-radius: 18px; padding: 6px;
  background: var(--card); border: 1px solid var(--hair);
  box-shadow: 0 4px 18px rgba(19,36,27,0.04);
}
.scan-vf-inner {
  width: 100%; height: 100%;
  border-radius: 14px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--primary-soft) 0%, var(--sand) 100%);
  display: flex; align-items: center; justify-content: center;
}
.scan-vf-inner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.55), transparent 55%);
}
.scan-vf-leaf {
  position: relative;
  font-family: var(--serif); font-style: italic;
  color: var(--primary); opacity: 0.7;
  font-size: 88px; line-height: 1;
  filter: drop-shadow(0 6px 12px rgba(47,87,66,0.18));
}
.scan-vf-bracket {
  position: absolute; width: 22px; height: 22px;
  border: 2px solid var(--primary);
}
.scan-vf-bracket.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; border-top-left-radius: 6px; }
.scan-vf-bracket.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; border-top-right-radius: 6px; }
.scan-vf-bracket.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; border-bottom-left-radius: 6px; }
.scan-vf-bracket.br { bottom: 10px; right: 10px; border-left: none; border-top: none; border-bottom-right-radius: 6px; }
.scan-vf-beam {
  position: absolute; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--primary) 60%, transparent), transparent);
  box-shadow: 0 0 12px color-mix(in srgb, var(--primary) 40%, transparent);
  top: 50%; transform: translateY(-50%);
  animation: scanbeam 2.2s ease-in-out infinite;
}
@keyframes scanbeam {
  0% { top: 12%; opacity: 0.2; }
  50% { top: 86%; opacity: 1; }
  100% { top: 12%; opacity: 0.2; }
}
.scan-vf-detect {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.92); backdrop-filter: blur(6px);
  padding: 5px 10px; border-radius: 999px;
  font-size: 10px; font-weight: 700; color: var(--ink);
  display: inline-flex; align-items: center; gap: 5px;
  border: 1px solid var(--hair);
}
.scan-vf-detect .d { width: 6px; height: 6px; border-radius: 999px; background: var(--primary); animation: pulse 1.6s infinite; }

.scan-helper {
  margin: 12px 16px;
  display: flex; gap: 10px; align-items: center;
}
.scan-helper .ic {
  width: 28px; height: 28px; border-radius: 9px;
  background: var(--primary-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.scan-helper .copy { flex: 1; }
.scan-helper .e { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); }
.scan-helper .s { font-family: var(--serif); font-style: italic; font-size: 11px; color: var(--ink-2); }

.scan-dock {
  position: absolute; bottom: 78px; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding: 14px;
}
.scan-dock .small {
  width: 36px; height: 36px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-soft), var(--sand));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.scan-dock .flip {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
}
.scan-shutter {
  width: 64px; height: 64px; border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #7BB48B, var(--primary));
  box-shadow: 0 8px 20px color-mix(in srgb, var(--primary) 32%, transparent);
  border: 3px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--card);
  position: relative;
}
.scan-shutter.pressed { transform: scale(0.92); transition: transform 0.18s ease; }
.scan-shutter::after {
  content: ""; position: absolute; inset: -8px;
  border-radius: 999px; border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
}

/* ===== Tasks screen ===== */
.tasks-progress {
  margin: 0 14px 12px;
  background: var(--card); border: 1px solid var(--hair); border-radius: 18px;
  padding: 14px 16px;
}
.tasks-progress h2 {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 17px;
}
.tasks-progress h2 .a { color: var(--primary); }
.tasks-progress .meta { margin-top: 5px; font-size: 10px; color: var(--ink-2); }
.week-strip {
  margin-top: 12px; padding-top: 10px;
  border-top: 1px solid var(--hair);
  display: flex; gap: 4px;
}
.week-day {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.week-day .d { font-size: 8px; font-weight: 700; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; }
.week-day.today .d { color: var(--primary); }
.week-day .b { width: 100%; height: 22px; border-radius: 6px; background: var(--hair); }
.week-day.today .b { background: var(--primary); }
.week-day.has .b { background: var(--primary-soft); }

.task-group { padding: 10px 14px 6px; }
.task-group .hdr {
  display: flex; align-items: baseline; gap: 8px;
  padding: 0 4px 8px;
}
.task-group .hdr h3 { font-size: 13px; font-weight: 700; }
.task-group .hdr .ct { font-size: 10px; color: var(--ink-3); font-weight: 600; }
.task-row {
  background: var(--card); border: 1px solid var(--hair); border-radius: 14px;
  padding: 10px 12px;
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 6px;
}
.task-row .check {
  width: 18px; height: 18px; border-radius: 6px;
  border: 1.5px solid var(--hair-strong); flex-shrink: 0;
}
.task-row.done .check { background: var(--primary); border-color: var(--primary); }
.task-row.done .check::after { content:""; display:block; width:8px;height:4px; border-left:1.5px solid var(--card); border-bottom:1.5px solid var(--card); transform: rotate(-45deg) translate(2px,-1px); margin: 5px auto 0; }
.task-row .avatar {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-soft), var(--sand));
  display: flex; align-items: center; justify-content: center; color: var(--primary);
  flex-shrink: 0;
}
.task-row .body { flex: 1; }
.task-row .t { font-size: 11px; font-weight: 700; }
.task-row .s { font-family: var(--serif); font-style: italic; font-size: 10px; color: var(--ink-3); }
.task-row .pri {
  font-size: 9px; font-weight: 700;
  padding: 3px 7px; border-radius: 999px;
}
.task-row .pri.high { background: var(--attention-soft); color: var(--attention); }
.task-row .pri.med { background: var(--warn-soft); color: var(--warn); }
.task-row .pri.low { background: var(--primary-soft); color: var(--primary); }
.task-row.done { opacity: 0.55; }
.task-row.done .t { text-decoration: line-through; }

/* ===== Precision screen (demo) ===== */
.prec-intro {
  margin: 0 14px 12px;
  background: var(--card); border: 1px solid var(--hair); border-radius: 16px;
  padding: 12px 14px;
}
.prec-intro .e {
  font-size: 9px; font-weight: 700; color: var(--ink-3);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.prec-intro .q {
  font-family: var(--serif); font-style: italic; font-size: 12px;
  color: var(--ink-2); margin-top: 4px; line-height: 1.35;
}
.prec-group { margin: 0 14px 12px; }
.prec-label {
  font-size: 9.5px; font-weight: 600; color: var(--ink-2);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px;
}
.prec-chips { display: flex; gap: 6px; }
.prec-chip {
  flex: 1; text-align: center;
  background: var(--card); border: 1px solid var(--hair); border-radius: 11px;
  padding: 9px 4px; font-size: 10.5px; font-weight: 700; color: var(--ink);
  position: relative; transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.prec-chip.sel {
  background: var(--primary-soft); border-color: var(--primary); color: var(--primary);
}
.prec-chip.sel::after {
  content: ""; position: absolute; top: 5px; right: 5px;
  width: 5px; height: 5px; border-radius: 999px; background: var(--primary);
}

/* ===== Shop / XP screen (demo) ===== */
.shop-seve {
  margin: 0 14px 10px;
  background: var(--soft); border-radius: 14px; padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
}
.shop-seve .ic {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  background: var(--primary-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.shop-seve .body { flex: 1; }
.shop-seve .e { font-size: 11px; font-weight: 700; }
.shop-seve .v { font-size: 10px; color: var(--ink-2); margin-top: 1px; }
.shop-plus {
  font-size: 10px; font-weight: 700; color: var(--primary);
  background: var(--primary-soft); padding: 4px 9px; border-radius: 999px;
}
.shop-stage {
  margin: 0 14px 10px;
  background: var(--card); border: 1px solid var(--hair); border-radius: 14px;
  padding: 12px 14px;
}
.shop-stage-head { display: flex; align-items: baseline; justify-content: space-between; }
.shop-stage-head .name { font-size: 12px; font-weight: 700; color: var(--primary); }
.shop-stage-head .xp { font-size: 10px; font-weight: 600; color: var(--ink-3); }
.shop-bar {
  margin-top: 9px; height: 5px; border-radius: 999px;
  background: var(--primary-soft); overflow: hidden;
}
.shop-bar > div { height: 100%; width: 0%; background: var(--primary); border-radius: 999px; }
.shop-cap {
  font-family: var(--serif); font-style: italic; font-size: 10.5px;
  color: var(--ink-3); margin-top: 8px; line-height: 1.35;
}
.shop-grid { margin: 0 14px 10px; display: flex; gap: 6px; }
.shop-medal {
  flex: 1; background: var(--card); border: 1px solid var(--hair); border-radius: 12px;
  padding: 11px 4px 9px; display: flex; flex-direction: column; align-items: center; gap: 5px;
  color: var(--ink-3); opacity: 0.6;
}
.shop-medal span {
  font-size: 9px; font-weight: 600; color: var(--ink-2);
  letter-spacing: 0.02em;
}
.shop-medal.on { opacity: 1; color: var(--primary); border-color: color-mix(in srgb, var(--primary) 35%, transparent); }
.shop-medal.on span { color: var(--ink); }

/* ===== Result screen (used by demo end-state) ===== */
.result-hero {
  margin: 0 14px 10px;
  background: var(--card); border: 1px solid var(--hair); border-radius: 18px;
  padding: 10px;
}
.result-photo {
  aspect-ratio: 16 / 9; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-soft), var(--sand));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  position: relative;
}
.result-photo .conf {
  position: absolute; top: 8px; left: 8px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(6px);
  padding: 4px 8px; border-radius: 999px;
  font-size: 9.5px; font-weight: 700; color: var(--primary);
  border: 1px solid var(--hair);
}
.result-id {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 4px 4px;
}
.result-id .meta { flex: 1; }
.result-id .name { font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: -0.015em; }
.result-id .sub { font-family: var(--serif); font-style: italic; font-size: 11px; color: var(--ink-2); }
.result-id .vit {
  width: 52px; height: 52px; border-radius: 999px;
  border: 4px solid var(--primary-soft);
  border-top-color: var(--primary);
  border-right-color: var(--primary);
  transform: rotate(38deg);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.result-id .vit::after {
  content: "80"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 13px;
  color: var(--ink); transform: rotate(-38deg);
  letter-spacing: -0.02em;
}
.result-voice {
  margin: 10px 14px 12px;
  font-family: var(--serif); font-style: italic;
  font-size: 13px; line-height: 1.35; text-align: center;
  color: var(--ink); padding: 0 6px;
}
.result-wellbeing {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px; padding: 0 14px 12px;
}
.wb-tile {
  background: var(--card); border: 1px solid var(--hair);
  border-radius: 14px; padding: 9px 6px;
  text-align: center;
  display: flex; flex-direction: column; gap: 4px; align-items: center;
}
.wb-tile .ic { width: 22px; height: 22px; border-radius: 7px; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.wb-tile.info .ic { background: var(--info-soft); color: var(--info); }
.wb-tile.warn .ic { background: var(--warn-soft); color: var(--warn); }
.wb-tile .e { font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); }
.wb-tile .v { font-family: var(--display); font-weight: 700; font-size: 11px; }
